/**
 * Homepage Styles for all4business Theme
 * Contains all styling for the homepage (index.php)
 */

/* CSS Variables */
:root {
    --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --secondary-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --accent-gradient: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --card-shadow: 0 15px 35px rgba(0,0,0,0.1);
    --hover-transform: translateY(-5px);
}

/* Hero Section */
.hero-enhanced {
    background: var(--primary-gradient);
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><pattern id="grid" width="50" height="50" patternUnits="userSpaceOnUse"><path d="M 50 0 L 0 0 0 50" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-enhanced .container {
    position: relative;
    z-index: 2;
}

.hero-enhanced h1 {
    font-size: 4rem;
    font-weight: 800;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.4);
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.hero-enhanced .lead {
    font-size: 1.5rem;
    color: rgba(255,255,255,0.95);
    margin-bottom: 3rem;
    font-weight: 300;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Enhanced UX Effects */
.min-vh-80 {
    min-height: 80vh;
}

.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15) !important;
}

/* Smooth Animations */
.animate-fade-in {
    animation: fadeIn 1s ease-out;
}

.animate-slide-up {
    animation: slideUp 0.8s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Enhanced Button Effects */
.btn-warning.btn-lg::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn-warning.btn-lg:hover::before {
    left: 100%;
}

/* Minimalist Card Styles */
.minimal-card {
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.08);
}

.minimal-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15) !important;
}

/* Minimalist Icon */
.minimal-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.minimal-icon i {
    font-size: 22px;
    font-weight: 900;
}

