/* ========================================
   Font Import
   ======================================== */
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

/* ========================================
   CSS Variables & Design Tokens
   ======================================== */
:root {
    /* Colors */
    --color-primary: #2b2e8c;
    --color-primary-light: #384b72;
    --color-primary-gradient-start: #a9d5f3;
    --color-primary-gradient-end: #384b72;
    
    --color-dark: #231f20;
    --color-dark-light: #2e4157;
    --color-dark-card: #304255;
    
    --color-white: #ffffff;
    --color-text-light: #727279;
    --color-text-muted: rgba(255, 255, 255, 0.7);
    --color-border: rgba(255, 255, 255, 0.2);
    
    --color-success: #00A651;
    --color-danger: #E53935;
    
    --color-bg-dark: linear-gradient(360deg, #231f20 0%, #231f20 12%, #2e4157 100%);
    --color-bg-card: rgba(48, 66, 85, 0.5);
    
    /* Typography */
    --font-primary: 'Inter', sans-serif;
    --font-heading: 'Poppins', sans-serif;
    
    --font-size-xs: 12px;
    --font-size-sm: 14px;
    --font-size-base: 16px;
    --font-size-lg: 18px;
    --font-size-xl: 20px;
    --font-size-2xl: 24px;
    --font-size-3xl: 32px;
    --font-size-4xl: 39px;
    --font-size-5xl: 48px;
    --font-size-hero: 62px;
    
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    
    /* Spacing */
    --spacing-xs: 4px;
    --spacing-sm: 8px;
    --spacing-md: 12px;
    --spacing-lg: 16px;
    --spacing-xl: 24px;
    --spacing-2xl: 32px;
    --spacing-3xl: 40px;
    --spacing-4xl: 48px;
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-full: 100px;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.2);
    
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 350ms ease;
    
    /* Container */
    --container-max-width: 1200px;
    --container-padding: 40px;
}

/* ========================================
   Utility Classes
   ======================================== */
.desktop-only {
    display: block;
}

.mobile-only {
    display: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
    outline: none;
}

a {
    color: inherit;
    text-decoration: none;
}

/* ========================================
   Utilities
   ======================================== */

/* 
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.hidden {
    display: none;
} */

/* ========================================
   Breadcrumb Navigation
   ======================================== */
.breadcrumb-nav {
    background-color: var(--color-white);
    padding: var(--spacing-sm) 0;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    display:none!important;
}
.breadcrumb-hold {
    margin-top: 108px;
}

.breadcrumb-item {
    font-size: var(--font-size-base);
    color: var(--color-dark);
    transition: color var(--transition-fast);
}

.breadcrumb-item:hover {
    color: var(--color-primary);
}

.breadcrumb-item.active {
    font-weight: var(--font-weight-medium);
}

.breadcrumb-separator {
    display: flex;
    align-items: center;
    color: var(--color-text-light);
}

/* ========================================
   Hero Section
   ======================================== */
.hero-section {
    /* background: linear-gradient(360deg, #231F20 0%, #231F20 12%, #2E4157 100%); */
    background: linear-gradient(360deg, #2B2E8B 0%, #17105D 100%);

    padding: 50px 0;
    overflow: visible;
}

.hero-section .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    overflow: visible;
}

.powered-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    background: linear-gradient(90deg, #F7CF67 0%, #C19012 101.75%);
    color:#000;
    border-radius: 100px;
    height: 40px;
}

.powered-icon {
    width: 25px;
    height: 25px;
    flex-shrink: 0;
}

.powered-badge p {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: -0.16px;
    color: #000;
    margin: 0;
    text-transform: uppercase;
}

.hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: 48px;
    font-weight: 600;
    line-height: 62px;
    text-align: center;
    letter-spacing: -1.44px;
    color: #FFFFFF;
    max-width: 1216px;
    margin: 0;
}

.hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: -0.16px;
    text-align: center;
    color: #FFFFFF;
    max-width: 1216px;
    margin: 0;
}

/* Search Bar */
.search-wrapper {
    width: 100%;
    max-width: 514px;
    position: relative;
    z-index: 90;
}

/* Desktop Search Bar */
.search-bar-desktop {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background-color: #FFFFFF;
    border-radius: 8px;
    height: 48px;
    position: relative;
    overflow: visible;
}

.search-icon {
    width: 24px;
    height: 24px;
    color: #8B8C92;
    flex-shrink: 0;
}

