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

:root {
    --primary-color: #0D3E6F;
    --primary-dark: #082B4D;
    --primary-light: #1A5A96;
    --secondary-color: #FFC107;
    --text-dark: #1A1A1A;
    --text-light: #5A5A5A;
    --text-muted: #8A8A8A;
    --bg-light: #F8F9FA;
    --bg-white: #FFFFFF;
    --border-color: #E0E0E0;
    --success-color: #28A745;
    --error-color: #DC3545;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    max-width: 100vw;
}

body {
    font-family: 'Raleway', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    /* overflow-x: hidden; */
    max-width: 100vw;
}
body:has(.navbar) {
  padding-top: 102px;
}

.container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 24px;
}

.page-template-page-bsd-landing a {
    text-decoration: none;
    color: inherit;
}


.ticker_hover_ef{
	color: #0D3E6F !important;
   font-weight : 600 !important;
}
/* .ticker_hover_ef:hover{
	color : #336 !important;
} */

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

/* ============================================
   Typography
   ============================================ */
.page-template-page-bsd-landing h1, .page-template-page-bsd-landing h2, .page-template-page-bsd-landing h3, .page-template-page-bsd-landing h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 13px;
}

h2 {
    font-size: 1.9rem;
    font-weight: 700;
}

h3 {
    font-size: 1rem;
    font-weight: 600;
}

h4 {
    font-size: 1rem;
    font-weight: 600;
}

p {
    margin-bottom: 13px;
}

/* ============================================
   Buttons
   ============================================ */
.btn {
    display: inline-block;
    padding: 10px 24px;
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    font-weight: 600 !important;
    text-align: center;
    border-radius: 8px;
    cursor: pointer;
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 700px;
    height: 300px;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--bg-white) !important;
}

