/* Font Awesome fallback styles */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css');

/* Fallback for Font Awesome icons if CDN fails */
.fas, .fab, .far, .fal, .fad, .fat {
    font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands", "Font Awesome 6 Pro", sans-serif;
    font-weight: 900;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
}

/* Fallback styles when Font Awesome fails to load */
.fa-fallback .fas::before,
.fa-fallback .fab::before,
.fa-fallback .far::before {
    content: "●";
    font-family: Arial, sans-serif;
    font-weight: normal;
}

/* Specific fallback icons */
.fa-fallback .fa-search::before { content: "🔍"; }
.fa-fallback .fa-user::before { content: "👤"; }
.fa-fallback .fa-cog::before { content: "⚙️"; }
.fa-fallback .fa-sign-out-alt::before { content: "🚪"; }
.fa-fallback .fa-chevron-down::before { content: "▼"; }
.fa-fallback .fa-chevron-left::before { content: "◀"; }
.fa-fallback .fa-chevron-right::before { content: "▶"; }
.fa-fallback .fa-plus::before { content: "+"; }
.fa-fallback .fa-times::before { content: "×"; }
.fa-fallback .fa-filter::before { content: "⚡"; }
.fa-fallback .fa-dice::before { content: "🎲"; }
.fa-fallback .fa-redo::before { content: "↻"; }
.fa-fallback .fa-star::before { content: "★"; }
.fa-fallback .fa-shopping-cart::before { content: "🛒"; }
.fa-fallback .fa-crown::before { content: "👑"; }
.fa-fallback .fa-credit-card::before { content: "💳"; }
.fa-fallback .fa-linkedin::before { content: "in"; }
.fa-fallback .fa-twitter::before { content: "tw"; }
.fa-fallback .fa-facebook::before { content: "fb"; }
.fa-fallback .fa-instagram::before { content: "ig"; }

/* Disable zoom and scaling on mobile */
html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
    touch-action: manipulation;
}

body {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #ffffff;
    min-height: 100vh;
}

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

/* Navigation */
.navbar {
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    text-decoration: none;
}