.search-input {
    flex: 1;
    border: none;
    outline: none;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 16px;
    color: #727279;
    background: transparent;
}

.search-input::placeholder {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #727279;
}

/* Mobile Search Bar */
.search-bar-mobile {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    /* background-color: #304255; */
    background: #FFFFFF1A;
    border: 1px solid #FFFFFF4D;
    border-radius: 8px;
    height: 48px;
    width: 100%;
    cursor: pointer;
    transition: all 250ms ease;
}

.search-bar-mobile:hover {
    background-color: #3a5166;
}

.search-text {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #FFFFFF;
    text-align: left;
}

.search-icons {
    display: flex;
    align-items: center;
    gap: 8px;
}

.search-icon-img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.search-arrow {
    width: 24px;
    height: 24px;
    color: #FFFFFF;
    flex-shrink: 0;
}

/* Stock Pills */
.stock-pills {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    scroll-behavior: smooth;
}

.stock-pill {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 3px 4px;
    /* background-color: #304255; */
    background: #FFFFFF1A;

    /* border: 1px solid rgba(255, 255, 255, 0.2); */
    border: 1px solid #FFFFFF4D;
    border-radius: 100px;
    transition: all 250ms ease;
    height: 28px;
    cursor: pointer;
}

.stock-pill:hover {
    background-color: rgba(48, 66, 85, 0.8);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
}

.stock-logo {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    object-fit: cover;
}

.stock-logo-avatar {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 600;
    flex-shrink: 0;
    text-transform: uppercase;
}

.stock-pill span {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
    letter-spacing: -0.16px;
    color: #FFFFFF;
}

.stock-pill .right-arrow {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
}

/* Hero CTA Buttons - Desktop */
.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

/* Hero CTA Buttons - Mobile */
.hero-cta-mobile {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    width: 100%;
    max-width: 100%;
}

.cta-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
    /* background-color: rgba(48, 66, 85, 0.5); */
    background: #FFFFFF1A;
border: 1px solid #FFFFFF4D;
   ;
    border-radius: 20px;
    cursor: pointer;
    transition: all 250ms ease;
    min-height: 140px;
    position: relative;
    overflow: hidden;
}

.cta-card:hover {
    background-color: #4a6678;
    transform: translateY(-2px);
}

.cta-content {
    display: flex;
    flex-direction: row;
    gap: 8px;
    z-index: 1;
}

.cta-title {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 22px;
    color: #FFFFFF;
    text-align: left;
}

.cta-arrow {
    width: 20px;
    height: 20px;
    color: #FFFFFF;
    align-self: flex-start;
}

.cta-icon {
    width: 64px;
    height: 64px;
    position: absolute;
    bottom: 12px;
    right: 12px;
    object-fit: contain;
}

/* .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 0 12px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 20px;
    letter-spacing: -0.16px;
    border-radius: 8px;
    transition: all 250ms ease;
    height: 48px;
    cursor: pointer;
}

/* Login Button Styling */

button.btn.btn-outline {
    border: 1px solid #fff;
}
.login-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 16px;
    background-color: #FFFFFF;
    border: 1px solid #E0E0E0;
    border-radius: 24px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
    color: #1A1A1A;
    text-decoration: none;
    transition: all 250ms ease;
    height: 40px;
    white-space: nowrap;
}

.login-btn:hover {
    background-color: #F5F5F5;
    border-color: #D0D0D0;
}

.login-btn figure {
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
}

.login-btn img {
    width: 24px;
    height: 24px;
    object-fit: contain;
} */

.btn-outline {
    background-color: transparent;
    border: 1px solid #FFFFFF;
    color: #FFFFFF;
    min-width: 163px;
}

.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.btn-primary {
    background-color: #fff;
    border: none;
    color: #2B2E8C;
font-weight:600;
    min-width: 237px;
}

.btn-primary:hover {
    background-color: #3a3fa8;
}

.btn-cta {
    background-color: var(--color-primary);
    color: var(--color-white);
    width: 251px;
}

.btn-premium {
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: var(--spacing-md) var(--spacing-2xl);
}

/* ========================================
   Market Section
   ======================================== */
.market-section {
    background-color: #f8f9fa;
    padding: var(--spacing-3xl) 0;
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 32px;
}

.section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    font-weight: 600;
    line-height: 44px;
    letter-spacing: -1.08px;
    color: #2B2E8C;
    margin-bottom: 12px;
}

.section-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 18px;
    letter-spacing: -0.14px;
    color: #727279;
    /* max-width: 800px; */
    margin: 0 auto;
}