body .btn-secondary {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

/* ============================================
   Navigation
   ============================================ */
.navbar {
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    padding: 16px 0;
    position: fixed;  
    top: 0;
    left: 0;      
    right: 0;     
    width: 100%;  
    z-index: 1000;
}

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

.logo img {
    height: 70px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.navbar .nav-link a{
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
    letter-spacing: 0.5px;
    position: relative;
    text-transform: uppercase;
    text-decoration: none;
}
.nav-link a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

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

.nav-link.btn-trial a{
    background-color: #0D3E6F;
    color: var(--bg-white);
    padding: 10px 24px;
    border-radius: 6px;
}

.nav-link.btn-trial a::after {
    display: none;
}

.nav-link.btn-register a{
    color: #0D3E6F;
}

/* mobile menu  */

.mobile-menu-toggle {
    display: none;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    position: relative;
    z-index: 1001;
    -webkit-tap-highlight-color: transparent;
}

.navbar .mobile-menu-toggle:focus {
    outline: none;
}

.navbar .mobile-menu-toggle i {
    font-size: 24px;
    color: var(--primary-color);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}
.navbar .mobile-menu-toggle i:hover{
    background-color: white;
}

.navbar .hamburger-icon {
    opacity: 1;
}

.navbar .close-icon {
    opacity: 0;
}

.navbar .mobile-menu-toggle.active .hamburger-icon {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(90deg);
    background-color: transparent;
}

.mobile-menu-toggle.active .close-icon {
    opacity: 1;
    transform: translate(-50%, -50%) rotate(0deg);
}


/* Responsive Styles */
@media (max-width: 968px) {
    .navbar .mobile-menu-toggle {
        display: flex;
        background-color: #ffffff;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: 0;
        width: 280px;
        height: 100vh;
        background-color: var(--bg-white);
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 30px 30px;
        gap: 0;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
        transition: transform 0.4s ease;
        overflow-y: auto;
        transform: translateX(100%); /* THIS IS THE KEY FIX */
    }

    .nav-menu.active {
        transform: translateX(0); /* Slide in when active */
    }

    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-link {
        display: block;
        padding: 16px 0;
        font-size: 14px;
        width: 100%;
    }

    .nav-link::after {
        display: none;
    }

    .nav-link.btn-trial,
    .nav-link.btn-register {
        margin-top: 10px;
        text-align: center;
        padding: 14px 24px;
        border-radius: 6px;
    }

    .nav-link.btn-register {
        background-color: var(--bg-light);
        color: var(--primary-color);
    }
}

@media (max-width: 640px) {
    .logo img {
        height: 50px;
    }

    .nav-menu {
        width: 100%;
    }
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    background: 
        linear-gradient(135deg, rgb(255, 255, 255) 100%, rgba(255, 255, 255, 0.85) 100%),
        url('https://buysidedigest.com/bsd-homepage-mockup/header.jpeg') bottom/contain no-repeat;
    color: var(--bg-white);
    padding: 70px 0 20px 0;
    text-align: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 10;
    left: 0;
    width: 100%;
    height: 90%;
    background: url('https://buysidedigest.com/bsd-homepage-mockup/header.jpeg') bottom/contain no-repeat;
    opacity: 0.9;
    z-index: 0;
}

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

.hero-title {
    font-size: 3rem !important;
    font-weight: 800 !important;
    margin-bottom: 24px;
    line-height: 1.2;
}

.title-animated {
    display: block;
    background: linear-gradient(
        90deg,
        #0A2E4F 0%,
        #0D3E6F 15%,
        #1565C0 30%,
        #2196F3 45%,
        #64B5F6 50%,
        #2196F3 55%,
        #1565C0 70%,
        #0D3E6F 85%,
        #0A2E4F 100%
    );
    background-size: 200% auto;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 5s linear infinite;
}

@keyframes shimmer {
    0% {
        background-position: 200% center;
    }
    100% {
        background-position: -200% center;
    }
}

.title-static {
    display: block;
    color: var(--primary-color);
}

.hero-subtitle {
    color: var(--text-dark);
    font-size: 1rem;
    max-width: 700px;
    margin: auto;
    font-weight: 400;
    margin-bottom: 20px;
    opacity: 0.95;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.hero-cta .btn-primary {
    background-color: var(--bg-white);
    border: 1.8px solid var(--primary-color);
    color: var(--primary-color) !important;
}
.hero-cta .btn-primary:hover {
    background-color: var(--bg-light);
    color: var(--primary-dark);
}

.hero-trust {
    color: var(--text-light);
    font-size: 0.9rem;
    opacity: 0.85;
    font-style: italic;
}

/* ============================================
   Stats Marquee Ticker
   ============================================ */
.stats-marquee {
    background-color: #F5F5F5;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 12px 0;
    overflow: hidden;
    z-index: 7;
    margin-top: 20px;
    /* font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif; */
}

.marquee-container {
    padding-top: 2px;
    width: 100%;
    overflow: hidden;
}

.marquee-content {
    display: flex;
    animation: marquee 40s linear infinite;
    width: fit-content;
}

.marquee-content:hover {
    animation-play-state: paused;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.ticker-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 40px;
    white-space: nowrap;
    border-right: 1px solid var(--border-color);
    flex-shrink: 0;
}

.ticker-symbol {
    font-weight: 700 !important;
    font-size: 0.9rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 8px;
}

.ticker-symbol i {
    color: var(--primary-color);
    font-size: 0.85rem;
}

/* ============================================
   Stats Section
   ============================================ */
.stats-section {
    padding: 60px 0 0 0;
    background-color: var(--bg-white);
}

.stats-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.stats-intro p {
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1300px;
    margin: 0 auto;
}

.stat-card {
    text-align: center;
    padding: 28px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #0d3e6f0e 100%);
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
}

.stat-label {
    font-size: 1.3rem;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 12px;
    text-transform: capitalize;
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 12px;
}

.stat-description {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 400;
    line-height: 1.4;
    margin: 0;
    max-width: 90%;
}

.tracking-grid p {
    margin-bottom: 0 !important;
    font-size: 15px;
}

/* ============================================
   Platform Section
   ============================================ */
.platform-section {
    padding: 60px 0 0 0;
    background-color: var(--bg-white);
}

.section-title {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 13px;
    font-size: 1.9rem;
}

.section-subtitle {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    color: var(--text-light);
    font-size: 1rem;
}

.platform-grid {
    max-width: 1300px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 15px;
    margin-bottom: 40px;
}

.platform-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 24px 16px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 300px;

}

.platform-card:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.card-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 12px auto;
    transition: all 0.4s ease;
}

.platform-card:hover .card-icon {
    background: var(--bg-white);
}

.card-icon i {
    font-size: 1.3rem;
    color: var(--bg-white);
    transition: color 0.4s ease;
}

.platform-card:hover .card-icon i {
    color: var(--primary-color);
}

.platform-card h3 {
    font-size: 1.2rem;
    color: var(--primary-dark);
    transition: color 0.4s ease;
    margin: 4px 0 10px 0; 
}

.platform-card:hover h3 {
    color: var(--bg-white);
}

.platform-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    transition: color 0.4s ease;
    margin-bottom: 20px;
}