.nav-logo .logo-image {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    background: linear-gradient(to right, #2563eb, #9333ea);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    font-weight: 700;
}

.nav-logo i {
    color: #3b82f6;
    font-size: 1.8rem;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    color: #6b7280;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
    position: relative;
    padding: 8px 0;
}

.nav-link:hover {
    color: #3b82f6;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #3b82f6;
    transition: width 0.2s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-btn {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.nav-btn:hover {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.auth-link {
    color: #3b82f6 !important;
    font-weight: 600;
}

.external-btn {
    background: linear-gradient(135deg, #10b981, #059669);
    margin-right: 16px;
}

.external-btn:hover {
    background: linear-gradient(135deg, #059669, #047857);
}

.signup-btn {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
}

/* User Menu Styles */
.guest-menu {
    display: flex;
    align-items: center;
    gap: 16px;
}

.user-menu {
    display: flex;
    align-items: center;
}

.user-profile-dropdown {
    position: relative;
}

.user-profile-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: none;
    padding: 8px 12px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #1f2937;
    font-weight: 500;
}

.user-profile-btn:hover {
    background: rgba(59, 130, 246, 0.1);
}

.user-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
    font-weight: 600;
}

.avatar-text {
    color: white;
    font-weight: 600;
    font-size: 14px;
}

.user-name {
    font-weight: 600;
    color: #1f2937;
}

.dropdown-arrow {
    font-size: 12px;
    color: #6b7280;
    transition: transform 0.2s ease;
}

.user-profile-btn.active .dropdown-arrow {
    transform: rotate(180deg);
}

.user-dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    width: 280px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    border: 1px solid #e5e7eb;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    margin-top: 8px;
}

.user-dropdown-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-header {
    padding: 20px;
    border-bottom: 1px solid #f3f4f6;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.user-avatar-large {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    flex-shrink: 0;
    font-weight: 600;
}

.user-avatar-large .avatar-text {
    font-size: 18px;
    font-weight: 600;
}

.user-details {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.user-full-name {
    font-weight: 600;
    color: #1f2937;
    font-size: 14px;
}

.user-email {
    color: #6b7280;
    font-size: 12px;
}

.user-type {
    color: #3b82f6;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.dropdown-divider {
    height: 1px;
    background: #f3f4f6;
    margin: 8px 0;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: #374151;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s ease;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
}

.dropdown-item:hover {
    background: #f9fafb;
    color: #1f2937;
}

.dropdown-item i {
    width: 16px;
    color: #6b7280;
}

.logout-item {
    color: #dc2626;
}

.logout-item:hover {
    background: #fef2f2;
    color: #dc2626;
}

.logout-item i {
    color: #dc2626;
}

/* Mobile menu button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    padding: 8px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: #1f2937;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile responsive navigation */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: #ffffff;
        flex-direction: column;
        gap: 0;
        padding: 20px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        border-top: 1px solid #e5e7eb;
        max-height: calc(100vh - 80px);
        overflow-y: auto;
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-logo .logo-image {
        height: 32px;
    }
    
    .footer-logo .logo-image {
        height: 28px;
    }
    
    .nav-menu a {
        width: 100%;
        padding: 16px 0;
        border-bottom: 1px solid #f3f4f6;
        text-align: center;
        font-size: 16px;
    }
    
    .nav-menu a:last-child {
        border-bottom: none;
    }
    
    /* Mobile Hero - Simplified */
    .hero {
        padding: 20px 0;
        min-height: 40vh;
    }
    
    .hero-container {
        gap: 15px;
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.1;
        margin-bottom: 8px;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        line-height: 1.3;
        margin-bottom: 15px;
    }
    
    /* Hide all steps completely on mobile */
    .hero-visual {
        display: none !important;
    }
    
    .steps-container {
        display: none !important;
    }
    
    .step-item {
        display: none !important;
    }
    
    .nav-btn {
        margin-top: 16px;
        width: 100%;
        text-align: center;
    }
    
    .external-btn {
        margin-right: 0;
        margin-bottom: 8px;
    }
    
    /* Mobile user menu styles */
    .guest-menu {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }
    
    .user-menu {
        width: 100%;
    }
    
    .user-profile-dropdown {
        width: 100%;
    }
    
    .user-profile-btn {
        width: 100%;
        justify-content: center;
        padding: 16px;
        border: 1px solid #e5e7eb;
        background: #f9fafb;
    }
    
    .user-dropdown-menu {
        position: static;
        width: 100%;
        margin-top: 12px;
        box-shadow: none;
        border: 1px solid #e5e7eb;
        border-radius: 8px;
    }
    
    .dropdown-header {
        padding: 16px;
    }
    
    .user-info {
        justify-content: center;
        text-align: center;
    }
    
    .user-details {
        align-items: center;
    }
    
    /* Prevent body scroll when menu is open */
    body.menu-open {
        overflow: hidden;
    }
}

/* Hero Section - Clean Professional Design (AIN Style) */
.hero {
    background: #ffffff;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-content {
    padding-right: 20px;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1f2937;
}

.highlight {
    color: #2563eb;
    position: relative;
    display: inline-block;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 3px;
    background: #2563eb;
    border-radius: 2px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #4b5563;
    margin-bottom: 40px;
    line-height: 1.6;
    font-weight: 400;
    max-width: 500px;
}

.hero-subtitle strong {
    color: #2563eb;
    font-weight: 600;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 20px;
    position: relative;
}

/* Professional Steps Design - Clean AIN Style */
.steps-container {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
    max-width: 480px;
}

.step-item {
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    padding: 24px;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.step-item:hover {
    border-color: #2563eb;
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.15);
    transform: translateY(-2px);
}

.step-number {
    position: absolute;
    top: -12px;
    left: 24px;
    background: #2563eb;
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.step-content {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.step-icon {
    width: 56px;
    height: 56px;
    background: #f3f4f6;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.step-item:hover .step-icon {
    background: #dbeafe;
    transform: scale(1.05);
}

.step-icon i {
    font-size: 1.5rem;
    color: #2563eb;
}

.step-text h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 8px;
    margin-top: 0;
}

.step-text p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #6b7280;
    margin: 0;
    font-weight: 400;
}

/* Enhanced Professional Buttons - AIN Style */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: #2563eb;
    color: white;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
    background: #1d4ed8;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.btn-outline {
    background: transparent;
    color: #2563eb;
    border: 2px solid #2563eb;
}

.btn-outline:hover {
    background: #2563eb;
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.3);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* Search Section - Compact Design */
.search-section {
    padding: 5px 0;
    background: white;
}

.search-header {
    text-align: center;
    margin-bottom: 40px;
}

.search-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 12px;
    line-height: 1.2;
}

.search-header p {
    font-size: 1rem;
    color: #6b7280;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.4;
}

.search-container {
    max-width: 600px;
    margin: 0 auto 40px;
}

.search-box {
    position: relative;
}

.search-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
    font-size: 1.1rem;
    z-index: 2;
}

.search-input {
    width: 100%;
    padding: 20px 20px 20px 50px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    background: #f9fafb;
}

.search-input:focus {
    outline: none;
    border-color: #3b82f6;
    background: white;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}

.search-input::placeholder {
    color: #9ca3af;
}

/* Search suggestions */
.search-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    z-index: 10;
    max-height: 200px;
    overflow-y: auto;
    display: none;
    margin-top: 4px;
}

.search-suggestion-item {
    padding: 12px 20px;
    cursor: pointer;
    border-bottom: 1px solid #f3f4f6;
    transition: all 0.2s ease;
}

.search-suggestion-item:hover {
    background: #f9fafb;
    color: #3b82f6;
}

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

/* Filter Container - Compact */
.filter-container {
    background: #f8fafc;
    border-radius: 16px;
    padding: 25px;
    border: 1px solid #e5e7eb;
}

.filter-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-bottom: 32px;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.filter-label {
    font-weight: 600;
    color: #374151;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.filter-label i {
    color: #3b82f6;
}

.filter-select {
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 0.95rem;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-select:hover {
    border-color: #3b82f6;
}

.filter-select:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.filter-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Results Section */
.results-section {
    padding: 5px 0;
    background: #f8fafc;
}

.results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding: 24px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.results-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 8px;
}

.results-count {
    color: #6b7280;
    font-size: 1rem;
}

.results-count strong {
    color: #3b82f6;
    font-weight: 700;
}

.results-actions {
    display: flex;
    gap: 12px;
}

/* Results Grid */
.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.investor-card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid #f3f4f6;
}

.investor-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: #3b82f6;
}

.investor-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
}

.investor-logo {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}

.investor-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

.investor-logo i {
    font-size: 1.5rem;
    color: #9ca3af;
}

.investor-info {
    flex: 1;
    min-width: 0;
}

.investor-info h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 8px;
    word-wrap: break-word;
}

.investor-type {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 8px;
}

.investor-designation {
    font-size: 0.9rem;
    color: #6b7280;
    font-style: italic;
    margin: 0;
}