/* Feature Tags */
.minimal-features {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.feature-tag {
    background: rgba(102, 126, 234, 0.15);
    color: #4c63d2;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 700;
    border: 2px solid rgba(102, 126, 234, 0.3);
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

.feature-tag.amazon {
    background: rgba(255, 153, 0, 0.15);
    color: #e67e00;
    border: 2px solid rgba(255, 153, 0, 0.3);
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

.feature-tag i {
    font-size: 11px;
    font-weight: 900;
}

/* Minimalist Pricing */
.pricing-minimal .price-current {
    font-size: 1.25rem;
}

.pricing-minimal .price-extended {
    font-size: 1rem;
}

/* Clean button styling */
.minimal-card {
    position: relative;
}

.minimal-card .btn {
    border: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.minimal-card .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

/* General button improvements */
button.btn {
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

button.btn:hover {
    transform: translateY(-2px);
}

/* Smooth scroll class */
.smooth-scroll {
    scroll-behavior: smooth;
}

/* Elite Author Section - Exciting Design */
.elite-author-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
}

.elite-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 193, 7, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    animation: patternMove 20s ease-in-out infinite;
}

@keyframes patternMove {
    0%, 100% { transform: translateX(0) translateY(0); }
    50% { transform: translateX(-10px) translateY(-5px); }
}

.elite-crown-wrapper {
    position: relative;
    width: 100px;
    height: 100px;
}

.elite-crown-badge {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #ffc107 0%, #ff8c00 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 40px rgba(255, 193, 7, 0.4);
    position: relative;
    z-index: 2;
    animation: crownPulse 3s ease-in-out infinite;
}

.elite-crown-badge i {
    font-size: 45px;
    color: #000;
    font-weight: 900;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.crown-glow {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(135deg, #ffc107 0%, #ff8c00 100%);
    border-radius: 50%;
    opacity: 0.3;
    animation: crownGlow 2s ease-in-out infinite alternate;
    z-index: 1;
}

@keyframes crownPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes crownGlow {
    0% { transform: scale(1); opacity: 0.3; }
    100% { transform: scale(1.2); opacity: 0.1; }
}

.elite-stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.elite-stat-card:hover {
    transform: translateY(-10px) scale(1.02);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.stat-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.elite-stat-card:hover .stat-glow {
    opacity: 0.1;
}

.stat-glow-primary { background: radial-gradient(circle, #0d6efd 0%, transparent 70%); }
.stat-glow-warning { background: radial-gradient(circle, #ffc107 0%, transparent 70%); }
.stat-glow-success { background: radial-gradient(circle, #198754 0%, transparent 70%); }
.stat-glow-info { background: radial-gradient(circle, #0dcaf0 0%, transparent 70%); }

.elite-stat-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: 3px solid rgba(255, 255, 255, 0.2);
}

.elite-stat-card:hover .elite-stat-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.elite-stat-icon i {
    font-size: 32px;
    color: white;
    font-weight: 900;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.elite-stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.elite-stat-label {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    margin-bottom: 0;
}

.elite-cta-btn {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.elite-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(255, 193, 7, 0.4) !important;
}

/* Premium Product Sections */
.product-section-premium {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

.product-section-premium-alt {
    background: linear-gradient(135deg, #ffffff 0%, #f1f3f4 100%);
    position: relative;
}

.product-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(102, 126, 234, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(102, 126, 234, 0.03) 0%, transparent 50%);
    animation: patternMove 25s ease-in-out infinite;
}

.product-bg-pattern-alt {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 90% 20%, rgba(255, 193, 7, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 10% 80%, rgba(255, 193, 7, 0.03) 0%, transparent 50%);
    animation: patternMove 30s ease-in-out infinite reverse;
}

.product-image-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-glow {
    position: absolute;
    top: -20%;
    left: -20%;
    right: -20%;
    bottom: -20%;
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
    z-index: 1;
}

.product-image-wrapper:hover .product-glow {
    opacity: 0.15;
}

.product-glow-primary {
    background: radial-gradient(circle, #0d6efd 0%, transparent 70%);
}

.product-glow-warning {
    background: radial-gradient(circle, #ffc107 0%, transparent 70%);
}

.product-image-container-premium {
    background: linear-gradient(135deg, #f8f9ff 0%, #e3e8ff 100%);
    padding: 3rem;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.product-image-container-premium:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.product-image-premium {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: contain;
    border-radius: 15px;
    transition: all 0.4s ease;
}

.product-floating-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    padding: 10px 18px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 800;
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.4);
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 8px;
    animation: badgeFloat 3s ease-in-out infinite;
    border: 2px solid rgba(255, 255, 255, 0.3);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.product-floating-badge i {
    font-size: 16px;
    font-weight: 900;
}

.product-floating-badge-warning {
    background: linear-gradient(135deg, #ffc107 0%, #ff8c00 100%);
    color: #000;
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.4);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

@keyframes badgeFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.product-content-premium {
    padding: 2rem 0;
}

.product-category-badge {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 15px;
    font-weight: 700;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.product-category-badge i {
    font-size: 16px;
    font-weight: 900;
}

.product-title-premium {
    font-size: 2.5rem;
    color: #2d3748;
    line-height: 1.2;
}

.product-subtitle {
    font-size: 1.1rem;
    line-height: 1.5;
}

.product-features-premium .feature-item-premium {
    display: flex;
    align-items: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 15px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.product-features-premium .feature-item-premium:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.9);
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.feature-icon i {
    font-size: 24px;
    font-weight: 900;
}

.feature-content h6 {
    font-size: 14px;
    color: #2d3748;
}

.product-cta-section {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    padding: 1.5rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
}

.price-large {
    font-size: 2rem;
}

.price-label {
    font-size: 0.9rem;
}

.rating-info .stars {
    font-size: 14px;
}

.product-cta-btn {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.product-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2) !important;
}

.product-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: left 0.6s;
}

.product-cta-btn:hover::before {
    left: 100%;
}

/* Premium Hero Section */
.hero-section-premium {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    min-height: 85vh;
}

.hero-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.05"><circle cx="30" cy="30" r="4"/></g></svg>');
    animation: patternMove 20s linear infinite;
}

.hero-glow-effects {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 193, 7, 0.15) 0%, transparent 50%);
}

/* Premium Trust Badge */
.hero-trust-badge {
    position: relative;
    display: inline-flex;
    align-items: center;
    background: rgba(255, 193, 7, 0.9);
    color: #000;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.3);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.trust-badge-glow {
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(45deg, #ffc107, #ff8c00);
    border-radius: 30px;
    z-index: -1;
    opacity: 0.7;
    filter: blur(8px);
}

/* Premium Title */
.hero-title-premium {
    font-size: 3.5rem;
    line-height: 1.1;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.hero-highlight {
    color: #ffc107;
    text-shadow: 0 0 20px rgba(255, 193, 7, 0.5);
}

.hero-underline {
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #ffc107, #ff8c00);
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(255, 193, 7, 0.4);
}

/* Premium Subtitle */
.hero-subtitle-premium {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Premium CTA Section */
.hero-cta-section {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.hero-cta-btn {
    position: relative;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
}

.hero-cta-primary {
    background: linear-gradient(135deg, #ffc107 0%, #ff8c00 100%);
    color: #000;
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.4);
}

.hero-cta-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.hero-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

/* Premium Features List */
.hero-features-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.feature-check-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #28a745, #20c997);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

.feature-crown-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #ffc107, #ff8c00);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
}

.feature-check-icon i,
.feature-crown-icon i {
    font-size: 14px;
    font-weight: 900;
}

/* Premium Cards Container */
.hero-cards-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hero-product-card {
    position: relative;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 1.5rem;
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    overflow: hidden;
}

.hero-product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.hero-product-card:hover .card-glow {
    opacity: 1;
}

.card-glow-primary {
    background: radial-gradient(circle, rgba(13, 110, 253, 0.1) 0%, transparent 70%);
}

.card-glow-warning {
    background: radial-gradient(circle, rgba(255, 193, 7, 0.1) 0%, transparent 70%);
}

/* Card Header */
.card-header-premium {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.product-icon-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.product-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.product-icon i {
    font-size: 20px;
    font-weight: 900;
}

.product-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 0.25rem;
}

.product-category {
    color: #718096;
    font-weight: 500;
}

/* Enhanced Product Stats Display */
.product-stats-inline {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 0.75rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.stats-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.rating-inline,
.sales-inline,
.earnings-inline {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-width: fit-content;
}

.rating-inline {
    color: #ffc107;
    background: rgba(255, 193, 7, 0.1);
    border-color: rgba(255, 193, 7, 0.3);
}

.rating-inline i {
    color: #ffc107;
    font-size: 12px;
    font-weight: 900;
}

.sales-inline {
    color: #28a745;
    background: rgba(40, 167, 69, 0.1);
    border-color: rgba(40, 167, 69, 0.3);
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2rem;
    padding: 0.4rem 0.6rem;
}

.sales-inline i {
    color: #28a745;
    font-size: 11px;
    font-weight: 900;
}

.sales-main {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.8rem;
    font-weight: 700;
}

.recent-sales {
    font-size: 0.7rem !important;
    color: #17a2b8 !important;
    font-weight: 500 !important;
    margin-left: 0 !important;
    opacity: 0.9;
}

.earnings-inline {
    color: #6f42c1;
    background: rgba(111, 66, 193, 0.1);
    border-color: rgba(111, 66, 193, 0.3);
}

.earnings-inline i {
    color: #6f42c1;
    font-size: 11px;
    font-weight: 900;
}

.data-source-badge {
    align-self: flex-end;
    opacity: 0.8;
    font-size: 0.7rem;
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.data-source-badge i {
    font-size: 10px;
    margin-right: 0.2rem;
}

/* Responsive adjustments for stats */
@media (max-width: 768px) {
    .product-stats-inline {
        padding: 0.6rem;
        gap: 0.4rem;
    }
    
    .stats-row {
        flex-direction: column;
        align-items: stretch;
        gap: 0.5rem;
    }
    
    .rating-inline,
    .sales-inline,
    .earnings-inline {
        font-size: 0.75rem;
        padding: 0.3rem 0.5rem;
    }
    
    .sales-inline {
        padding: 0.35rem 0.5rem;
    }
    
    .recent-sales {
        font-size: 0.65rem !important;
    }
    
    .data-source-badge {
        font-size: 0.65rem;
        align-self: center;
    }
}

@media (max-width: 576px) {
    .product-stats-inline {
        margin-top: 0.5rem;
        padding: 0.5rem;
    }
    
    .rating-inline,
    .sales-inline,
    .earnings-inline {
        font-size: 0.7rem;
        padding: 0.25rem 0.4rem;
    }
    
    .sales-inline {
        padding: 0.3rem 0.4rem;
    }
    
    .recent-sales {
        font-size: 0.6rem !important;
    }
}

.product-badge {
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.product-badge-success {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
}

.product-badge-info {
    background: linear-gradient(135deg, #17a2b8, #20c997);
    color: white;
}

/* Card Features */
.card-features-premium {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.feature-tag-premium {
    background: rgba(102, 126, 234, 0.1);
    color: #4c63d2;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    border: 2px solid rgba(102, 126, 234, 0.2);
    display: flex;
    align-items: center;
    gap: 0.4rem;
    transition: all 0.3s ease;
}

.feature-tag-primary {
    background: rgba(13, 110, 253, 0.1);
    color: #0d6efd;
    border-color: rgba(13, 110, 253, 0.2);
}

.feature-tag-warning {
    background: rgba(255, 193, 7, 0.1);
    color: #e67e00;
    border-color: rgba(255, 193, 7, 0.2);
}

.feature-tag-premium:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Card Stats Section */
.card-stats-premium {
    background: rgba(248, 250, 252, 0.8);
    border-radius: 10px;
    padding: 0.75rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.stats-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.rating-display {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.stars-rating {
    display: flex;
    gap: 1px;
}

.stars-rating i {
    color: #ffc107;
    font-size: 14px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.rating-text {
    font-size: 0.875rem;
    font-weight: 600;
    color: #4a5568;
}

.sales-display {
    display: flex;
    align-items: center;
    color: #28a745;
    font-size: 0.875rem;
    font-weight: 600;
}

.sales-display i {
    color: #28a745;
    font-size: 12px;
}

.sales-number {
    color: #28a745;
}

.hero-product-card:hover .card-stats-premium {
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

@media (max-width: 576px) {
    .stats-row {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .rating-display,
    .sales-display {
        justify-content: center;
    }
}

/* Card Footer */
.card-footer-premium {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

@media (max-width: 576px) {
    .card-footer-premium {
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
    }
    
    .pricing-premium {
        text-align: center;
    }
}

.pricing-premium {
    background: rgba(248, 249, 250, 0.9);
    border-radius: 12px;
    padding: 1rem;
    min-width: 140px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.hero-product-card:hover .pricing-premium {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    padding: 0.25rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.price-row:last-child {
    margin-bottom: 0;
    border-bottom: none;
}

.price-amount {
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1;
}

.price-amount-alt {
    font-size: 1.25rem;
    font-weight: 700;
    color: #2d3748;
    line-height: 1;
}

.price-type {
    font-size: 0.75rem;
    color: #718096;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-cta-btn {
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 14px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.card-cta-primary {
    background: linear-gradient(135deg, #0d6efd, #0056b3);
    color: white;
}

.card-cta-warning {
    background: linear-gradient(135deg, #ffc107, #ff8c00);
    color: #000;
}

.card-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Premium Floating Elements */
.hero-floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-element {
    position: absolute;
    color: rgba(255, 255, 255, 0.1);
    font-size: 2rem;
    animation: float 8s ease-in-out infinite;
}

.floating-element-1 {
    top: 15%;
    left: 8%;
    animation-delay: 0s;
}

.floating-element-2 {
    top: 70%;
    right: 10%;
    animation-delay: 2s;
}

.floating-element-3 {
    top: 40%;
    left: 15%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

/* Hero Buttons */
.btn-hero {
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.btn-hero:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0,0,0,0.25);
}

.btn-primary.btn-hero {
    background: white;
    color: #667eea;
    border-color: white;
}

.btn-primary.btn-hero:hover {
    background: transparent;
    color: white;
    border-color: white;
}

.btn-outline-secondary.btn-hero,
.btn-outline-light.btn-hero {
    background: transparent;
    color: white;
    border-color: white;
}

.btn-outline-secondary.btn-hero:hover,
.btn-outline-light.btn-hero:hover {
    background: white;
    color: #667eea;
    border-color: white;
}

/* Product Showcase */
.product-showcase {
    max-width: 800px;
    margin: 3rem auto 0;
}

.product-card-mini {
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(15px);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.25);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.product-card-mini:hover {
    transform: translateY(-8px) scale(1.03);
    background: rgba(255,255,255,0.22);
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    border-color: rgba(255,255,255,0.4);
}

.product-icon {
    width: 90px;
    height: 90px;
    background: var(--accent-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
    box-shadow: 0 8px 25px rgba(79, 172, 254, 0.3);
    transition: all 0.4s ease;
}

.product-card-mini:hover .product-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 35px rgba(79, 172, 254, 0.4);
}

.product-card-mini .price-container {
    background: rgba(255,255,255,0.15);
    border-radius: 12px;
    padding: 1rem;
    margin-top: 1rem;
}

.product-card-mini .price-label {
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

.product-card-mini .price-amount {
    color: #FFD700;
    font-weight: bold;
    font-size: 1.5rem;
}

.product-card-mini h5 {
    color: white !important;
    margin-bottom: 1rem !important;
    font-weight: 600;
}

.product-card-mini p {
    color: rgba(255,255,255,0.8) !important;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Stats Section */
.stats-enhanced {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
    position: relative;
}

.stats-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom right, #667eea, transparent);
    transform: skewY(-2deg);
    transform-origin: top left;
}

.stats-enhanced .container {
    position: relative;
    z-index: 2;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 900;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.8rem;
    letter-spacing: -0.02em;
    transition: all 0.3s ease;
}

.stat-number:hover {
    transform: scale(1.1);
}

/* Product Sections */
.product-section-enhanced {
    transition: all 0.3s ease;
}

.product-section-enhanced:hover {
    background: linear-gradient(135deg, #f8f9ff 0%, #f0f2ff 100%) !important;
}

.product-card {
    background: white;
    border-radius: 24px;
    padding: 3rem 2.5rem;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    border: 1px solid rgba(102, 126, 234, 0.1);
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 30px 80px rgba(0,0,0,0.15);
    border-color: rgba(102, 126, 234, 0.3);
}

.product-card:hover::before {
    transform: scaleX(1);
}

.product-image {
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    height: auto;
    object-fit: contain;
    max-height: 400px;
}

.product-image:hover {
    transform: scale(1.05) rotate(1deg);
    box-shadow: 0 25px 60px rgba(0,0,0,0.2);
}

.product-image-container {
    background: linear-gradient(135deg, #f8f9ff 0%, #e3e8ff 100%);
    padding: 2rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 350px;
}

.product-title {
    font-size: 1.4rem;
    line-height: 1.3;
    white-space: normal;
    word-wrap: break-word;
    overflow-wrap: break-word;
    margin-bottom: 1rem;
    max-width: 100%;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.feature-list li:hover {
    padding-left: 1rem;
    background: rgba(102, 126, 234, 0.05);
    border-radius: 8px;
}

.feature-list li:last-child {
    border-bottom: none;
}

.btn-enhanced {
    background: var(--primary-gradient);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-enhanced:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
    color: white;
    text-decoration: none;
}

/* Why Choose Us Section */
.why-choose-enhanced {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.why-choose-enhanced::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    right: 0;
    height: 100px;
    background: var(--secondary-gradient);
    transform: skewY(2deg);
}

.why-choose-enhanced .container {
    position: relative;
    z-index: 2;
}

.feature-card {
    text-align: center;
    padding: 3rem 2rem;
    background: rgba(255,255,255,0.05);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: var(--hover-transform);
    background: rgba(255,255,255,0.1);
}

.feature-icon {
    width: 100px;
    height: 100px;
    background: var(--accent-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2.5rem;
    color: white;
}

/* Testimonials Section */
.testimonial-enhanced {
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
}

.testimonial-card {
    background: white;
    padding: 3rem 2.5rem;
    border-radius: 24px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.08);
    text-align: center;
    height: 100%;
    border-left: 5px solid transparent;
    border-image: var(--primary-gradient) 1;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.testimonial-card::after {
    content: '★★★★★';
    position: absolute;
    top: -10px;
    right: -10px;
    color: #ffc107;
    font-size: 2rem;
    opacity: 0.1;
    transform: rotate(15deg);
}

.testimonial-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 80px rgba(0,0,0,0.15);
}

.testimonial-card:hover::after {
    opacity: 0.2;
    transform: rotate(15deg) scale(1.2);
}

/* Contact Section */
.contact-enhanced {
    background: var(--primary-gradient);
    color: white;
}

/* Animations */
.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Pricing Elements */
.pricing-badge {
    background: rgba(255,255,255,0.95);
    color: #333;
    padding: 1.5rem;
    border-radius: 15px;
    margin: 1.5rem 0;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border-left: 4px solid #28a745;
}

.price-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 1rem 0;
}

.price-original {
    text-decoration: line-through;
    color: #6c757d;
    font-size: 1.1rem;
}

.price-special {
    font-size: 1.8rem;
    font-weight: 700;
    color: #28a745;
}

.savings-text {
    font-size: 0.9rem;
    color: #6c757d;
}

.hero-price {
    background: rgba(40, 167, 69, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    margin-top: 1rem;
    border: 1px solid rgba(40, 167, 69, 0.3);
}

.hero-price-amount {
    color: #28a745;
    font-weight: 700;
    font-size: 1.1rem;
}

/* RESPONSIVE BREAKPOINTS */
@media (max-width: 1200px) {
    .product-title {
        font-size: 1.3rem;
    }
    .product-card {
        padding: 2.5rem 2rem;
    }
}

@media (max-width: 768px) {
    .hero-enhanced h1 { 
        font-size: 2.8rem; 
        margin-bottom: 1.5rem;
    }
    .hero-enhanced .lead {
        font-size: 1.2rem;
        margin-bottom: 2rem;
    }
    .product-showcase {
        margin-top: 2rem;
    }
    .stat-number { 
        font-size: 2.5rem; 
    }
    .product-title {
        font-size: 1.2rem;
    }
    .product-image-container {
        min-height: 250px;
        padding: 1.5rem;
    }
    .product-image {
        max-height: 300px;
    }
    .product-card {
        padding: 2rem 1.5rem;
    }
    .testimonial-card {
        padding: 2rem 1.5rem;
    }
    .btn-hero {
        padding: 15px 30px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-enhanced h1 {
        font-size: 2.2rem;
    }
    .product-card-mini {
        padding: 2rem 1.5rem;
    }
    .product-icon {
        width: 70px;
        height: 70px;
        font-size: 1.5rem;
    }
    .product-image {
        max-height: 250px;
    }
}

/* Last Updated Badge Styling */
.last-updated-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    color: #6c757d;
    font-size: 11px;
    font-weight: 500;
    padding: 4px 8px;
    border-radius: 12px;
    border: 1px solid #dee2e6;
    margin-top: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.last-updated-badge:hover {
    background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
    color: #495057;
    transform: translateY(-1px);
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.last-updated-badge i {
    font-size: 10px;
    opacity: 0.8;
}

.last-updated-badge span {
    white-space: nowrap;
}

/* Enhanced data source badge to match */
.data-source-badge {
    margin-bottom: 4px;
}

/* Responsive adjustments for last updated badge */
@media (max-width: 768px) {
    .last-updated-badge {
        font-size: 10px;
        padding: 3px 6px;
        gap: 4px;
    }
    
    .last-updated-badge i {
        font-size: 9px;
    }
}

.hero-section-premium { background: linear-gradient(180deg, #0f172a 0%, #0b1220 100%); }
.hero-bg-pattern, .hero-glow-effects, .hero-floating-elements, .trust-badge-glow, .card-glow { display: none !important; }
.hero-trust-badge { background: rgba(255,255,255,0.08); color: #ffffff; box-shadow: none; border: 1px solid rgba(255,255,255,0.15); }
.hero-title-premium { text-shadow: none; font-size: 3rem; }
.hero-highlight { color: #93c5fd; text-shadow: none; }
.hero-subtitle-premium { color: rgba(255,255,255,0.85); }
.hero-cta-btn { border-radius: 8px; box-shadow: none; padding: 12px 20px; }
.hero-cta-primary { background: #0d6efd; color: #ffffff; box-shadow: none; }
.hero-cta-secondary { background: transparent; color: #ffffff; border: 1px solid rgba(255,255,255,0.35); }
.hero-cta-btn:hover { transform: translateY(-1px); box-shadow: 0 6px 18px rgba(0,0,0,0.2); }
.hero-cards-container { gap: 1rem; }
.hero-product-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); box-shadow: none; backdrop-filter: none; border-radius: 12px; }
.card-header-premium { margin-bottom: 0.75rem; }
.product-icon { background: rgba(255,255,255,0.12); box-shadow: none; }
.product-name { color: #e5e7eb; }
.product-category { color: #a1a1aa; }
.product-stats-inline { background: transparent; border: none; padding: 0; }
.rating-inline, .sales-inline, .earnings-inline { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.08); }
.data-source-badge { background: transparent; border: none; opacity: 0.7; }
.last-updated-badge { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.08); color: #cbd5e1; }
.card-features-premium { gap: 0.4rem; margin-bottom: 0.75rem; }
.feature-tag-premium { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.08); color: #e5e7eb; }
.feature-check-icon, .feature-crown-icon { width: 24px; height: 24px; background: transparent; box-shadow: none; border: 1px solid rgba(255,255,255,0.2); }
.pricing-premium { background: transparent; border: 1px solid rgba(255,255,255,0.08); box-shadow: none; }
.card-cta-btn { border-radius: 8px; box-shadow: none; }
.card-cta-primary { background: #0d6efd; color: #ffffff; }
.card-cta-warning { background: #ffc107; color: #000000; }

.hero-section-premium { min-height: 72vh; background: #0e1726; }
.hero-section-premium .container-fluid { max-width: 1200px; margin-left: auto; margin-right: auto; padding-left: 1.5rem; padding-right: 1.5rem; }
.hero-title-premium { font-size: 2.5rem; line-height: 1.2; margin-bottom: 1rem; }
.hero-subtitle-premium { max-width: 640px; margin-bottom: 1rem; }
.hero-cta-section { gap: 0.5rem; }
.hero-cta-btn { padding: 10px 16px; border-radius: 6px; }
.hero-features-list { gap: 0.5rem; }
.feature-tag-premium { background: transparent; border: 0; color: rgba(255,255,255,0.85); padding: 0; }
.feature-check-icon, .feature-crown-icon { width: 18px; height: 18px; border: 0; }
.hero-cards-container { gap: 0.5rem; }
.hero-product-card { padding: 0.875rem; border-radius: 10px; border-color: rgba(255,255,255,0.06); }
.hero-product-card:hover { transform: none; box-shadow: none; }
.product-icon { width: 40px; height: 40px; }
.product-name { color: #e2e8f0; }
.product-category { color: #94a3b8; }
.product-stats-inline { padding: 0; background: transparent; border: 0; gap: 0.25rem; }
.rating-inline, .sales-inline, .earnings-inline { background: transparent; border: 0; padding: 0; gap: 0.35rem; color: rgba(255,255,255,0.9); }
.sales-inline { flex-direction: row; align-items: center; }
/* ensure data source and last updated show inside hero cards */
.data-source-badge, .last-updated-badge { display: inline-flex !important; }
.product-badge { font-size: 11px; padding: 4px 10px; opacity: 0.85; }
.pricing-premium { border-color: rgba(255,255,255,0.1); }
.card-cta-btn { padding: 10px 16px; border-radius: 6px; }

/* Shared design system across homepage sections */
:root { --ap-radius: 12px; --ap-shadow: 0 6px 18px rgba(0,0,0,0.08); }

/* Consistent headings spacing and weight */
.elite-author-section h2,
.why-choose-enhanced h2,
.testimonial-enhanced h2,
.contact-enhanced h2,
.product-section-premium h2,
.product-section-premium-alt h2 { font-weight: 700; letter-spacing: -0.01em; margin-bottom: 1rem; }

/* Unify card radius and subtle shadow */
.elite-author-section .elite-stat-card,
.testimonial-card,
.product-image-container-premium,
.card,
.pricing-premium,
.card-footer-premium { border-radius: var(--ap-radius) !important; box-shadow: var(--ap-shadow); }

/* Unify badges and feature tags shape */
.product-badge,
.product-floating-badge,
.feature-tag-premium { border-radius: 10px !important; }

/* Unify CTA buttons rounding */
.product-cta-btn,
.hero-cta-btn,
.card-cta-btn { border-radius: 8px !important; }

/* Fancy hero cards */
.card-fancy { border-radius: var(--ap-radius); overflow: hidden; transition: transform .2s ease, box-shadow .2s ease; }
.card-fancy:hover { transform: translateY(-2px); box-shadow: 0 14px 28px rgba(0,0,0,0.12); }
.card-fancy .card-body { padding: 1.25rem; }

/* Feature badges grid */
.feature-badges .badge { font-weight: 600; border-radius: 8px; }
.feature-badges .col-6 { padding-left: .25rem; padding-right: .25rem; }

/* Premium card styling */
.card-premium { border-radius: var(--ap-radius); overflow: hidden; position: relative; border: 1px solid #e9ecef; }
.card-premium::before { content: ''; display: block; height: 4px; background: linear-gradient(90deg, #0d6efd, #6f42c1); }
.card-premium .icon-circle { width: 44px; height: 44px; border-radius: 50%; background: #f1f5f9; display: inline-flex; align-items: center; justify-content: center; font-size: 18px; box-shadow: inset 0 0 0 2px rgba(0,0,0,0.03); }
.card-premium .card-ribbon { position: absolute; top: 10px; right: 10px; border-radius: 12px; padding: 6px 10px; box-shadow: 0 6px 18px rgba(0,0,0,0.08); }
.card-premium:hover { box-shadow: 0 16px 32px rgba(0,0,0,0.12); transform: translateY(-2px); transition: all .2s ease; }

/* AMAZING HERO SECTION */
.hero-amazing {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.hero-bg-animated {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(120, 119, 198, 0.2) 0%, transparent 50%);
  animation: heroFloat 20s ease-in-out infinite;
}

.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(2px 2px at 20px 30px, rgba(255,255,255,0.3), transparent),
    radial-gradient(2px 2px at 40px 70px, rgba(255,255,255,0.2), transparent),
    radial-gradient(1px 1px at 90px 40px, rgba(255,255,255,0.4), transparent),
    radial-gradient(1px 1px at 130px 80px, rgba(255,255,255,0.3), transparent),
    radial-gradient(2px 2px at 160px 30px, rgba(255,255,255,0.2), transparent);
  background-repeat: repeat;
  background-size: 200px 100px;
  animation: particleFloat 25s linear infinite;
}


.hero-content {
  color: white;
  z-index: 2;
  position: relative;
}

.hero-badge {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-block;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.hero-title {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.text-gradient {
  background: linear-gradient(135deg, #ffeaa7 0%, #fab1a0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.2rem;
  line-height: 1.6;
  opacity: 0.9;
  font-weight: 400;
  margin-bottom: 2rem;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.btn-hero-primary {
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
  border: none;
  color: white;
  padding: 1rem 2rem;
  font-weight: 600;
  border-radius: 50px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(238, 90, 36, 0.3);
}

.btn-hero-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(238, 90, 36, 0.4);
  color: white;
}

.btn-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.5s;
}

.btn-hero-primary:hover .btn-shine {
  left: 100%;
}

.btn-hero-secondary {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
  padding: 1rem 2rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
  color: white;
}

.hero-free-downloads {
  margin: 1.5rem 0;
  position: relative;
  text-align: center;
}

.free-downloads-subtitle {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  margin-top: 0.5rem;
  margin-bottom: 0;
  font-weight: 400;
}

.btn-hero-free {
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
  padding: 1rem 2rem;
  font-weight: 600;
  border-radius: 30px;
  transition: all 0.3s ease;
  font-size: 1.1rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
  position: relative;
  overflow: hidden;
}

.btn-hero-free::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.btn-hero-free:hover::before {
  left: 100%;
}

.btn-hero-free:hover {
  background: linear-gradient(135deg, #218838 0%, #1e7e34 100%);
  border-color: rgba(255, 255, 255, 0.5);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
  text-decoration: none;
}

.btn-hero-free i.fa-download {
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-3px);
  }
  60% {
    transform: translateY(-2px);
  }
}

.hero-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.feature-item {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  display: flex;
  align-items: center;
}

/* AMAZING PRODUCT CARDS */
.hero-cards-container {
  position: relative;
  z-index: 2;
}

.hero-product-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.hero-product-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.card-glow {
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #667eea, #764ba2, #667eea);
  border-radius: 22px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.hero-product-card:hover .card-glow {
  opacity: 0.7;
  animation: cardGlow 2s ease-in-out infinite alternate;
}

.card-header-amazing {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 0.25rem;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.card-1 .card-header-amazing {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.card-2 .card-header-amazing {
  background: linear-gradient(135deg, #ffa726 0%, #ff7043 100%);
}

.card-icon-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.card-icon {
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  margin-right: 0.5rem;
  position: relative;
  z-index: 2;
}

.card-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 32px;
  height: 32px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.card-title-section h5 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 700;
}

.card-subtitle-amazing {
  opacity: 0.8;
  font-size: 0.8rem;
  font-weight: 500;
}

.card-badge-popular {
  background: #4caf50;
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 15px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.card-badge-featured {
  background: #ff9800;
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 15px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.card-body-amazing {
  padding: 0.25rem;
}

.stats-amazing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.125rem;
  margin-bottom: 0.25rem;
}

.stat-item {
  text-align: center;
  padding: 0.125rem;
  background: linear-gradient(135deg, #f8f9ff 0%, #e3f2fd 100%);
  border-radius: 4px;
  border: 1px solid rgba(103, 126, 234, 0.1);
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(103, 126, 234, 0.15);
}

.stat-value {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 0.1rem;
}

.stat-label {
  font-size: 0.75rem;
  color: #666;
  font-weight: 500;
}

.stat-extra {
  font-size: 0.75rem;
  color: #17a2b8;
  font-weight: 600;
  margin-top: 0.25rem;
}

.card-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.125rem;
  margin-bottom: 0.25rem;
  padding-top: 0.25rem;
  border-top: 1px solid rgba(103, 126, 234, 0.1);
}

.feature-tag {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 0.125rem 0.375rem;
  border-radius: 8px;
  font-size: 0.6rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2px;
  transition: all 0.3s ease;
}

.feature-tag:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(103, 126, 234, 0.3);
}

.live-data-compact {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  justify-content: space-between;
  margin: 0.25rem 0;
  padding: 0.25rem;
  background: rgba(103, 126, 234, 0.05);
  border-radius: 4px;
  font-size: 0.6rem;
}

.earnings-micro,
.data-source-micro,
.updated-micro {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  color: #666;
  font-weight: 500;
}

.earnings-micro {
  color: #28a745;
}

.data-source-micro {
  color: #007bff;
}

.updated-micro {
  color: #6c757d;
}

.card-cta {
  margin-top: 0.125rem;
}

.btn-card-primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border: none;
  color: white;
  padding: 0.875rem 2rem;
  font-weight: 600;
  border-radius: 25px;
  width: 100%;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(103, 126, 234, 0.3);
}

.btn-card-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(103, 126, 234, 0.4);
  color: white;
}

.btn-card-secondary {
  background: linear-gradient(135deg, #ffa726 0%, #ff7043 100%);
  border: none;
  color: white;
  padding: 0.875rem 2rem;
  font-weight: 600;
  border-radius: 25px;
  width: 100%;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(255, 167, 38, 0.3);
}

.btn-card-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(255, 167, 38, 0.4);
  color: white;
}

/* ANIMATIONS */
@keyframes heroFloat {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  33% { transform: translateY(-10px) rotate(1deg); }
  66% { transform: translateY(5px) rotate(-1deg); }
}

@keyframes particleFloat {
  0% { transform: translateY(0px); }
  100% { transform: translateY(-100px); }
}

@keyframes pulse {
  0% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
  100% { transform: translate(-50%, -50%) scale(1.5); opacity: 0; }
}

@keyframes cardGlow {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-cta-group {
    flex-direction: column;
    align-items: stretch;
  }
  
  .btn-hero-primary,
  .btn-hero-secondary {
    width: 100%;
    text-align: center;
  }
  
  .stats-amazing {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  
  .card-features {
    justify-content: center;
  }
}

/* ===== MARKETPLACE IMPACT SECTION ===== */
.marketplace-impact-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.impact-stat {
    padding: 2rem 1rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.impact-stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.impact-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.impact-number.text-primary {
    background: linear-gradient(135deg, #0d6efd 0%, #6610f2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.impact-number.text-success {
    background: linear-gradient(135deg, #198754 0%, #20c997 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.impact-number.text-warning {
    background: linear-gradient(135deg, #fd7e14 0%, #ffc107 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.impact-number.text-info {
    background: linear-gradient(135deg, #0dcaf0 0%, #6f42c1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.impact-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .impact-number {
        font-size: 2rem;
    }
    
    .impact-stat {
        padding: 1.5rem 1rem;
        margin-bottom: 1rem;
    }
}

/* ===== ENHANCED CONTACT SECTION ===== */
.contact-enhanced {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.contact-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="10" cy="90" r="1" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.contact-enhanced .container {
    position: relative;
    z-index: 2;
}

/* Instant Connect Buttons */
.contact-enhanced .btn-outline-light {
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.1);
    min-height: 120px;
    font-weight: 600;
}

.contact-enhanced .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.9);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
    color: #fff;
}

.contact-enhanced .btn-outline-light .fs-4 {
    font-size: 1.8rem !important;
    margin-bottom: 0.5rem;
}

.contact-enhanced .btn-outline-light .fw-semibold {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.contact-enhanced .btn-outline-light small {
    font-size: 0.85rem;
    opacity: 0.8;
}

.btn-outline-light:focus {
    box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.25);
}

/* Contact Cards Enhancement */
.contact-enhanced .card {
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.contact-enhanced .card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

/* Fix oversized card icons */
.contact-enhanced .rounded-circle {
    width: 80px !important;
    height: 80px !important;
    font-size: 1.8rem !important;
    margin: 0 auto 1.5rem auto;
}

.contact-enhanced .card-body {
    padding: 2rem 1.5rem !important;
}

.contact-enhanced .card h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.contact-enhanced .card p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.contact-enhanced .list-unstyled li {
    font-size: 0.9rem;
    padding: 0.4rem 0;
}

.contact-enhanced .btn-lg {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
}

.contact-enhanced .card small {
    font-size: 0.85rem;
    font-weight: 500;
}

/* Stats Enhancement */
.contact-enhanced .d-flex.justify-content-center.align-items-center {
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Responsive Improvements */
@media (max-width: 992px) {
    .contact-enhanced .btn-outline-light {
        min-height: 110px;
        font-size: 0.85rem;
    }
    
    .contact-enhanced .btn-outline-light .fw-semibold {
        font-size: 0.9rem;
    }
    
    .contact-enhanced .btn-outline-light small {
        font-size: 0.75rem;
    }
}

@media (max-width: 768px) {
    .contact-enhanced .btn-outline-light {
        padding: 1rem;
        font-size: 0.9rem;
        min-height: 100px;
    }
    
    .contact-enhanced .fs-4 {
        font-size: 1.4rem !important;
    }
    
    .contact-enhanced .rounded-circle {
        width: 70px !important;
        height: 70px !important;
        font-size: 1.5rem !important;
    }
    
    .contact-enhanced .card-body {
        padding: 1.5rem 1rem !important;
    }
}

@media (max-width: 576px) {
    .contact-enhanced .btn-outline-light {
        min-height: 90px;
        padding: 0.8rem 0.5rem;
    }
    
    .contact-enhanced .btn-outline-light .fs-4 {
        font-size: 1.2rem !important;
        margin-bottom: 0.3rem;
    }
    
    .contact-enhanced .btn-outline-light .fw-semibold {
        font-size: 0.85rem;
        margin-bottom: 0.2rem;
    }
    
    .contact-enhanced .btn-outline-light small {
        font-size: 0.7rem;
    }
}