.platform-card:hover p {
    color: rgba(255, 255, 255, 0.9);
}

.card-link {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 600 !important;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.4s ease;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    margin-top: auto;       
}

.platform-card:hover .card-link {
    color: var(--bg-white);
    gap: 12px;
}

.card-link i {
    transition: transform 0.3s ease;
}

.platform-card:hover .card-link i {
    transform: translateX(4px);
}

.platform-footer {
    text-align: center;
    color: var(--text-muted);
    font-style: italic;
    padding-top: 40px;
    border-top: 1px solid var(--border-color);
}

/* ============================================
   Section Layout (Main + Sidebar)
   ============================================ */
.section-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 60px;
    align-items: start;
}

.main-content {
    min-width: 0;
}

.section-description {
    color: var(--text-light);
    margin-bottom: 40px;
    font-size: 1.05rem;
}

/* ============================================
   Database Section
   ============================================ */
.database-section {
    padding: 60px 0 0 0;
    background-color: var(--bg-white);
}

.database-section .section-title {
    text-align: left;
    color: var(--primary-color);
    font-size: 1.9rem;
}

.database-table {
    margin-bottom: 32px;
    overflow-x: auto;
    border-radius: 12px;
}

.database-table table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
}

.database-table thead {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--bg-white);
}

.database-table th {
    padding: 16px 12px;
    text-align: left;
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.database-table td {
    padding: 16px 12px;
    border: none;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.8rem;
}

.database-table tbody tr {
    transition: background-color 0.3s;
}

tbody tr:hover {
    background-color: rgba(13, 62, 111, 0.03);
}
.company-link{
    color: var(--primary-color) !important;
    font-weight: 600 !important;
}
/* ============================================
   13F Tracking Subsection - Flex Grid
   ============================================ */
.tracking-subsection {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 2px solid var(--border-color);
}

.tracking-header-row {
    margin-bottom: 30px;
}

.subsection-title {
    color: var(--primary-color);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.subsection-description {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0;
    line-height: 1.5;
    max-width: 700px;
}

.tracking-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tracking-card {
    background: var(--bg-white);
    border: 1.8px solid var(--border-color);
    border-radius: 12px;
    padding: 14px;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 0 0 calc(33.333% - 14px);
    text-decoration: none;
}

.tracking-card:hover {
    border-color: var(--primary-color);
}

.tracking-number {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 1px;
}

.tracking-card h4 {
    color: var(--text-dark);
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.tracking-card:hover h4 {
    color: var(--primary-color);
}

/* Responsive */
@media (max-width: 968px) {
    .tracking-grid {
        gap: 10px;
    }
    
    .tracking-card {
        flex: 0 0 calc(50% - 8px);
    }
}

@media (max-width: 640px) {
    .tracking-card {
        flex: 0 0 100%;
    }
}

/* ============================================
   Sidebar
   ============================================ */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: sticky;
    top: 100px;
}

.sidebar-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 16px;
    padding: 32px;
    border: 1px solid var(--border-color);
    position: relative;
}

.sidebar-card h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1rem;
}

.sidebar-list {
    margin-bottom: 24px;
}

.sidebar-list li {
    padding: 12px 0;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.5;
}

.sidebar-list i {
    color: var(--success-color);
    margin-top: 4px;
    flex-shrink: 0;
}