.investor-details {
    margin-bottom: 24px;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f3f4f6;
}

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

.detail-label {
    font-weight: 600;
    color: #6b7280;
    font-size: 0.9rem;
}

.detail-value {
    color: #374151;
    font-weight: 500;
    text-align: right;
    max-width: 60%;
    word-wrap: break-word;
}

.investor-sectors {
    margin-bottom: 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.sector-tag {
    background: #eff6ff;
    color: #1d4ed8;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid #dbeafe;
    transition: all 0.3s ease;
}

.sector-tag:hover {
    background: #dbeafe;
    transform: translateY(-2px);
}

.investor-actions {
    display: flex;
    gap: 12px;
}

.action-btn {
    flex: 1;
    padding: 12px 16px;
    border: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    min-height: 44px;
}

.action-btn:hover {
    transform: translateY(-2px);
}

.action-btn.primary {
    background: #3b82f6;
    color: white;
}

.action-btn.primary:hover {
    background: #2563eb;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.action-btn:not(.primary) {
    background: #f3f4f6;
    color: #374151;
    border: 1px solid #d1d5db;
}

.action-btn:not(.primary):hover {
    background: #e5e7eb;
    color: #1f2937;
}

/* Loading and No Results */
.loading, .no-results {
    text-align: center;
    padding: 80px 20px;
    color: #6b7280;
}

.loading-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid #f3f4f6;
    border-top: 4px solid #3b82f6;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 24px;
}

.no-results-icon {
    font-size: 4rem;
    color: #d1d5db;
    margin-bottom: 24px;
}

.loading h3, .no-results h3 {
    margin-bottom: 16px;
    color: #374151;
    font-size: 1.5rem;
}

.loading p, .no-results p {
    margin-bottom: 32px;
    color: #6b7280;
}

/* Load More */
.load-more-container {
    text-align: center;
    margin-top: 40px;
}

/* Pagination */
.pagination-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.pagination-info {
    color: #6b7280;
    font-size: 0.95rem;
    font-weight: 500;
}

.pagination-info strong {
    color: #2563eb;
}

.pagination-controls {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.pagination-btn {
    padding: 10px 16px;
    font-size: 0.9rem;
    min-width: 100px;
}

.pagination-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.page-numbers {
    display: flex;
    gap: 8px;
    align-items: center;
}

.page-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    background: white;
    color: #6b7280;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.page-number:hover {
    border-color: #2563eb;
    color: #2563eb;
}

.page-number.active {
    background: #2563eb;
    color: white;
    border-color: #2563eb;
}

.page-number.ellipsis {
    border: none;
    background: transparent;
    cursor: default;
    width: 20px;
}

.page-number.ellipsis:hover {
    border: none;
    color: #6b7280;
}

/* Responsive pagination */
@media (max-width: 768px) {
    .pagination-controls {
        flex-direction: column;
        gap: 12px;
    }
    
    .page-numbers {
        order: -1;
    }
    
    .pagination-btn {
        min-width: 120px;
    }
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 10001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}

.modal-content {
    background: white;
    margin: 5% auto;
    padding: 0;
    border-radius: 20px;
    width: 90%;
    max-width: 800px;
    max-height: 85vh;
    overflow-y: auto;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    animation: slideUp 0.4s ease;
    /* Hide scrollbar */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* Internet Explorer 10+ */
}

.modal-content::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.modal-header {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    padding: 32px;
    border-radius: 20px 20px 0 0;
    position: relative;
}

.modal-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
}

.modal-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.modal-body {
    padding: 32px;
    /* Hide scrollbar */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* Internet Explorer 10+ */
}

.modal-body::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.modal-section {
    margin-bottom: 32px;
    padding: 24px;
    background: #f8fafc;
    border-radius: 12px;
    border-left: 4px solid #3b82f6;
}

.modal-section h3 {
    color: #1f2937;
    margin-bottom: 20px;
    font-size: 1.2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
}

.modal-section h3 i {
    color: #3b82f6;
    font-size: 1.1rem;
}

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