/* Market Tabs */
.market-tabs {
    display: flex;
    gap: 12px;
    margin-bottom: 32px;
    overflow-x: auto;
    padding-bottom: 8px;
    scrollbar-width: none;
}

.market-tabs::-webkit-scrollbar {
    display: none;
}

.market-tab {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    background-color: #FFFFFF;
    border: 1px solid #E0E0E0;
    border-radius: 100px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 18px;
    letter-spacing: -0.14px;
    color: #1A1A1A;
    transition: all 250ms ease;
    white-space: nowrap;
    cursor: pointer;
    height: 38px;
}

.market-tab:hover {
    background-color: #F5F5F5;
    border-color: #D0D0D0;
}

.market-tab.active {
    /* background-color: #2B2E8C; */
    border-color: #2B2E8C;
    color: #000
}

.market-tab.view-all {
    margin-left: auto;
    padding: 10px 14px;
}

.tab-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.tab-icon-left {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* Market Table */
.market-table-wrapper {
    position: relative;
    background-color: #FFFFFF;
    border: 1px solid #E0E0E0;
    border-radius: 12px;
    overflow: hidden;
}

.market-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

.market-table thead {
    background-color: #F8F9FA;
}

.market-table th {
    padding: 16px 20px;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    line-height: 16px;
    letter-spacing: -0.12px;
    color: #727279;
    text-align: center;
    text-transform: capitalize;
    border-bottom: 1px solid #E0E0E0;
}

.market-table th.text-left {
    text-align: left;
}

.market-table td {
    padding: 20px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
    letter-spacing: -0.14px;
    color: #1A1A1A;
    text-align: center;
    border-bottom: 1px solid #F0F0F0;
}

.market-table tbody tr:last-child td {
    border-bottom: none;
}

.company-cell {
    display: flex;
    align-items: center;
    gap: 12px;
}

.company-logo {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.company-logo-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    flex-shrink: 0;
    text-transform: uppercase;
}

.company-info {
    text-align: left;
}

.company-name {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 18px;
    letter-spacing: -0.14px;
    color: #1A1A1A;
    margin-bottom: 2px;
}

.company-code {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
    letter-spacing: -0.12px;
    color: #727279;
}

.mo-advice {
    width: 70px;
    height: auto;
}

.price {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 18px;
    letter-spacing: -0.14px;
    color: #1A1A1A;
}

.change.positive {
    color: #00A651;
    font-weight: 600;
}

.change.negative {
    color: #E53935;
    font-weight: 600;
}

.change-percent.positive {
    color: #00A651;
    font-weight: 600;
}

.change-percent.negative {
    color: #E53935;
    font-weight: 600;
}

.volume {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
    letter-spacing: -0.14px;
    color: #727279;
}

/* Intraday Chart */
.intraday-chart {
    width: 80px;
    height: 32px;
    display: block;
    margin: 0 auto;
    object-fit: contain;
}

/* Stock Score */
.stock-score {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 18px;
    letter-spacing: -0.14px;
    color: #1A1A1A;
}

.stock-score.locked {
    opacity: 0.4;
}

.stock-score.blurred {
    filter: blur(4px);
    -webkit-filter: blur(4px);
    user-select: none;
}

/* Potential Upside */
.potential-upside {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 18px;
    letter-spacing: -0.14px;
}

.potential-upside.positive {
    color: #00A651;
}

.potential-upside.negative {
    color: #E53935;
}

.potential-upside.locked {
    opacity: 0.4;
}

.potential-upside.blurred {
    filter: blur(4px);
    -webkit-filter: blur(4px);
    user-select: none;
}

/* Skeleton Loading Styles */
.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s ease-in-out infinite;
    border-radius: 4px;
}

@keyframes skeleton-loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

.skeleton-row {
    opacity: 0.7;
}

.skeleton-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    flex-shrink: 0;
}

.skeleton-text {
    display: inline-block;
    border-radius: 4px;
}

.skeleton-graph {
    width: 102px;
    height: 24px;
    display: inline-block;
    border-radius: 4px;
}

@media (max-width: 480px) {
    .skeleton-graph {
        width: 60px;
    }
}

/* Lock Icon in Table */
.lock-small {
    width: 20px;
    height: 20px;
    display: block;
    margin: 0 auto;
}