.email-subscription-form {
    margin-top: 24px;
    margin-bottom: 13px;
}

.email-input {
    width: 100%;
    padding: 14px 16px !important;
    font-family: 'Raleway', sans-serif !important;
    font-size: 0.9rem;
    border: 1px solid var(--border-color);
    border-radius: 8px !important;
    margin-bottom: 12px !important;
    background-color: var(--bg-white);
    color: var(--text-dark);
    transition: all 0.3s;
}

.email-input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.btn-subscribe {
    width: 100%;
    background-color: var(--secondary-color);
    color: var(--text-dark);
    border: none;
    padding: 14px 24px;
    font-family: 'Raleway', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
}

.subscription-note {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: 12px;
    margin-bottom: 0;
    font-style: italic;
}

.track-bsd-sidebar .sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.track-bsd-sidebar h3 {
    margin-bottom: 0;
}

.view-all-link {
    color: var(--primary-color);
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.view-all-link:hover {
    gap: 10px;
}

.view-all-link i {
    font-size: 0.75rem;
}

.investor-tags-container {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.investor-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 14px;
    background-color: var(--bg-white);
    color: var(--primary-color) !important;
    border: 1.5px solid var(--primary-color);
    border-radius: 50px;
    font-size: 0.8rem;
    text-decoration: none;
    white-space: nowrap;
    font-family: 'Raleway', sans-serif;
    cursor: pointer;
    transition: all 0.3s;
    line-height: 21px;
}
.hero-cta a.btn{ font-weight: 600;}
/* ============================================
   Pitches Section
   ============================================ */
.pitches-section {
    padding: 60px 0 0 0;
    background-color: var(--bg-white);
}

.pitches-section .section-header {
    margin-bottom: 40px;
}

.pitches-section .section-title {
    text-align: left;
    color: var(--primary-color);
    margin-bottom: 13px;
    font-size: 1.9rem;
}

.pitches-section .section-subtitle {
    text-align: left;
    margin: 0;
    max-width: 100%;
    color: var(--text-light);
    font-size: 1rem;
}

.content-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1.8px solid var(--border-color);
}

.content-header h3 {
    color: var(--primary-color);
    margin-bottom: 0;
    font-size: 1.2rem;
}