.modal-detail {
    background: white;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

.modal-detail-label {
    font-weight: 600;
    color: #6b7280;
    font-size: 0.9rem;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.modal-detail-value {
    color: #374151;
    font-weight: 500;
    line-height: 1.5;
}

.modal-detail-value a {
    color: #3b82f6;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.modal-detail-value a:hover {
    color: #1d4ed8;
    transform: translateX(3px);
}

/* Modal specific content */
.modal-bio, .modal-portfolio {
    line-height: 1.6;
    color: #374151;
    background: white;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

.modal-sectors {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.modal-poc-image {
    text-align: center;
    margin-bottom: 20px;
}

.modal-poc-image img {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #3b82f6;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.2);
}

.modal-images {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.modal-company-image {
    width: 120px;
    height: 120px;
    object-fit: contain;
    border-radius: 8px;
    border: 2px solid #e5e7eb;
    background: white;
    padding: 12px;
    transition: all 0.3s ease;
}

.modal-company-image:hover {
    transform: scale(1.05);
    border-color: #3b82f6;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.2);
}

/* Toast */
.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.toast {
    background: white;
    color: #374151;
    padding: 16px 20px;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    border-left: 4px solid #3b82f6;
    min-width: 300px;
    animation: slideInRight 0.3s ease;
    display: flex;
    align-items: center;
    gap: 12px;
}

.toast.success {
    border-left-color: #10b981;
}

.toast.error {
    border-left-color: #ef4444;
}

.toast.warning {
    border-left-color: #f59e0b;
}

.toast i {
    font-size: 1.2rem;
}

.toast.success i {
    color: #10b981;
}

.toast.error i {
    color: #ef4444;
}

.toast.warning i {
    color: #f59e0b;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1f2937, #111827);
    color: white;
    padding: 80px 0 30px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #3b82f6, transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
}

.footer-logo .logo-image {
    height: 36px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1); /* Make logo white for dark footer */
}

.footer-logo i {
    color: #3b82f6;
    font-size: 1.8rem;
}

.footer-section h4 {
    color: #f9fafb;
    margin-bottom: 20px;
    font-size: 1.1rem;
    font-weight: 600;
    position: relative;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: #3b82f6;
    border-radius: 1px;
}

.footer-section p {
    color: #9ca3af;
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    position: relative;
    padding-left: 0;
}

.footer-links a:hover {
    color: #3b82f6;
    padding-left: 8px;
}

.social-links {
    display: flex;
    gap: 16px;
    margin-top: 20px;
}

.social-link {
    color: #9ca3af;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: rgba(59, 130, 246, 0.1);
}

.social-link:hover {
    color: #3b82f6;
    background: rgba(59, 130, 246, 0.2);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 30px;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: #9ca3af;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #3b82f6;
}

/* Footer responsive design */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 60px 0 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-section h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-links a:hover {
        padding-left: 0;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-bottom-links {
        justify-content: center;
    }
}

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

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Mobile menu is handled by the mobile menu styles above */
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .filter-row {
        grid-template-columns: 1fr;
    }
    
    .filter-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .results-grid {
        grid-template-columns: 1fr;
    }
    
    .results-header {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .modal-content {
        width: 95%;
        margin: 10% auto;
    }
    
    .modal-body {
        padding: 20px;
    }
    
    .modal-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-stats {
        align-items: center;
    }
    
    .stat-card {
        min-width: 250px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero {
        padding: 15px 0;
        min-height: 35vh;
    }
    
    .hero-title {
        font-size: 1.6rem;
        line-height: 1.1;
        margin-bottom: 6px;
    }
    
    .hero-subtitle {
        font-size: 0.85rem;
        line-height: 1.2;
        margin-bottom: 12px;
    }
    
    /* Ensure steps are hidden on phones too */
    .hero-visual {
        display: none !important;
    }
    
    .steps-container {
        display: none !important;
    }
    
    .step-item {
        display: none !important;
    }
    
    
    .search-section {
        padding: 30px 0;
    }
    
    .search-header {
        margin-bottom: 25px;
    }
    
    .search-header h2 {
        font-size: 1.6rem;
        margin-bottom: 8px;
    }
    
    .search-header p {
        font-size: 0.9rem;
    }
    
    .search-container {
        margin-bottom: 25px;
    }
    
    .search-input {
        padding: 15px 15px 15px 45px;
        font-size: 1rem;
        border-radius: 10px;
    }
    
    .search-icon {
        left: 15px;
        font-size: 1rem;
    }
    
    .filter-container {
        padding: 18px;
        border-radius: 12px;
    }
    
    .investor-card {
        padding: 24px;
    }
    
    .investor-header {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    
    .investor-actions {
        flex-direction: column;
    }
    
    .action-btn {
        width: 100%;
    }
    
    .toast {
        min-width: 250px;
        right: 10px;
        left: 10px;
    }
}

/* Responsive design for independent 3D hexagonal steps */
@media (max-width: 1200px) {
    .hero-steps {
        gap: 3rem;
        margin-top: 5rem;
    }
    
    .step-card {
        width: 280px;
        padding: 2.5rem 1.5rem;
        min-height: 340px;
    }
    
    .step-icon {
        width: 100px;
        height: 100px;
    }
    
    .step-icon i {
        font-size: 2.5rem;
    }
}

@media (max-width: 1024px) {
    .hero-steps {
        flex-direction: column;
        gap: 4rem;
        margin-top: 4rem;
    }
    
    .step-card {
        width: 320px;
        padding: 3rem 2rem;
        min-height: 360px;
    }
    
    .step-icon {
        width: 110px;
        height: 110px;
    }
    
    .step-icon i {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .hero-steps {
        gap: 3rem;
        margin-top: 3rem;
        padding: 0 1rem;
    }
    
    .step-card {
        width: 300px;
        padding: 2.5rem 1.5rem;
        min-height: 340px;
    }
    
    .step-icon {
        width: 100px;
        height: 100px;
    }
    
    .step-icon i {
        font-size: 2.5rem;
    }
    
    .step-card h3 {
        font-size: 1.8rem;
    }
    
    .step-card p {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .hero-steps {
        gap: 2.5rem;
        margin-top: 2.5rem;
    }
    
    .step-card {
        width: 280px;
        padding: 2rem 1rem;
        min-height: 320px;
    }
    
    .step-icon {
        width: 90px;
        height: 90px;
    }
    
    .step-icon i {
        font-size: 2.2rem;
    }
    
    .step-card h3 {
        font-size: 1.6rem;
    }
    
    .step-card p {
        font-size: 1rem;
    }
    
    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.6rem;
        top: -30px;
    }
}

/* Three Tab Section */
.tabs-section {
    padding: 80px 0;
    background: #f8fafc;
}

.tabs-header {
    text-align: center;
    margin-bottom: 60px;
}

.tabs-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 16px;
}

.tabs-header p {
    font-size: 1.1rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

.tabs-container {
    max-width: 2000px;
    margin: 0 auto;
}

.tab-buttons {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 40px;
    background: white;
    padding: 8px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.tab-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    border: none;
    background: transparent;
    color: #6b7280;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 12px;
    min-width: 140px;
    justify-content: center;
}

.tab-btn i {
    font-size: 1.2rem;
}

.tab-btn:hover {
    color: #2563eb;
    background: #f1f5f9;
}

.tab-btn.active {
    background: #2563eb;
    color: white;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.tab-content {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    min-height: 400px;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

.tab-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: center;
}

.tab-image {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #dbeafe, #eff6ff);
    border-radius: 50%;
    margin: 0 auto;
}

.tab-image i {
    font-size: 4rem;
    color: #2563eb;
}

.tab-text h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 20px;
}

.tab-text p {
    font-size: 1.1rem;
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 24px;
}

.tab-text ul {
    list-style: none;
    margin-bottom: 32px;
}

.tab-text li {
    padding: 8px 0;
    color: #6b7280;
    position: relative;
    padding-left: 24px;
}

.tab-text li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
    font-size: 1.1rem;
}

.tab-text .btn {
    margin-top: 16px;
}

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

/* Responsive design for tabs */
@media (max-width: 768px) {
    .tabs-section {
        padding: 60px 0;
    }
    
    .tabs-header h2 {
        font-size: 2rem;
    }
    
    .tab-buttons {
        flex-direction: column;
        gap: 4px;
        padding: 12px;
    }
    
    .tab-btn {
        min-width: auto;
        width: 100%;
        justify-content: center;
    }
    
    .tab-content {
        padding: 24px;
    }
    
    .tab-content-wrapper {
        grid-template-columns: 1fr;
        gap: 24px;
        text-align: center;
    }
    
    .tab-image {
        width: 150px;
        height: 150px;
    }
    
    .tab-image i {
        font-size: 3rem;
    }
    
    .tab-text h3 {
        font-size: 1.5rem;
    }
    
    .tab-text p {
        font-size: 1rem;
    }
}

/* Product Demo Section - Professional AIN Style */
.product-demo {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 15px;
    padding: 20px;
    margin: 15px 0;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    border: 1px solid #e2e8f0;
}

.product-demo .container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 20px;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Product Images Section */
.product-images {
    text-align: center;
    order: 2;
}

.main-image {
    background: white;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e2e8f0;
}

.main-image img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    max-height: 500px;
    object-fit: cover;
    margin: 20px;
}

.thumbnail-images {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.thumbnail {
    width: 50px;
    height: 50px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    opacity: 0.7;
}

/* Product Info Section */
.product-info {
    color: #1e293b;
    padding: 15px;
    order: 1;
}

.product-info h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1e3a8a;
    line-height: 1.2;
}

.product-info p {
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 15px;
    color: #64748b;
}

/* Rating Section */
.rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    background: white;
    padding: 8px 12px;
    border-radius: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
}

.stars {
    color: #f59e0b;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.review-count {
    font-size: 0.8rem;
    color: #64748b;
    font-weight: 500;
}

/* Price Section */
.price {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    background: white;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
}

.current-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: #10b981;
}

.original-price {
    font-size: 1rem;
    text-decoration: line-through;
    color: #9ca3af;
}

.discount {
    background: linear-gradient(45deg, #ef4444, #dc2626);
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3);
}

/* Features Section */
.features {
    margin-bottom: 15px;
    background: white;
    padding: 12px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
}

.features h4 {
    font-size: 0.95rem;
    margin-bottom: 10px;
    color: #1e3a8a;
    text-align: center;
    font-weight: 600;
}

.features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features li {
    padding: 5px 0;
    border-bottom: 1px solid #f1f5f9;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: #64748b;
}

.features li:last-child {
    border-bottom: none;
}

.features li::before {
    content: '✓';
    background: linear-gradient(45deg, #10b981, #059669);
    color: white;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6rem;
    font-weight: bold;
    flex-shrink: 0;
}

/* Buy Now Button */
.buy-now-btn {
    background: linear-gradient(45deg, #1e3a8a, #1e40af);
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: 100%;
    margin-bottom: 10px;
}

/* Guarantee Section */
.guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: white;
    padding: 8px 12px;
    border-radius: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    font-size: 0.75rem;
    color: #64748b;
    text-align: center;
}

.guarantee i {
    color: #10b981;
    font-size: 0.85rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .product-demo {
        padding: 40px;
        margin: 30px 0;
    }
    
    .product-demo .container {
        gap: 40px;
    }
    
    .product-info h3 {
        font-size: 2rem;
    }
    
    .current-price {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .product-demo {
        padding: 30px 20px;
        margin: 20px 0;
    }
    
    .product-demo .container {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .product-info h3 {
        font-size: 1.8rem;
    }
    
    .current-price {
        font-size: 1.8rem;
    }
    
    .thumbnail-images {
        justify-content: center;
    }
    
    .thumbnail {
        width: 70px;
        height: 70px;
    }
}

@media (max-width: 480px) {
    .product-demo {
        padding: 25px 15px;
        margin: 15px 0;
    }
    
    .product-info h3 {
        font-size: 1.6rem;
    }
    
    .current-price {
        font-size: 1.6rem;
    }
    
    .price {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .features {
        padding: 20px 15px;
    }
    
    .features li {
        font-size: 0.9rem;
        padding: 10px 0;
    }
    
    .buy-now-btn {
        padding: 16px 30px;
        font-size: 1.1rem;
    }
}

/* Authentication Modals */
.auth-modal {
    max-width: 450px;
    width: 90%;
    /* Hide scrollbar */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* Internet Explorer 10+ */
}

.auth-modal::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    color: #1e3a8a;
    font-size: 0.95rem;
}

.form-group input,
.form-group select {
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #1e3a8a;
    box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
}

.form-group input.error,
.form-group select.error {
    border-color: #ef4444;
}

.error-message {
    color: #ef4444;
    font-size: 0.85rem;
    margin-top: 5px;
}

.checkbox-group {
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin: 0;
}

.checkbox-group label {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 500;
    cursor: pointer;
}

.auth-btn {
    width: 100%;
    padding: 14px 20px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    background: linear-gradient(45deg, #1e3a8a, #1e40af);
    color: white;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.3);
}

.auth-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 58, 138, 0.4);
    background: linear-gradient(45deg, #1e40af, #1d4ed8);
}

.auth-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.auth-footer {
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
}

.auth-footer p {
    margin: 10px 0;
    color: #64748b;
    font-size: 0.9rem;
}

.link {
    color: #1e3a8a;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.link:hover {
    color: #1e40af;
    text-decoration: underline;
}

/* Password strength indicator */
.password-strength {
    margin-top: 5px;
    height: 4px;
    border-radius: 2px;
    background: #e2e8f0;
    overflow: hidden;
}

.password-strength-bar {
    height: 100%;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.password-strength-bar.weak {
    background: #ef4444;
    width: 25%;
}

.password-strength-bar.fair {
    background: #f59e0b;
    width: 50%;
}

.password-strength-bar.good {
    background: #10b981;
    width: 75%;
}

.password-strength-bar.strong {
    background: #059669;
    width: 100%;
}

/* Responsive adjustments for auth modals */
@media (max-width: 480px) {
    .auth-modal {
        width: 95%;
        margin: 10% auto;
    }
    
    .auth-form {
        gap: 15px;
    }
    
    .form-group input,
    .form-group select {
        padding: 10px 14px;
        font-size: 0.9rem;
    }
    
    .auth-btn {
        padding: 12px 18px;
        font-size: 0.95rem;
    }
}

/* Login Prompt for Non-Logged-In Users */
.login-prompt {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 20px;
    padding: 60px 40px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    margin: 40px 0;
}

.login-prompt-content {
    max-width: 500px;
    margin: 0 auto;
}

.login-prompt-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1e3a8a, #1e40af);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    box-shadow: 0 10px 25px rgba(30, 58, 138, 0.3);
}

.login-prompt-icon i {
    font-size: 2.5rem;
    color: white;
}

.login-prompt h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 20px;
}

.login-prompt p {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 40px;
    line-height: 1.6;
}

.login-prompt-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.login-prompt-actions .btn {
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.login-prompt-actions .btn-primary {
    background: linear-gradient(45deg, #10b981, #059669);
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.login-prompt-actions .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

.login-prompt-actions .btn-outline {
    background: transparent;
    color: #1e3a8a;
    border: 2px solid #1e3a8a;
}

.login-prompt-actions .btn-outline:hover {
    background: #1e3a8a;
    color: white;
    transform: translateY(-2px);
}

/* Responsive adjustments for login prompt */
@media (max-width: 768px) {
    .login-prompt {
        padding: 40px 20px;
        margin: 20px 0;
    }
    
    .login-prompt-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }
    
    .login-prompt-icon i {
        font-size: 2rem;
    }
    
    .login-prompt h3 {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }
    
    .login-prompt p {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .login-prompt-actions {
        flex-direction: column;
        gap: 15px;
    }
    
    .login-prompt-actions .btn {
        width: 100%;
        justify-content: center;
    }
}

/* Login Prompt for Additional Investors (Non-Logged-In Users) */
.login-prompt-more {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-radius: 20px;
    padding: 50px 40px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 1px solid #bae6fd;
    margin: 30px 0;
    position: relative;
    overflow: hidden;
}

.login-prompt-more::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0ea5e9, #3b82f6, #8b5cf6);
}

.login-prompt-more .login-prompt-content {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.login-prompt-more .login-prompt-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #0ea5e9, #3b82f6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 8px 20px rgba(14, 165, 233, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.login-prompt-more .login-prompt-icon i {
    font-size: 2rem;
    color: white;
}

.login-prompt-more h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #0ea5e9, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.login-prompt-more p {
    font-size: 1.05rem;
    color: #475569;
    margin-bottom: 35px;
    line-height: 1.6;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.login-prompt-more .login-prompt-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.login-prompt-more .login-prompt-actions .btn {
    padding: 14px 28px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.login-prompt-more .login-prompt-actions .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.5s;
}

.login-prompt-more .login-prompt-actions .btn:hover::before {
    left: 100%;
}

.login-prompt-more .login-prompt-actions .btn-primary {
    background: linear-gradient(45deg, #0ea5e9, #3b82f6);
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.3);
}

.login-prompt-more .login-prompt-actions .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(14, 165, 233, 0.4);
}

.login-prompt-more .login-prompt-actions .btn-outline {
    background: transparent;
    color: #0ea5e9;
    border: 2px solid #0ea5e9;
}

.login-prompt-more .login-prompt-actions .btn-outline:hover {
    background: #0ea5e9;
    color: white;
    transform: translateY(-2px);
}

/* Responsive adjustments for login prompt more */
@media (max-width: 768px) {
    .login-prompt-more {
        padding: 35px 20px;
        margin: 20px 0;
    }
    
    .login-prompt-more .login-prompt-icon {
        width: 55px;
        height: 55px;
        margin-bottom: 20px;
    }
    
    .login-prompt-more .login-prompt-icon i {
        font-size: 1.6rem;
    }
    
    .login-prompt-more h3 {
        font-size: 1.5rem;
        margin-bottom: 12px;
    }
    
    .login-prompt-more p {
        font-size: 1rem;
        margin-bottom: 25px;
    }
    
    .login-prompt-more .login-prompt-actions {
        flex-direction: column;
        gap: 15px;
    }
    
    .login-prompt-more .login-prompt-actions .btn {
        width: 100%;
        justify-content: center;
    }
}



/* Floating Blur Overlay */
.floating-blur-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 600px;
    height: auto;
    min-height: 400px;
    max-height: 90vh;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.95) 100%);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    overflow: auto;
}

/* Results grid container positioning for overlay */
.results-grid {
    position: relative;
}

.floating-blur-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.05) 0%, rgba(59, 130, 246, 0.05) 100%);
    pointer-events: none;
}