/* Premium Overlay */
.premium-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 280px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 20%, rgba(255, 255, 255, 0.98) 50%, #FFFFFF 70%);
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-direction: column;
    padding-bottom: 40px;
    pointer-events: none;
}

.premium-overlay > * {
    pointer-events: auto;
}

.premium-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.lock-icon {
    width: 48px;
    height: 48px;
}

.premium-title {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 20px;
    letter-spacing: -0.16px;
    color: #1A1A1A;
    margin: 0;
}

.btn-premium {
    background-color: #2B2E8C;
    border: none;
    border-radius: 8px;
    padding: 12px 24px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 18px;
    letter-spacing: -0.14px;
    color: #FFFFFF;
    cursor: pointer;
    transition: all 250ms ease;
    height: 42px;
}

.btn-premium:hover {
    background-color: #3a3fa8;
}

/* Market Section Responsive */
@media (max-width: 1024px) {
    .section-title {
        font-size: 32px;
        line-height: 40px;
        letter-spacing: -0.96px;
    }
    
    .section-subtitle {
        font-size: 13px;
        line-height: 17px;
    }
    
    .market-tabs {
        overflow-x: scroll;
    }
}

@media (max-width: 768px) {
    .market-section {
        padding: 20px 0;
    }
    
    .section-header {
        margin-bottom: 24px;
    }
    
    .section-title {
        font-size: 24px;
        line-height: 32px;
        letter-spacing: -0.72px;
        margin-bottom: 8px;
    }
    
    .section-subtitle {
        font-size: 12px;
        line-height: 16px;
        letter-spacing: -0.12px;
    }
    
    .market-tabs {
        gap: 8px;
        margin-bottom: 24px;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    
    .market-tabs::-webkit-scrollbar {
        display: none;
    }
    
    .market-tab {
        padding: 8px 12px;
        font-size: 12px;
        line-height: 16px;
        height: 32px;
        flex-shrink: 0;
    }
    
    .tab-icon,
    .tab-icon-left {
        width: 16px;
        height: 16px;
    }
    
    .market-table-wrapper {
        overflow-x: auto;
    }
    
    .market-table {
        min-width: 700px;
    }
    
    .market-table th {
        padding: 12px 16px;
        font-size: 11px;
    }
    
    .market-table td {
        padding: 16px;
        font-size: 13px;
    }
    
    .company-logo {
        width: 32px;
        height: 32px;
    }
    
    .company-logo-avatar {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
    
    .company-name {
        font-size: 13px;
    }
    
    .company-code {
        font-size: 11px;
    }
    
    .mo-advice {
        width: 60px;
    }
    
    .price,
    .change,
    .change-percent,
    .volume {
        font-size: 13px;
    }
    
    .premium-overlay {
        padding: 40px 16px 24px;
    }
    
    .lock-icon {
        width: 40px;
        height: 40px;
    }
    
    .premium-title {
        font-size: 14px;
    }
    
    .btn-premium {
        font-size: 13px;
        padding: 10px 20px;
        height: 38px;
    }
}

@media (max-width: 480px) {
    .faq-section{padding: 0 20px 32px;}
    .trial-badge span{font-weight:400!important;}
    .section-title {
        font-size: 24px!important;
        line-height: 28px!important         ;
        letter-spacing: -0.6px;
    }
    
    .section-subtitle {
        font-size: 14px;
        line-height: 18px;
    }
    
    .market-tab {
        padding: 6px 10px;
        font-size: 11px;
        height: 28px;
    }
    
    .tab-icon,
    .tab-icon-left {
        width: 14px;
        height: 14px;
    }
}

/* Text Alignment Classes */
.text-left {
    text-align: left;
}

/* .text-center {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to top, rgba(255, 255, 255, 0.98), transparent);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: var(--spacing-2xl);
} */

.premium-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-lg);
}

.lock-icon {
    width: 36px;
    height: 36px;
}

.premium-title {
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-semibold);
    color: var(--color-dark);
}

/* ========================================
   Screeners Section
   ======================================== */
.screeners-section {
    background-color: #f8f9fa;
    padding: var(--spacing-3xl) 0;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
}

.screener-tabs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 32px;
    overflow-x: auto;
    padding-bottom: 8px;
    scrollbar-width: none;
}

.screener-tabs::-webkit-scrollbar {
    display: none;
}

.screener-tab {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background-color: #FFFFFF;
    border: 1px solid #E0E0E0;
    border-radius: 100px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 18px;
    letter-spacing: -0.14px;
    color: #1A1A1A;
    transition: all 250ms ease;
    white-space: nowrap;
    cursor: pointer;
    height: 40px;
}