.view-all-pitches {
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.view-all-pitches:hover {
    gap: 12px;
    color: var(--primary-dark);
}

.view-all-pitches i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.view-all-pitches:hover i {
    transform: translateX(4px);
}

.badge {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-bull {
    background-color: rgba(40, 167, 69, 0.1);
    color: var(--success-color);
}

.badge-bear {
    background-color: rgba(220, 53, 69, 0.1);
    color: var(--error-color);
}

.badge-neutral {
    background-color: rgba(220, 53, 69, 0.1);
    color: var(--secondary-color);
}
.pitch-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.pitch-stat-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.pitch-stat-item:hover {
    border-color: var(--primary-color);
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--success-color), #28b35a);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-icon.bear {
    background: linear-gradient(135deg, var(--error-color), #e74c5c);
}

.stat-icon.neutral {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
}

.stat-icon i {
    color: white;
    font-size: 1rem;
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 4px;
}

.pitch-search-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 32px;
}

.pitch-search-card h3 {
    color: var(--primary-color);
    margin-bottom: 12px;
    font-size: 1rem;
}

.pitch-intro {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 24px;
}

.ticker-search-form {
    margin-top: 24px;
}

.search-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ticker-input {
    width: 100% !important;
    padding: 10px 18px !important;
    font-family: 'Raleway', sans-serif !important;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid var(--border-color) !important;
    border-radius: 8px !important;
    margin-bottom: 6px !important;
    background-color: var(--bg-white) !important;
    color: var(--text-dark) !important;
    transition: all 0.3s;
}

.ticker-input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.ticker-input::placeholder {
    color: var(--text-muted);
    font-weight: 400;
}

.btn-search {
    width: 100%;
    background-color: var(--secondary-color);
    color: var(--text-dark);
    border: none;
    padding: 10px 24px;
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-search:hover {
    background-color: #FFB300;
}

.search-suggestions {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid var(--border-color);
}

.suggestions-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.suggestion-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.suggestion-tag {
    padding: 4px 10px;
    background-color: var(--bg-white);
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    line-height: 21px;
}

.suggestion-tag:hover {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

/* [type=button]:focus, [type=button]:hover, [type=submit]:focus, [type=submit]:hover, button:focus, button:hover{
    background-color: #9a5500;
} */
.pitch-filters-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 32px;
}

.pitch-filters-card h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1rem;
}

.filter-options {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.filter-checkbox {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    color: var(--text-dark);
    cursor: pointer;
    position: relative;
    padding-left: 32px;
}

.filter-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.checkmark {
    position: absolute;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.filter-checkbox:hover input ~ .checkmark {
    border-color: var(--primary-color);
}

.filter-checkbox input:checked ~ .checkmark {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.filter-checkbox input:checked ~ .checkmark:after {
    display: block;
}

/* ============================================
   Weekly Articles Section
   ============================================ */
.alerts-section {
    padding: 60px 0 0 0;
    background-color: var(--bg-white);
}

.section-header-row {
    /* display: flex; */
    /* justify-content: space-between; */
    /* align-items: flex-start; */
    margin-bottom: 50px;
    gap: 20px;
}

.section-header-text {
    flex: 1;
}

.section-header-text .section-title {
    color: var(--primary-color);
    text-align: left;
    font-size: 1.9rem;
}

.section-header-text .section-subtitle {
    text-align: left;
    margin: 0;
}

.alerts-subscription {
    margin-top: 15px;
    flex-shrink: 0;
    width: 480px;
}

.alerts-email-form {
    display: flex;
    gap: 10px;
}

.alerts-email-input {
    flex: 1;
    padding: 12px 16px;
    font-family: 'Raleway', sans-serif;
    font-size: 0.9rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    background-color: var(--bg-white);
    color: var(--text-dark);
    transition: all 0.3s;
}

.alerts-email-input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.alerts-btn-submit {
    width: fit-content;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border: none;
    padding: 12px;
    font-family: 'Raleway', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.alerts-btn-submit:hover {
    background-color: var(--primary-dark);
}

.weekly-articles-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 22px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-color);
}

.weekly-articles-header h3 {
color: var(--primary-color);
    margin-bottom: 0;
    font-size: 1.2rem;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.article-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}
.insight-content p.subline{ font-size: 0.9rem;
    line-height: 28px;
    font-weight: 500; }
.article-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(13, 62, 111, 0.08);
}

.article-card img {
    width: 80px;
    height: 100px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
}

.article-content {
    flex: 1;
    min-width: 0;
}

.article-title {
    color: var(--text-dark);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 6px;
    transition: color 0.3s ease;
}

.article-card:hover .article-title {
    color: var(--primary-color);
}

.article-description {
    color: var(--text-light);
    font-size: 0.85rem;
    line-height: 1.4;
    margin-bottom: 6px;
}

.article-date {
    color: var(--text-muted);
    font-size: 0.8rem;
    margin: 0;
}

/* ============================================
   Insights Section with CTA Sidebar
   ============================================ */
.insights-section {
    padding: 60px 0;
    background-color: var(--bg-white);
}

.insights-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 60px;
    align-items: start;
}

/* Left Side - Insights */
.insights-main {
    min-width: 0;
}

.insights-header {
    margin-bottom: 30px;
}

.insights-section .section-title {
    text-align: start;
    font-size: 1.9rem;
    margin-bottom: 12px;
}

.insights-section .section-subtitle {
    text-align: start;
    max-width: 700px;
    margin: 0;
    color: var(--text-light);
    font-size: 1rem;
}

.insights-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.insight-card {
    display: flex;
    align-items: start;
    gap: 20px;
    padding: 24px 28px;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.insight-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background: var(--primary-color);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.3s ease;
}

.insight-card:hover::before {
    transform: scaleY(1);
    transform-origin: top;
}

.insight-card:hover {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(13, 62, 111, 0.02), rgba(26, 90, 150, 0.04));
}