.overlay-content {
    text-align: center;
    max-width: 500px;
    padding: 40px;
    position: relative;
    z-index: 2;
}

/* Removed overlay-close button styles */

.floating-blur-overlay .lock-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 15px 30px rgba(239, 68, 68, 0.3);
    animation: lockPulse 2s ease-in-out infinite;
}

.floating-blur-overlay .lock-icon i {
    font-size: 2rem;
    color: white;
}

.floating-blur-overlay h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.floating-blur-overlay p {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 30px;
    line-height: 1.6;
}

.overlay-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.overlay-buttons .btn {
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-width: 140px;
    justify-content: center;
}

.overlay-buttons .btn-primary {
    background: linear-gradient(135deg, #1e3a8a, #1e40af);
    color: white;
    box-shadow: 0 8px 20px rgba(30, 58, 138, 0.3);
}

.overlay-buttons .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(30, 58, 138, 0.4);
}

.overlay-buttons .btn-secondary {
    background: linear-gradient(135deg, #64748b, #475569);
    color: white;
    box-shadow: 0 8px 20px rgba(100, 116, 139, 0.3);
}

.overlay-buttons .btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(100, 116, 139, 0.4);
}

@keyframes lockPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 15px 30px rgba(239, 68, 68, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 20px 40px rgba(239, 68, 68, 0.4);
    }
}