.screener-tab:hover {
    background-color: #F5F5F5;
    border-color: #D0D0D0;
}

.screener-tab.active {
    background-color: transparent;
    border-color: #2B2E8C;
    color: #1A1A1A;
}

.screener-tab.view-all {
    padding: 10px 14px;
}

.screener-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* Screener Cards */
.screener-cards {
    display: grid!important;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.screener-card {
    background-color: #FFFFFF;
    border: 1px solid #F0F0F0;
    border-radius: 12px;
    padding: 24px 20px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 250ms ease;
    position: relative;
    min-height: 160px;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08)!important;
}

.screener-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* .screener-card-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 4px;
} */

.screener-card-title {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 20px;
    letter-spacing: -0.16px;
    color: #1A1A1A;
    text-align: center;
}

.screener-card-count {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
    letter-spacing: -0.14px;
    color: #727279;
    margin-bottom: 12px;
}

.screener-card-btn {
    position: relative;
    background: transparent;
    border: none;
    cursor: pointer;
    color: #2B2E8C;
    transition: all 250ms ease;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.screener-card:hover .screener-card-btn {
    color: #ffffff;
}
 

.screener-card-btn:hover {
    transform: translateX(4px);
}

.screener-card-btn svg {
    width: 24px;
    height: 24px;
}

/* ========================================
   CTA Section
   ======================================== */
.cta-section {
    /* background-color: var(--color-dark-card); */
    padding: var(--spacing-3xl) 0;
    /* background: linear-gradient(360deg, #231F20 0%, #231F20 12%, #2E4157 100%); */
    background: linear-gradient(360deg, #2B2E8B 0%, #17105D 100%);


}
.cta-left button.btn.btn-cta {
    background: #fff;
    color: #2B2E8C;
    font-weight: 600;
    height: 48px;
}

.cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3xl);
}

.cta-left {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xl);
}

.cta-title {
    font-family: var(--font-heading);
    font-size: var(--font-size-3xl);
    font-weight: var(--font-weight-semibold);
    color: var(--color-white);
}

.cta-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.cta-features li {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
    color: #ABB1BA;
}

.cta-features svg {
    flex-shrink: 0;
    margin-top: 2px;
}

/* Winning Calls */
.cta-right {
    /* background-color: rgba(0, 0, 0, 0.2); */
    /* padding: var(--spacing-xl); */
    border-radius: var(--radius-lg);
}
.trial-subtitle{padding-bottom:16px;}

.winning-title {
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-semibold);
    color: var(--color-white);
    margin-bottom: var(--spacing-lg);
}