.insight-icon {
    width: 50px;
    height: 50px;
    background: var(--bg-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.insight-card:hover .insight-icon {
    background: var(--primary-color);
}

.insight-icon i {
    font-size: 1rem;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

.insight-card:hover .insight-icon i {
    color: var(--bg-white);
}

.insight-content {
    flex: 1;
    min-width: 0;
}

.insight-card h3 {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 4px;
    transition: color 0.3s ease;
}

.insight-card:hover h3 {
    color: var(--primary-color);
}

.insight-content p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.4;
}

.insight-arrow {
    font-size: 1rem;
    color: var(--text-muted);
    opacity: 50%;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.insight-card:hover .insight-arrow {
    color: var(--primary-color);
    transform: translateX(4px);
}

/* Right Side - CTA Sidebar */
.cta-sidebar {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.cta-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: all 0.3s ease;
    padding-top: 30px;
    padding-bottom: 10px;
}
.cta-card a.btn-cta{ color: #fff;margin: 10px 20px;}

.cta-image {
    width: 100%;
    height: 200px;
    object-fit: contain;
    display: block;
    background-color: var(--bg-light);
    padding: 4px;
    border-bottom: 1px solid var(--border-color);
}

.cta-content {
    padding: 20px;
}

.cta-badge {
    display: inline-block;
    padding: 3px 10px;
    background: var(--secondary-color);
    color: var(--text-dark);
    border-radius: 4px;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.cta-card h3 {
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 5px;
    line-height: 1.3;
}

.cta-card p {
    font-size: 0.85rem;
    color: var(--text-light);
    margin: 0;
    line-height: 1.5;
}

.cta-card .btn-cta {
    margin: 0 8px 8px 8px
    /* width: calc(100% - 48px); */


}

.btn-cta {
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 12px 24px;
    font-size: 0.9rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(13, 62, 111, 0.3);
}

.cta-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 10px 20px;
}

.cta-form input {
    width: 100% Im !important;
    padding: 12px 16px !important;
    border: 1px solid var(--border-color);
    border-radius: 8px !important;
    font-family: 'Raleway', sans-serif !important;
    font-size: 0.9rem !important;
}

.cta-form input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(13, 62, 111, 0.1);
}

.cta-form .btn-cta {
    margin: 0;
    width: 100%;
}
.elementor-73 .elementor-element.elementor-element-8349be1 .elementor-heading-title{ margin-bottom: 0 !important;}
/* Responsive Design */
@media (max-width: 1200px) {
    .insights-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .cta-sidebar {
        position: static;
        max-width: 600px;
        margin: 0 auto;
        flex-direction: row;
        gap: 20px;
    }

    .cta-card {
        flex: 1;
    }
}

@media (max-width: 768px) {
    .insights-grid {
        grid-template-columns: 1fr;
    }

    .insight-card {
        padding: 20px 24px;
    }

    .cta-sidebar {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .cta-image {
        height: 150px;
    }
}


/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 1200px) {
    .section-layout {
        grid-template-columns: 1fr;
    }

    .sidebar {
        position: static;
        max-width: 600px;
        margin: 40px auto 0;
    }
}

@media (max-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .section-header-row {
        flex-direction: column;
        align-items: stretch;
    }

    .alerts-subscription {
        max-width: 100%;
    }

    .articles-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pitch-stats {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 60px 0 50px;
    }

    .hero-title {
        font-size: 2.2rem !important;
    }

    .title-animated,
    .title-static {
        display: inline;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 1.9rem;
    }

    .platform-grid {
        grid-template-columns: 1fr;
    }

    .articles-grid {
        grid-template-columns: 1fr;
    }

    .alerts-email-form {
        flex-direction: column;
    }

    table {
        font-size: 0.85rem;
    }

    th, td {
        padding: 10px 8px;
    }

    .tracking-header-row {
        flex-direction: column;
    }

    .tracking-card {
        min-width: 300px;
    }

    .content-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .section-header-row {
        flex-direction: column;
        gap: 30px;
    }

    .alerts-btn-submit {
        width: 100%;
    }

    .insights-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .insight-card {
        padding: 20px 24px;
    }

    .cta-grid {
        grid-template-columns: 1fr;
    }

    .cta-form {
        flex-direction: column;
    }

    .cta-form .btn-cta {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero-title {
        font-size: 2rem !important;
        padding: 0 4px;
        text-align: center;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .stat-number {
        font-size: 1.9rem;
    }
}

 /* =========================================
           OPTION 1: 
           ========================================= */
        .card-dark {
            background: linear-gradient(145deg, var(--primary-dark), var(--primary-color));
            color: var(--bg-white);
            max-width: 100%;
            width: 100%;
            padding: 3.5rem;
            border-radius: 4px;
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(255,255,255,0.1);
        }

        /* Abstract accent line */
        .card-dark::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 6px;
            height: 100%;
            background-color: var(--secondary-color);
        }

        .dark-quote {
            font-size: 1.8rem;
            font-weight: 200; /* Very light font for elegance */
            line-height: 1.5;
            margin-bottom: 2rem;
            position: relative;
            z-index: 2;
        }

        .dark-highlight {
            font-weight: 800; /* Super bold contrast */
            color: var(--secondary-color);
            display: inline-block; /* Allows transform */
        }

        .dark-footer {
            display: flex;
            align-items: center;
            justify-content: space-between;
            border-top: 1px solid rgba(255,255,255,0.2);
            padding-top: 1.5rem;
        }

        .dark-author {
            font-size: 0.9rem;
            opacity: 0.8;
            letter-spacing: 1px;
        }

        .dark-btn {
            background-color: rgba(255,255,255,0.1);
            color: var(--bg-white);
            text-decoration: none;
            padding: 8px 16px;
            border-radius: 2px;
            font-size: 0.8rem;
            font-weight: 600;
            transition: all 0.3s;
        }
        .dark-btn:hover {
            background-color: var(--secondary-color);
            color: var(--primary-dark);
        }
/* =========================================
           OPTION 2: 
           ========================================= */
           .card-edit{ display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;}
        .card-editorial {
            background-color: var(--bg-white);
            max-width: 1300px;
            width: 100%;
            padding: 0;
            display: flex;
            border-radius: 16px;
            overflow: hidden;    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08), 0 2px 8px rgba(15, 23, 42, 0.04);
        }

        /* Sidebar accent */
        .editorial-sidebar {
            background-color: var(--primary-color);
            width: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .editorial-icon {
            color: rgba(255,255,255,0.3);
            font-size: 3rem;
            font-family: serif;
        }

        .editorial-content {
            padding: 2rem;
            flex-grow: 1;
        }

        .editorial-quote {
            font-size: 1.4rem;
            color: var(--text-light);
            font-weight: 400;
            line-height: 1.7;
            margin-bottom: 2rem;
        }

        .editorial-highlight {
            font-weight: 700;
            color: var(--primary-color);
            background: linear-gradient(to top, rgba(255, 193, 7, 0.3) 40%, transparent 40%);
            padding: 0 4px;
        }

        .editorial-meta {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .meta-avatar {
            width: 40px;
            height: 40px;
            background-color: var(--bg-light);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            color: var(--primary-light);
            font-size: 0.8rem;
        }

        .meta-text {
            display: flex;
            flex-direction: column;
        }

        .meta-author {
            font-weight: 700;
            color: var(--text-dark);
            font-size: 0.95rem;
        }

        .meta-source {
            font-size: 0.85rem;
            color: var(--text-muted);
            font-style: italic;
        }

        .editorial-link {
            margin-left: auto;
            color: var(--primary-light);
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9rem;
            border-bottom: 2px solid transparent;
            transition: border-color 0.3s;
        }
        .editorial-link:hover {
            border-bottom-color: var(--secondary-color);
        }

        /* Mobile Responsive */
        @media (max-width: 600px) {
            .card-dark, .card-editorial {
                padding: 2rem;
            }
            .card-editorial {
                flex-direction: column;
            }
            .editorial-sidebar {
                width: 100%;
                height: 10px;
            }
            .editorial-icon { display: none; }
            .dark-quote { font-size: 1.4rem; }
        }