/* Responsive adjustments for overlay */
@media (max-width: 768px) {
    .floating-blur-overlay {
        width: 95%;
        height: auto;
        min-height: 350px;
        max-height: 80vh;
        top: 50%;
        transform: translate(-50%, -50%);
        margin: 10px auto;
    }
    
    .overlay-content {
        padding: 25px 20px;
        height: auto;
    }
    
    .floating-blur-overlay h3 {
        font-size: 1.4rem;
        margin-bottom: 12px;
    }
    
    .floating-blur-overlay p {
        font-size: 0.95rem;
        margin-bottom: 25px;
    }
    
    .overlay-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .overlay-buttons .btn {
        width: 100%;
        max-width: 250px;
        padding: 12px 20px;
    }
}

@media (max-width: 480px) {
    .floating-blur-overlay {
        width: 98%;
        height: auto;
        min-height: 280px;
        max-height: 85vh;
        margin: 5px auto;
    }
    
    .floating-blur-overlay .lock-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }
    
    .floating-blur-overlay .lock-icon i {
        font-size: 1.5rem;
    }
    
    .floating-blur-overlay h3 {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }
    
    .floating-blur-overlay p {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }
    
    .overlay-content {
        padding: 20px 15px;
        height: auto;
    }
    
    .overlay-buttons .btn {
        padding: 10px 16px;
        font-size: 0.9rem;
    }
}