.winning-cards {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.winning-card {
    /* background-color: rgba(255, 255, 255, 0.1); */
    /* background: #304255; */
    background: #FFFFFF1A;
padding:12px;
border: 1px solid #FFFFFF4D;
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.winning-info {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.winning-name {
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-medium);
    color: var(--color-white);
}

.winning-type {
    font-size: var(--font-size-xs);
    color: var(--color-text-muted);
}

.winning-gain {
    font-size: var(--font-size-2xl);
    font-weight: var(--font-weight-semibold);
}

.winning-gain.positive {
    color:#1EE47C;
;
}

/* ========================================
   Features Section
   ======================================== */
.features-section {
    background-color: #fafafa;
    padding: var(--spacing-3xl) 0;
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
}

.features-section .section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    font-weight: 600;
    line-height: 44px;
    letter-spacing: -1.08px;
    color: #2B2E8C;
}

.features-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.features-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.feature-card {
    background: linear-gradient(131.17deg, #EBF4F5 1.27%, #B5C6E0 85.05%);
    border: none;
    border-radius: 16px;
    padding: 32px 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    transition: all 250ms ease;
    min-height: 200px;
}
.greensubscribecta {
    color: #fff !important;
    background: #25972a;
    border: solid 1px #ddd;
    text-align: center;
    font-weight: 400!important;
    padding: 5px;
    font-size: 14px!important;
    border-radius: 8px;
    cursor: pointer;
    display: block;
}
ul.profile-drop-cnt{font-size:14px!important;}
.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.feature-icon {
    width: 64px;
    height: 64px;
    display: flex;
    margin: 0 auto;
}

.feature-text {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 22px;
    letter-spacing: -0.16px;
    color: #1A1A1A;
    text-align: center;
    margin-top:15px;
}

/* ========================================
   Trial Section
   ======================================== */
.trial-section {
    background-color: #F8F9FA;
    padding: 30px 0;
    text-align: center;
}

.trial-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
        background: linear-gradient(90deg, #F7CF67 0%, #C19012 101.75%);
    border-radius: 100px;
    margin-bottom: 24px;
}

.trial-badge span {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 18px;
    letter-spacing: 0.5px;
    color: #1A1A1A;
    text-transform: uppercase;
}

.trial-title {
    font-family: 'Poppins', sans-serif;
    font-size: 40px;
    font-weight: 600;
    line-height: 52px;
    letter-spacing: -1.2px;
    color: #2B2E8C;
    margin-bottom: 16px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.trial-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: -0.16px;
    color: #727279;
    margin-bottom: 0px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.trial-form-container {
    background-color: #2B2E8C;
    border-radius: 16px;
    padding: 32px 40px;
    max-width: 600px;
    margin: 0 auto;
}

.trial-form-label {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
    color: #FFFFFF;
    margin-bottom: 20px;
}

.trial-highlight {
    color: #FFA726;
    font-weight: 600;
}

.trial-form {
    display: flex;
    gap: 12px;
    align-items: center;
}

.trial-input-wrapper {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    background-color: #FFFFFF;
    border-radius: 8px;
    padding: 12px 16px;
    height: 48px;
}

.trial-phone-icon {
    width: 20px;
    height: 20px;
    color: #727279;
    flex-shrink: 0;
}

.trial-input {
    flex: 1;
    border: none;
    outline: none;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
    color: #1A1A1A;
    background: transparent;
}

.trial-input::placeholder {
    color: #999999;
}

.btn-get-otp {
    background-color: #2B2E8C;
    border: 2px solid #FFFFFF;
    border-radius: 8px;
    padding: 12px 24px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 20px;
    color: #FFFFFF;
    cursor: pointer;
    transition: all 250ms ease;
    height: 48px;
    white-space: nowrap;
}

.btn-get-otp:hover {
    background-color: #3a3fa8;
    /* transform: translateY(-2px); */
}

/* ========================================
   FAQ Section
   ========================================== */
.faq-section {
    background-color: var(--color-white);
    padding: var(--spacing-3xl) 0;
}

.faq-title {
    font-family: var(--font-heading);
    font-size: var(--font-size-3xl);
    font-weight: var(--font-weight-semibold);
    color: var(--color-dark);
    text-align: center;
    margin-bottom: var(--spacing-3xl);
}

.faq-list {
    max-width: 960px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq-item {
    border-bottom: 1px solid #e9ecef;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-xl) var(--spacing-xl);
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-medium);
    color: var(--color-dark);
    text-align: left;
    transition: all var(--transition-fast);
}

.faq-question:hover {
    background-color: #f8f9fa;
}

.faq-icon {
    flex-shrink: 0;
    color: var(--color-text-light);
    transition: transform var(--transition-base);
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-slow);
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 var(--spacing-xl);
    font-size: var(--font-size-base);
    color: var(--color-text-light);
    line-height: 1.6;
}

.faq-cta {
    text-align: center;
    margin-top: var(--spacing-3xl);
}
.faq-cta {
    display: flex;
    justify-content: center;
    align-items: center;
}

 .screener-card:hover {
    /* background: radial-gradient(circle at top, #1d4ed8 0, #0b1a4a 75%); */
    background: linear-gradient(180deg, #2B2E8C -0.42%, #000026 100%);
    color: #ffffff !important;
    /* box-shadow: 0 18px 30px rgba(30, 64, 175, 0.5) !important; */
    box-shadow: 0px 20px 50px 1.4px #3131310D;
}

.screener-card:hover .screener-card-title,
.screener-card:hover .screener-card-count {
    color: #ffffff !important;
}

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 1024px) {
    :root {
        --container-padding: 24px;
    }
    
    .hero-section {
        padding: 36px 0 44px;
    }
    
    .hero-title {
        font-size: 40px;
        line-height: 52px;
    }
    
    .hero-subtitle {
        font-size: 15px;
    }
    
    .section-title {
        font-size: var(--font-size-3xl);
    }
    
    .search-wrapper {
        max-width: 400px;
    }
    
    .btn {
        min-width: 140px;
    }
    
    .cta-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    }
}

@media (max-width: 768px) {
    .winning-gain{font-size:18px;}
    .winning-title{
        font-size: 14px;
    font-weight: 400;
    text-align: center;
    line-height: 18px;
    }
    .cta-left button.btn.btn-cta{font-weight:500;font-size:15px;}
    .card-circle {
    width: 82px;
    height: 89.4px;
    border-radius: 999px;
    /* background: radial-gradient(circle at top left, rgba(55, 65, 81, 0.6), rgba(15, 23, 42, 0.8)); */
    background: radial-gradient(71.92% 69.54% at 66.54% 69.54%, #ABABAB 0%, #F9F9F9 100%) /* warning: gradient uses a rotation that is not supported by CSS and may not behave as expected */;
    opacity: 10%;
    right: -15px;
    top: 41px;
    position: absolute;
}
    :root {
        --container-padding: 16px;
        --font-size-5xl: 32px;
        --font-size-4xl: 28px;
        --font-size-3xl: 24px;
    }
    .mobileMenu .navbar-nav{color:#000;font-size: 14px;padding:unset;}
    ul.mobile-menu .profile-desc{margin-left:unset;}
    .mobileMenu{width:340px;}
    /* Toggle visibility */
    .desktop-only {
        display: none;
    }
    
    .mobile-only {
        display: flex;
    }
    
    /* Force flex layout for screener cards on mobile */
    .screener-cards {
        display: flex !important;
        grid-template-columns: none !important;
    }
    
    .hero-section {
        padding: 24px 0 32px;
    }
    
    .hero-section .container {
        gap: 16px;
    }
    
    .powered-badge {
        padding: 8px 12px;
        height: auto;
        gap: 4px;
    }
    
    .powered-icon {
        width: 20px;
        height: 20px;
    }
    
    .powered-badge p {
        font-size: 12px;
        line-height: 16px;
    }
    
    .hero-title {
        font-size: 28px;
        line-height: 36px;
        letter-spacing: -0.84px;
        padding: 0 8px;
    }
    
    .hero-subtitle {
        font-size: 14px;
        line-height: 18px;
        padding: 0 8px;
    }
    
    .search-wrapper {
        max-width: 100%;
        width: 100%;
    }
    
    .search-bar-mobile {
        padding: 12px 16px;
        height: 48px;
    }
    
    .search-text {
        font-size: 16px;
    }
    
    .search-icon-img,
    .search-arrow {
        width: 24px;
        height: 24px;
    }
    
    .stock-pills {
        gap: 8px;
        width: 100%;
    }
    
    .stock-pill {
        gap: 4px;
        padding: 3px 6px;
        height: 26px;
    }
    
    .stock-logo {
        width: 20px;
        height: 20px;
    }
    
    .stock-logo-avatar {
        width: 20px;
        height: 20px;
        font-size: 10px;
    }
    
    .stock-pill span {
        font-size: 12px;
    }
    
    .stock-pill .right-arrow {
        width: 12px;
        height: 12px;
    }
    
    .hero-cta-mobile {
        display: grid !important;
        gap: 12px;
        width: 100%;
        max-width: 100%;
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-card {
        min-height: 130px;
        padding: 16px;
        border-radius: 16px;
        width:100%;
    }
    
    .cta-title {
        font-size: 16px;
        line-height: 22px;
    }
    
    .cta-arrow {
        width: 20px;
        height: 20px;
    }
    
    .cta-icon {
        width: 48px;
        height: 48px;
    }
    
    .btn {
        min-width: unset;
        width: 100%;
        font-size: 15px;
        height: 44px;
        padding: 0 16px;
    }
    
    .market-tabs,
    .screener-tabs {
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding-bottom: 8px;
    }
    
    .market-tabs::-webkit-scrollbar,
    .screener-tabs::-webkit-scrollbar {
        display: none;
    }
    
    .screener-tab {
        flex-shrink: 0;
        white-space: nowrap;
    }
    
    .market-table-wrapper {
        overflow-x: auto;
    }
    
    .market-table {
        min-width: 800px;
    }
    
    .screener-cards {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 16px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding-bottom: 8px;
    }
    
    .screener-card:hover {
        background: radial-gradient(circle at top, #1d4ed8 0, #0b1a4a 75%);
        color: #ffffff !important;
        box-shadow: 0 18px 30px rgba(30, 64, 175, 0.5) !important;
    }
    
    .screener-cards::-webkit-scrollbar {
        display: none;
    }
    
    .screener-card {
        min-width: 200px;
        max-width: 200px;
        flex-shrink: 0;
        padding: 20px 16px 16px;
    }
    
    .screener-card-title {
        font-size: 15px;
        line-height: 19px;
    }
    
    .screener-card-count {
        font-size: 13px;
        line-height: 17px;
    }
    
    .features-grid {
        display: flex;
        flex-direction: column;
        gap: 12px;
        overflow: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        overscroll-behavior-x: contain;
        scroll-behavior: auto;
         overflow-x: scroll;
        overflow-y: visible;
        scroll-snap-type: x mandatory;
    }
    
    .features-row {
        display: flex;
        gap: 12px;  
    }
    
    .features-row::-webkit-scrollbar {
        display: none;
    }
    
    .feature-card {
        min-width: calc(50% - 6px);
        max-width: calc(50% - 6px);
        flex-shrink: 0;
        scroll-snap-align: start;
        padding: 20px 12px;
        min-height: 140px;
        pointer-events: auto;
    }
    
    .feature-icon {
        width: 48px;
        height: 48px;
    }
    
    .feature-text {
        font-size: 13px;
        line-height: 17px;
    }
    
    .features-pagination {
        display: flex;
        justify-content: center;
        gap: 8px;
        margin-top: 16px;
    }
    
    .pagination-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background-color: #D0D0D0;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .pagination-dot.active {
        width: 24px;
        border-radius: 4px;
        background-color: #2B2E8C;
    }
    
    .trial-section {
        padding: 40px 0;
    }
    
    .trial-title {
        font-size: 28px;
        line-height: 36px;
        letter-spacing: -0.84px;
        padding: 0 8px;
    }
    
    .trial-subtitle {
        font-size: 14px;
        line-height: 20px;
        padding: 0 8px;
        margin-bottom:15px;
    }
    
    .trial-form-container {
        padding: 20px;
        border-radius: 16px;
        background-color: #2B2E8C;
    }
    
    .trial-form-label {
        font-size: 15px;
        line-height: 20px;
        margin-bottom: 12px;
        text-align: center;
    }
    
    .trial-form {
        flex-direction: row;
        gap: 8px;
        width: 100%;
    }
    
    .trial-input-wrapper {
        flex: 1;
        height: 44px;
        min-width: 0;
        padding: 12px 0px;
        gap: 4px;
    }
    
    .trial-input {
        font-size: 13px;
    }
    
    .btn-get-otp {
        height: 44px;
        padding: 12px 16px;
        font-size: 13px;
        flex-shrink: 0;
        white-space: nowrap;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .breadcrumb {
        font-size: var(--font-size-sm);
    }
    
    .hero-section {
        padding: 20px 0 28px;
    }
    
    .hero-title {
        font-size: 30px;
        line-height: 32px;
        letter-spacing: -0.72px;
    }
    
    .hero-subtitle {
        font-size: 14px;
        line-height: 18px;
    }
    
    .stock-pills {
        justify-content: center;
        overflow-x: auto;
        flex-wrap: wrap;
        width: 100%;
        padding-bottom: 4px;
        -webkit-overflow-scrolling: touch;
    }
    
    .stock-pills::-webkit-scrollbar {
        height: 4px;
    }
    
    .stock-pills::-webkit-scrollbar-thumb {
        background: rgba(255, 255, 255, 0.3);
        border-radius: 2px;
    }
    
    .stock-pill {
        flex-shrink: 0;
    }
    
    .cta-card {
        min-height: 120px;
        padding: 14px;
        border-radius: 14px;
    }
    
    .cta-title {
        font-size: 14px;
        line-height: 20px;
    }

    .scroll-animate .cta-grid .cta-title {
        font-size: 24px !important;
        line-height:36px;
        text-align: center;
    }
    
    
    .cta-arrow {
        width: 18px;
        height: 18px;
    }
    
    .cta-icon {
        width: 44px;
        height: 44px;
    }
    
    .screener-cards {
        gap: 12px;
        padding-bottom: 8px;
    }
    
    .screener-card {
        min-width: 180px;
        max-width: 180px;
        padding: 18px 14px 14px;
        min-height: 150px;
    }
    
    .screener-card-title {
        font-size: 14px;
        line-height: 18px;
    }
    
    .screener-card-count {
        font-size: 12px;
        line-height: 16px;
        margin-bottom: 8px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
}

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

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide-in {
    animation: slideIn 0.5s ease-out;
}

/* Scroll Animations */
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-animate.visible {
    opacity: 1;
    transform: translateY(0);
}