/* Payment Success Modal */
.payment-success-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

.payment-success-content {
    background: white;
    border-radius: 20px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    animation: slideUp 0.4s ease;
}

.success-icon {
    font-size: 4rem;
    color: #10b981;
    margin-bottom: 20px;
}

.payment-success-content h2 {
    color: #1f2937;
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.payment-success-content p {
    color: #6b7280;
    margin-bottom: 25px;
    line-height: 1.6;
}

.payment-details {
    background: #f9fafb;
    border-radius: 12px;
    padding: 20px;
    margin: 20px 0;
    border-left: 4px solid #3b82f6;
}

.payment-details p {
    margin: 8px 0;
    color: #374151;
}

.next-steps {
    text-align: left;
    margin: 25px 0;
    background: #eff6ff;
    border-radius: 12px;
    padding: 20px;
}

.next-steps h3 {
    color: #1e40af;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.next-steps ul {
    list-style: none;
    padding: 0;
}

.next-steps li {
    padding: 8px 0;
    color: #374151;
    position: relative;
    padding-left: 25px;
}

.next-steps li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

.modal-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
    flex-wrap: wrap;
}

.modal-actions .btn {
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    min-width: 120px;
}

/* Guest email section styling */
.guest-email-section {
    background: #fef3c7;
    border: 1px solid #f59e0b;
    border-radius: 12px;
    padding: 20px;
    margin: 20px 0;
    text-align: left;
}

.guest-email-section p {
    margin-bottom: 15px;
    color: #92400e;
    font-size: 0.95rem;
}

.email-input-group {
    display: flex;
    gap: 10px;
    align-items: center;
}

.guest-email-input {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid #d1d5db;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.guest-email-input:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.email-input-group .btn {
    white-space: nowrap;
    min-width: auto;
    padding: 12px 20px;
}

.email-sent-confirmation {
    display: flex;
    align-items: center;
    color: #065f46;
    font-weight: 600;
    background: #d1fae5;
    padding: 12px 16px;
    border-radius: 8px;
    border: 1px solid #10b981;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

/* Responsive design for payment modal */
@media (max-width: 768px) {
    .payment-success-content {
        padding: 30px 20px;
        margin: 20px;
    }
    
    .modal-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .modal-actions .btn {
        width: 100%;
        max-width: 250px;
    }
    
    .email-input-group {
        flex-direction: column;
        gap: 15px;
    }
    
    .guest-email-input {
        width: 100%;
    }
    
    .email-input-group .btn {
        width: 100%;
        max-width: none;
    }
}

/* Hidden Investor Cards (after first 4 for non-logged-in users) */
.investor-card.hidden {
    opacity: 0.3;
    filter: blur(3px);
    pointer-events: none;
    cursor: not-allowed;
    position: relative;
}

.investor-card.hidden::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    z-index: 1;
    pointer-events: none;
}

.investor-card.hidden .investor-header,
.investor-card.hidden .investor-details,
.investor-card.hidden .investor-sectors,
.investor-card.hidden .investor-actions {
    position: relative;
    z-index: 2;
}

.investor-card.hidden .action-btn.locked {
    background: #9ca3af;
    color: #6b7280;
    cursor: not-allowed;
    opacity: 0.7;
    border: 1px solid #d1d5db;
}

.investor-card.hidden .action-btn.locked:hover {
    transform: none;
    box-shadow: none;
    background: #9ca3af;
}

/* Payment Modal Styles */
.payment-modal {
    max-width: 500px;
    width: 90%;
}

.payment-plan {
    text-align: center;
}

.plan-header {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #e5e7eb;
}

.plan-header h3 {
    color: #1f2937;
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.plan-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #3b82f6;
    margin-bottom: 0.5rem;
}

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

.plan-features {
    text-align: left;
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    padding: 0.5rem;
    background: #f9fafb;
    border-radius: 8px;
}

.feature-item i {
    color: #10b981;
    margin-right: 0.75rem;
    font-size: 1.1rem;
}

.feature-item span {
    color: #374151;
    font-weight: 500;
}

.account-details {
    background: #f3f4f6;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    text-align: left;
}

.account-details h4 {
    color: #1f2937;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.account-details p {
    margin-bottom: 0.5rem;
    color: #4b5563;
}

.payment-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.payment-actions .btn {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.payment-actions .btn-primary {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    border: none;
}

.payment-actions .btn-primary:hover {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}

.payment-actions .btn-secondary {
    background: #f3f4f6;
    color: #6b7280;
    border: 1px solid #d1d5db;
}

.payment-actions .btn-secondary:hover {
    background: #e5e7eb;
    color: #4b5563;
}

/* Premium Notice Styles */
.premium-notice {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border: 2px solid #f59e0b;
    border-radius: 12px;
    padding: 1rem;
    margin: 1rem 0;
    text-align: center;
}

.premium-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: #92400e;
    font-weight: 600;
    font-size: 1.1rem;
}

.premium-badge i {
    color: #f59e0b;
    font-size: 1.2rem;
}

.premium-notice p {
    color: #92400e;
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

.premium-notice strong {
    color: #78350f;
    font-weight: 700;
    font-size: 1.1rem;
}

/* Update auth button for premium */
.auth-btn {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    border: none;
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.auth-btn:hover {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}

.auth-btn i {
    font-size: 1.1rem;
}

/* Demo Product Dropdown */
.demo-product-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 1rem;
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.demo-product-header:hover {
    background: #e2e8f0;
    border-color: #cbd5e1;
}

.demo-product-header h3 {
    margin: 0;
    color: #1e293b;
    font-size: 1.2rem;
    font-weight: 600;
}

.demo-toggle-icon {
    color: #64748b;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

/* Desktop: Always show demo content, hide dropdown functionality */
.demo-product-content {
    display: block;
    max-height: none;
    overflow: visible;
    padding-bottom: 1rem;
}

/* Desktop: Hide dropdown header and icon */
@media (min-width: 769px) {
    .demo-product-header {
        display: none;
    }
    
    .demo-product-content {
        display: block !important;
        max-height: none !important;
        overflow: visible !important;
        padding-bottom: 1rem !important;
    }
}

/* Mobile specific styles for demo dropdown */
@media (max-width: 768px) {
    .demo-product-header {
        display: flex !important;
        padding: 0.75rem;
        margin-bottom: 0.75rem;
    }
    
    .demo-product-header h3 {
        font-size: 1.1rem;
    }
    
    .demo-toggle-icon {
        font-size: 1.1rem;
    }
    
    .demo-product-content {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, padding 0.3s ease;
        padding-bottom: 0;
    }
    
    .demo-product-content.expanded {
        max-height: 800px;
        padding-bottom: 1rem;
    }
    
    .demo-product-header.expanded .demo-toggle-icon {
        transform: rotate(180deg);
    }
}

/* Mobile responsiveness for payment modal */
@media (max-width: 480px) {
    .payment-modal {
        width: 95%;
        max-width: none;
    }
    
    .plan-price {
        font-size: 2rem;
    }
    
    .payment-actions {
        gap: 0.75rem;
    }
    
    .premium-notice {
        padding: 0.75rem;
        margin: 0.75rem 0;
    }
    
    .premium-badge {
        font-size: 1rem;
    }
    
    .premium-notice p {
        font-size: 0.85rem;
    }
    
    .demo-product-header {
        padding: 0.625rem;
    }
    
    .demo-product-header h3 {
        font-size: 1rem;
    }
}

