/* ============================================================
   Kasseify — Modern Landing Page CSS
   Design: Swiss Minimalism, Light Mode, Admin Accent Color
   Font: Plus Jakarta Sans (replaces Montserrat on landing)
   ============================================================ */

/* -----------------------------------------------
   0. Import Font
   ----------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

/* -----------------------------------------------
   1. Base Reset & Tokens
   ----------------------------------------------- */
.lp-page *,
.lp-page *::before,
.lp-page *::after {
    box-sizing: border-box;
}

.lp-page {
    font-family: 'Plus Jakarta Sans', 'Montserrat', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #1E293B;
    background: #ffffff;
}

/* -----------------------------------------------
   2. Typography Override
   ----------------------------------------------- */
.lp-page h1,
.lp-page h2,
.lp-page h3,
.lp-page h4,
.lp-page h5,
.lp-page h6 {
    font-family: 'Plus Jakarta Sans', 'Montserrat', sans-serif;
    color: #0F172A;
    line-height: 1.25;
    margin-top: 0;
}

.lp-page p {
    color: #475569;
    line-height: 1.75;
    font-size: 15px;
    margin-bottom: 0;
}

/* -----------------------------------------------
   3. Modern Navbar
   ----------------------------------------------- */
.lp-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid #E2E8F0;
    transition: box-shadow 0.3s ease, background 0.3s ease;
}

.lp-navbar.is-scrolled {
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    background: rgba(255, 255, 255, 0.97);
}

.lp-navbar__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.lp-navbar__logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.lp-navbar__logo img {
    max-height: 44px;
    width: auto;
}

.lp-navbar__nav {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    margin: 0;
    padding: 0;
    flex: 1;
    justify-content: center;
}

.lp-navbar__nav li a {
    display: block;
    padding: 8px 14px;
    font-size: 14px;
    font-weight: 600;
    color: #334155;
    border-radius: 8px;
    transition: color 0.2s ease, background 0.2s ease;
    text-decoration: none;
    letter-spacing: 0.01em;
}

.lp-navbar__nav li a:hover {
    color: var(--brand-color, #3B82F6);
    background: rgba(0, 0, 0, 0.04);
}

.lp-navbar__nav li.dropdown {
    position: relative;
}

.lp-navbar__nav li.dropdown>a .caret {
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid currentColor;
    vertical-align: middle;
    margin-left: 4px;
}

.lp-navbar__nav .dropdown-menu {
    display: block !important;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    min-width: 220px;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    padding: 8px;
    margin-top: 4px;
    background: #fff;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
    pointer-events: none;
}

.lp-navbar__nav li.dropdown:hover>.dropdown-menu,
.lp-navbar__nav li.dropdown.is-open>.dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.lp-navbar__nav .dropdown-menu>li>a {
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 13px;
    color: #334155;
}

.lp-navbar__nav .dropdown-menu>li>a:hover {
    background: #F1F5F9;
    color: var(--brand-color, #3B82F6);
}

.lp-dropdown-divider {
    height: 0;
    margin: 6px 0;
    border-top: 1px solid #e2e8f0;
}

.lp-navbar__actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.lp-navbar__actions .lp-btn-ghost {
    font-size: 14px;
    font-weight: 600;
    color: #334155;
    padding: 8px 16px;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
    cursor: pointer;
}

.lp-navbar__actions .lp-btn-ghost:hover {
    background: #F1F5F9;
    color: #0F172A;
}

.lp-navbar__actions .lp-btn-primary {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    background: var(--brand-color, #3B82F6);
    padding: 9px 20px;
    border-radius: 8px;
    text-decoration: none;
    transition: opacity 0.2s ease, transform 0.15s ease;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: none;
    line-height: 1;
}

.lp-navbar__actions .lp-btn-primary:hover {
    opacity: 0.88;
    transform: translateY(-1px);
}

/* Mobile toggle */
.lp-navbar__toggle {
    display: none;
    background: none;
    border: 1px solid #E2E8F0;
    border-radius: 8px;
    padding: 8px;
    cursor: pointer;
    color: #334155;
}

.lp-navbar__toggle svg {
    display: block;
    width: 20px;
    height: 20px;
}

/* -----------------------------------------------
   4. Section Padding Utility
   ----------------------------------------------- */
.lp-section {
    padding: 96px 0;
    overflow: hidden;
}

.lp-section--sm {
    padding: 60px 0;
}

.lp-section--gray {
    background: #F8FAFC;
}

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

/* -----------------------------------------------
   5. Section Heading
   ----------------------------------------------- */
.lp-heading {
    text-align: center;
    margin-bottom: 60px;
}

.lp-heading__tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--brand-color, #3B82F6);
    background: color-mix(in srgb, var(--brand-color, #3B82F6) 12%, transparent);
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 14px;
}

.lp-heading__title {
    font-size: 36px;
    font-weight: 800;
    color: #0F172A;
    margin-bottom: 14px;
    line-height: 1.2;
}

.lp-heading__sub {
    font-size: 16px;
    color: #64748B;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

/* -----------------------------------------------
   6. Hero Section
   ----------------------------------------------- */
.lp-hero {
    padding: 148px 0 96px;
    background: #ffffff;
    position: relative;
    overflow: hidden;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Decorative background grid */
.lp-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(226, 232, 240, 0.5) 1px, transparent 1px),
        linear-gradient(90deg, rgba(226, 232, 240, 0.5) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
}

/* Accent blob */
.lp-hero::after {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, color-mix(in srgb, var(--brand-color, #3B82F6) 12%, transparent) 0%, transparent 65%);
    pointer-events: none;
}

.lp-hero__inner {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 840px;
    margin: 0 auto;
    padding: 0 24px;
}

.lp-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #F1F5F9;
    border: 1px solid #E2E8F0;
    border-radius: 40px;
    padding: 6px 16px 6px 8px;
    margin-bottom: 28px;
    font-size: 13px;
    font-weight: 600;
    color: #334155;
}

.lp-hero__badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--brand-color, #3B82F6);
    animation: lp-pulse 2s infinite;
    flex-shrink: 0;
}

@keyframes lp-pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }
}

.lp-hero__title {
    font-size: clamp(42px, 6.5vw, 80px);
    font-weight: 900;
    line-height: 1.05;
    color: #0F172A;
    margin-bottom: 24px;
    letter-spacing: -0.04em;
    /* Tighter tracking for premium feel */
}

.lp-hero__title mark {
    background: none;
    color: var(--brand-color, #3B82F6);
    font-style: normal;
}

.lp-hero__sub {
    font-size: 18px;
    color: #64748B;
    margin-bottom: 40px;
    line-height: 1.7;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.lp-hero__cta {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.lp-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Plus Jakarta Sans', 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 15px;
    border-radius: 10px;
    padding: 12px 26px;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
    line-height: 1;
}

.lp-btn--primary {
    background: var(--brand-color, #3B82F6);
    color: #ffffff;
    box-shadow: 0 4px 14px color-mix(in srgb, var(--brand-color, #3B82F6) 35%, transparent);
}

.lp-btn--primary:hover {
    opacity: 0.88;
    transform: translateY(-1px);
    color: #fff;
    box-shadow: 0 6px 20px color-mix(in srgb, var(--brand-color, #3B82F6) 45%, transparent);
}

.lp-btn--outline {
    background: transparent;
    color: #334155;
    border: 1.5px solid #CBD5E1;
}

.lp-btn--outline:hover {
    background: #F8FAFC;
    border-color: #94A3B8;
    color: #0F172A;
    transform: translateY(-1px);
}

/* Hero social proof strip */
.lp-hero__proof {
    margin-top: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    padding-top: 40px;
    border-top: 1px solid #E2E8F0;
    flex-wrap: wrap;
}

.lp-hero__proof-item {
    text-align: center;
}

.lp-hero__proof-num {
    font-size: 28px;
    font-weight: 800;
    color: #0F172A;
    display: block;
    line-height: 1;
}

.lp-hero__proof-label {
    font-size: 13px;
    color: #64748B;
    font-weight: 500;
    margin-top: 4px;
    display: block;
}

.lp-hero__proof-divider {
    width: 1px;
    height: 40px;
    background: #E2E8F0;
}

/* -----------------------------------------------
   7. About Section
   ----------------------------------------------- */
.lp-about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.lp-about__img-wrap {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.lp-about__img-wrap img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}

.lp-about__img-wrap::before {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 24px;
    border: 2px solid color-mix(in srgb, var(--brand-color, #3B82F6) 20%, transparent);
    z-index: -1;
}

.lp-about__content .lp-heading {
    text-align: left;
    margin-bottom: 24px;
}

.lp-about__content .lp-heading__title {
    font-size: 30px;
}

.lp-about__desc {
    color: #475569;
    line-height: 1.8;
    margin-bottom: 28px;
}

/* -----------------------------------------------
   8. Features / Speciality Section
   ----------------------------------------------- */
.lp-features__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.lp-feature-card {
    background: #ffffff;
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    padding: 28px;
    transition: box-shadow 0.25s ease, transform 0.2s ease, border-color 0.25s ease;
    cursor: default;
}

.lp-feature-card:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.07);
    transform: translateY(-3px);
    border-color: color-mix(in srgb, var(--brand-color, #3B82F6) 35%, transparent);
}

.lp-feature-card__icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: color-mix(in srgb, var(--brand-color, #3B82F6) 10%, transparent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    font-size: 24px;
    color: var(--brand-color, #3B82F6);
    transition: background 0.25s ease;
}

.lp-feature-card:hover .lp-feature-card__icon {
    background: color-mix(in srgb, var(--brand-color, #3B82F6) 18%, transparent);
}

.lp-feature-card__title {
    font-size: 17px;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 10px;
}

.lp-feature-card__desc {
    font-size: 14px;
    color: #64748B;
    line-height: 1.7;
    margin: 0;
}

.lp-widget-panel__body-news {
    height: 280px;
}

.lp-widget-panel__body-events {
    height: 280px;
}

/* -----------------------------------------------
   9. Signals Section
   ----------------------------------------------- */
.lp-signals__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 18px;
}

.lp-signal-card {
    background: #ffffff;
    border: 1px solid #E2E8F0;
    border-radius: 14px;
    overflow: hidden;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.lp-signal-card:hover {
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.07);
    transform: translateY(-2px);
}

.lp-signal-card__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    border-bottom: 1px solid #F1F5F9;
    background: #F8FAFC;
}

.lp-signal-card__symbol {
    font-size: 15px;
    font-weight: 800;
    color: #0F172A;
    letter-spacing: 0.02em;
}

.lp-signal-card__badge {
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.lp-signal-card__badge--buy {
    background: #DCFCE7;
    color: #16A34A;
}

.lp-signal-card__badge--sell {
    background: #FEE2E2;
    color: #DC2626;
}

.lp-signal-card__body {
    padding: 0;
}

.lp-signal-card__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 16px;
    border-bottom: 1px solid #F1F5F9;
    font-size: 13px;
}

.lp-signal-card__row:last-child {
    border-bottom: none;
}

.lp-signal-card__row-label {
    color: #64748B;
    font-weight: 500;
}

.lp-signal-card__row-val {
    font-weight: 700;
    color: #0F172A;
}

.lp-signal-card__row-val--green {
    color: #16A34A;
}

.lp-signal-card__row-val--amber {
    color: #D97706;
}

.lp-signal-card__row-val--pending {
    color: #94A3B8;
    font-weight: 500;
}

.lp-signal-card__lock {
    padding: 24px 16px;
    text-align: center;
    background: #F8FAFC;
    border-bottom: 1px solid #F1F5F9;
}

.lp-signal-card__lock svg {
    width: 32px;
    height: 32px;
    color: #94A3B8;
}

.lp-signal-card__lock-text {
    font-size: 12px;
    color: #94A3B8;
    margin-top: 6px;
    display: block;
}

/* -----------------------------------------------
   10. Pricing Section
   ----------------------------------------------- */
.lp-pricing__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    align-items: start;
}

.lp-pricing-card {
    background: #ffffff;
    border: 1.5px solid #E2E8F0;
    border-radius: 20px;
    padding: 32px;
    transition: box-shadow 0.25s ease, transform 0.2s ease;
    position: relative;
}

.lp-pricing-card:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.07);
    transform: translateY(-3px);
}

.lp-pricing-card--featured {
    border-color: var(--brand-color, #3B82F6);
    box-shadow: 0 0 0 4px color-mix(in srgb, var(--brand-color, #3B82F6) 10%, transparent);
}

.lp-pricing-card--featured::before {
    content: 'Popular';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--brand-color, #3B82F6);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 14px;
    border-radius: 20px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.lp-pricing-card__name {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #64748B;
    margin-bottom: 16px;
}

.lp-pricing-card__price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 6px;
}

.lp-pricing-card__currency {
    font-size: 20px;
    font-weight: 700;
    color: #334155;
}

.lp-pricing-card__amount {
    font-size: 48px;
    font-weight: 800;
    color: #0F172A;
    line-height: 1;
}

.lp-pricing-card__period {
    font-size: 13px;
    color: #94A3B8;
    font-weight: 500;
}

.lp-pricing-card__free {
    font-size: 36px;
    font-weight: 800;
    color: #0F172A;
    margin-bottom: 6px;
}

.lp-pricing-card__divider {
    height: 1px;
    background: #F1F5F9;
    margin: 24px 0;
}

.lp-pricing-card__features {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.lp-pricing-card__features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #334155;
    font-weight: 500;
}

.lp-pricing-card__features li::before {
    content: '';
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: color-mix(in srgb, var(--brand-color, #3B82F6) 15%, transparent);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%233B82F6' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
    background-size: 11px;
    background-position: center;
    background-repeat: no-repeat;
    flex-shrink: 0;
}

/* -----------------------------------------------
   11. Counters / Stats Section
   ----------------------------------------------- */
.lp-stats {
    background: #0F172A;
    padding: 72px 0;
}

.lp-stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.lp-stat-item {
    text-align: center;
    padding: 0 32px;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.lp-stat-item:last-child {
    border-right: none;
}

.lp-stat-item__num {
    font-size: 48px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    display: block;
    margin-bottom: 8px;
}

.lp-stat-item__label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 500;
    letter-spacing: 0.04em;
}

.lp-stat-item__accent {
    display: block;
    width: 24px;
    height: 3px;
    background: var(--brand-color, #3B82F6);
    border-radius: 2px;
    margin: 12px auto 0;
}

/* -----------------------------------------------
   11b. Ticker Bar (TradingView Tickers)
   ----------------------------------------------- */
.lp-ticker {
    min-height: 42px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.lp-ticker .tradingview-widget-container {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
}

.lp-ticker .tradingview-widget-container__widget,
.lp-ticker iframe {
    height: 100% !important;
    min-height: 42px;
}


/* -----------------------------------------------
   11c. TradingView Ribbon Ad
   ----------------------------------------------- */
.lp-tv-ribbon-section {
    padding: 28px 0 0;
}

.lp-tv-showcase {
    display: block;
    overflow: hidden;
    border: 1px solid #dbe2ea;
    border-radius: 28px;
    background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
    text-decoration: none;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08), 0 2px 8px rgba(15, 23, 42, 0.04);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.lp-tv-showcase:hover {
    transform: translateY(-2px);
    border-color: #cbd5e1;
    box-shadow: 0 24px 48px rgba(15, 23, 42, 0.11), 0 4px 14px rgba(15, 23, 42, 0.05);
}

.lp-tv-showcase__top {
    display: grid;
    grid-template-columns: minmax(260px, 0.86fr) minmax(0, 1.3fr);
    gap: 40px;
    align-items: center;
    padding: 36px 40px 34px;
}

.lp-tv-showcase__brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    min-height: 100%;
    padding-right: 40px;
    border-right: 1px solid #e2e8f0;
    text-align: center;
}

.lp-tv-showcase__emblem {
    line-height: 0;
}

.lp-tv-showcase__logo {
    display: block;
    width: clamp(180px, 19vw, 220px);
    height: auto;
    color: #0f172a;
}

.lp-tv-showcase__brand-name {
    color: #0f172a;
    font-size: clamp(26px, 3vw, 34px);
    font-weight: 800;
    letter-spacing: -0.05em;
    line-height: 1;
}

.lp-tv-showcase__title {
    margin: 0 0 14px;
    color: #0f172a;
    font-size: clamp(30px, 3.4vw, 52px);
    font-weight: 800;
    letter-spacing: -0.05em;
    line-height: 1.08;
}

.lp-tv-showcase__text {
    margin: 0;
    color: #475569;
    font-size: 17px;
    line-height: 1.62;
}

.lp-tv-showcase__rail {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-top: 1px solid #e2e8f0;
    background: #ffffff;
}

.lp-tv-showcase__feature {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
    padding: 22px 24px;
    color: #0f172a;
    font-size: 16px;
    font-weight: 700;
}

.lp-tv-showcase__feature+.lp-tv-showcase__feature {
    border-left: 1px solid #e2e8f0;
}

.lp-tv-showcase__feature svg {
    flex-shrink: 0;
    color: #3b82f6;
}

.lp-tv-showcase__feature span {
    min-width: 0;
    line-height: 1.3;
}


/* -----------------------------------------------
   11d. Live News Page
   ----------------------------------------------- */
/* ==============================================
   NEWS PAGE  –  Editorial layout (white)
   ============================================== */
.lp-news-page {
    background: #ffffff;
    padding: 0;
}

.ne-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 96px 24px 80px;
    /* 72px fixed navbar + 24px breathing room */
}

.ne-section__head--filter {
    position: relative;
    justify-content: space-between;
    gap: 20px;
    z-index: 80;
}

.ne-section--live-grid {
    margin-bottom: 60px;
}

.ne-country-dropdown {
    position: relative;
    flex-shrink: 0;
    z-index: 81;
}

.ne-country-trigger {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    min-height: 48px;
    min-width: 220px;
    padding: 10px 14px 10px 16px;
    border: 1px solid #cbd5e1;
    border-radius: 16px;
    background: #fff;
    color: #111827;
    text-align: left;
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.ne-country-trigger:hover {
    border-color: #111827;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.12);
}

.ne-country-trigger:disabled {
    cursor: wait;
    opacity: 0.75;
}

.ne-country-trigger__meta {
    display: block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #f97316;
}

.ne-country-trigger__value {
    display: block;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.25;
    color: #0f172a;
}

.ne-country-trigger svg {
    flex-shrink: 0;
    margin-left: auto;
}

.ne-country-panel {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    width: min(360px, calc(100vw - 32px));
    padding: 14px;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 22px 44px rgba(15, 23, 42, 0.18);
    z-index: 82;
}

.ne-country-panel__head {
    padding: 4px 4px 12px;
}

.ne-country-panel__title {
    margin: 0;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: -0.01em;
    color: #0f172a;
}

.ne-country-search {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 14px;
    padding: 14px 16px;
    border: 1px solid #dbe2ea;
    border-radius: 16px;
    background: #f8fafc;
    color: #64748b;
}

.ne-country-search input {
    width: 100%;
    border: none;
    outline: none;
    background: transparent;
    color: #0f172a;
    font-size: 15px;
    font-weight: 600;
}

.ne-country-options {
    display: grid;
    gap: 10px;
    padding: 0;
    max-height: 320px;
    overflow-y: auto;
}

.ne-country-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 18px;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    background: #fff;
    color: #0f172a;
    text-align: left;
    cursor: pointer;
    transition: border-color 0.2s ease, background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.ne-country-option[hidden] {
    display: none;
}

.ne-country-option:hover {
    border-color: #111827;
    background: #f8fafc;
    transform: translateY(-1px);
}

.ne-country-option.is-active {
    border-color: #111827;
    background: #f8fafc;
    color: #0f172a;
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
}

.ne-country-option__label {
    font-size: 15px;
    font-weight: 800;
}

.ne-country-option__hint {
    font-size: 12px;
    font-weight: 600;
    color: #64748b;
}

.ne-country-option.is-active .ne-country-option__hint {
    color: #475569;
}

.ne-country-no-results {
    margin: 0;
    padding: 14px 4px 4px;
    color: #64748b;
    font-size: 14px;
    font-weight: 600;
}

.ne-news-feed-shell {
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.ne-news-feed-shell.is-loading {
    opacity: 0.58;
    transform: translateY(3px);
    pointer-events: none;
}

/* ---- Section header ---- */
.ne-section {
    margin-bottom: 60px;
}

.ne-section__head {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-bottom: 18px;
    border-bottom: 2px solid #111111;
    margin-bottom: 28px;
}

.ne-section__title {
    font-size: clamp(26px, 4vw, 38px);
    font-weight: 900;
    color: #111111;
    letter-spacing: -0.03em;
    margin: 0;
    flex: 1;
}

.ne-more-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: 999px;
    background: #f97316;
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    flex-shrink: 0;
}

.ne-more-pill__dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.8);
    animation: ne-pulse 1.8s ease-in-out infinite;
}

@keyframes ne-pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.35;
    }
}

/* ---- Category chips ---- */
.ne-chip {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    flex-shrink: 0;
}

.ne-chip--forex {
    background: #ecfeff;
    color: #0f766e;
}

.ne-chip--crypto {
    background: #fff7ed;
    color: #ea580c;
}

.ne-chip--stocks {
    background: #f0fdf4;
    color: #15803d;
}

.ne-chip--india {
    background: #fff1f2;
    color: #e11d48;
}

.ne-chip--global {
    background: #eff6ff;
    color: #1d4ed8;
}

/* ---- Trending Stories grid ---- */
.ne-trend-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 28px;
    align-items: start;
}

/* ---- Big card (top 2) ---- */
.ne-big-card {
    display: flex;
    flex-direction: column;
    gap: 0;
    text-decoration: none;
    color: inherit;
}

.ne-big-card__img {
    width: 100%;
    height: 210px;
    border-radius: 16px;
    overflow: hidden;
    flex-shrink: 0;
    margin-bottom: 18px;
}

.ne-big-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.38s ease;
}

.ne-big-card:hover .ne-big-card__img img {
    transform: scale(1.05);
}

.ne-big-card__body {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ne-big-card__title {
    font-size: 17px;
    font-weight: 700;
    color: #111111;
    line-height: 1.45;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.2s;
}

.ne-big-card:hover .ne-big-card__title {
    color: #f97316;
}

.ne-big-card__meta {
    font-size: 12px;
    color: #999;
    margin: 0;
    font-weight: 500;
}

/* ---- Compact side list ---- */
.ne-side-list {
    display: flex;
    flex-direction: column;
    border-left: 1px solid #eeeeee;
    padding-left: 24px;
    gap: 0;
}

.ne-row-card {
    display: flex;
    gap: 14px;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #f2f2f2;
    text-decoration: none;
    color: inherit;
    transition: background 0.18s;
}

.ne-row-card:first-child {
    padding-top: 0;
}

.ne-row-card:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.ne-row-card__thumb {
    flex: 0 0 76px;
    height: 62px;
    border-radius: 10px;
    overflow: hidden;
}

.ne-row-card__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.32s ease;
}

.ne-row-card:hover .ne-row-card__thumb img {
    transform: scale(1.07);
}

.ne-row-card__body {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ne-row-card__title {
    font-size: 14px;
    font-weight: 700;
    color: #111111;
    line-height: 1.4;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.2s;
}

.ne-row-card:hover .ne-row-card__title {
    color: #f97316;
}

.ne-row-card__time {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #aaa;
    font-weight: 500;
}

/* ---- Hero / Featured card ---- */
.ne-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
    gap: 0;
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #eeeeee;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.07);
    text-decoration: none;
    color: inherit;
    margin-bottom: 60px;
    min-height: 360px;
    transition: box-shadow 0.28s ease, transform 0.28s ease;
}

.ne-hero:hover {
    box-shadow: 0 18px 56px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.ne-hero__body {
    padding: 44px 42px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}

.ne-hero__tags {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ne-hero__live {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: #94a3b8;
}

.ne-hero__title {
    font-size: clamp(22px, 3vw, 36px);
    font-weight: 800;
    color: #111111;
    line-height: 1.18;
    letter-spacing: -0.025em;
    margin: 0;
    transition: color 0.2s;
}

.ne-hero:hover .ne-hero__title {
    color: #f97316;
}

.ne-hero__meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    font-size: 13px;
    color: #888;
    font-weight: 600;
}

.ne-hero__author-dot {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f97316, #f59e0b);
    flex-shrink: 0;
}

.ne-hero__img {
    overflow: hidden;
}

.ne-hero__img img {
    width: 100%;
    height: 100%;
    min-height: 360px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.ne-hero:hover .ne-hero__img img {
    transform: scale(1.04);
}

/* ---- Editor's Picks ---- */
.ne-picks-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 36px;
    align-items: start;
}

.ne-pick-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    border: 1px solid #eeeeee;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.ne-pick-card:hover {
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.11);
    transform: translateY(-3px);
}

.ne-pick-card__img {
    width: 100%;
    height: 300px;
    overflow: hidden;
    flex-shrink: 0;
}

.ne-pick-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.ne-pick-card:hover .ne-pick-card__img img {
    transform: scale(1.05);
}

.ne-pick-card__body {
    padding: 22px 20px 26px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ne-pick-card__title {
    font-size: 22px;
    font-weight: 800;
    color: #111111;
    line-height: 1.3;
    margin: 0;
    transition: color 0.2s;
}

.ne-pick-card:hover .ne-pick-card__title {
    color: #f97316;
}

.ne-pick-card__meta {
    font-size: 12px;
    color: #999;
    margin: 0;
}

/* ---- Empty state ---- */
.ne-empty {
    text-align: center;
    padding: 80px 20px;
    color: #94a3b8;
    font-size: 0.95rem;
}

/* ---- More to Read (archive) – two-column list ---- */
.ne-archive {
    border-top: 1px solid #f0f0f0;
    padding-top: 48px;
}

.ne-more-pill--muted {
    background: #f1f5f9;
    color: #64748b;
}

.ne-archive-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.ne-archive-col {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.ne-archive-col:first-child {
    padding-right: 40px;
    border-right: 1px solid #eeeeee;
}

.ne-archive-col:last-child {
    padding-left: 40px;
}

/* ---- Individual row item ---- */
.ne-arc-row {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    padding: 18px 0;
    border-bottom: 1px solid #f4f4f4;
    text-decoration: none;
    color: inherit;

    /* lazy reveal */
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.4s ease, transform 0.4s ease, background 0.18s;
}

.ne-arc-row:last-child {
    border-bottom: none;
}

.ne-arc-row--visible {
    opacity: 1;
    transform: translateY(0);
}

.ne-arc-row:hover {
    background: transparent;
}

.ne-arc-row__num {
    flex: 0 0 28px;
    font-size: 22px;
    font-weight: 900;
    color: #eeeeee;
    line-height: 1;
    padding-top: 3px;
    letter-spacing: -0.04em;
    transition: color 0.2s;
}

.ne-arc-row:hover .ne-arc-row__num {
    color: #f97316;
}

.ne-arc-row__body {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.ne-arc-row__title {
    font-size: 15px;
    font-weight: 700;
    color: #111111;
    line-height: 1.42;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.2s;
}

.ne-arc-row:hover .ne-arc-row__title {
    color: #f97316;
}

.ne-arc-row__meta {
    font-size: 12px;
    color: #aaa;
    margin: 0;
    font-weight: 500;
}

/* ---- Archive responsive ---- */
@media (max-width: 768px) {
    .ne-archive-cols {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .ne-archive-col:first-child {
        padding-right: 0;
        border-right: none;
    }

    .ne-archive-col:last-child {
        padding-left: 0;
    }
}

/* ---- Load More button ---- */
.ne-load-more-wrap {
    text-align: center;
    padding-top: 40px;
}

.ne-load-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 36px;
    border-radius: 999px;
    background: #111111;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.02em;
    border: none;
    cursor: pointer;
    transition: background 0.22s ease, transform 0.18s ease, box-shadow 0.22s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.ne-load-more-btn:hover {
    background: #f97316;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(249, 115, 22, 0.30);
}

.ne-load-more-btn:active {
    transform: translateY(0);
}

/* -----------------------------------------------
   11e. Events Page
   ----------------------------------------------- */
.lp-events-page {
    background:
        radial-gradient(circle at top right, rgba(245, 158, 11, 0.10), transparent 26%),
        linear-gradient(180deg, #f8fafc 0%, #ffffff 22%, #f8fafc 100%);
    padding: 96px 0 110px;
}

.ev-shell {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.ev-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
    gap: 28px;
    align-items: stretch;
    margin-bottom: 44px;
}

.ev-hero__content {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    padding: 44px;
    background:
        radial-gradient(circle at top right, rgba(96, 165, 250, 0.34), transparent 24%),
        radial-gradient(circle at bottom left, rgba(245, 158, 11, 0.22), transparent 28%),
        linear-gradient(135deg, #0f172a 0%, #111827 56%, #1d4ed8 100%);
    box-shadow: 0 26px 70px rgba(15, 23, 42, 0.18);
}

.ev-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 7px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: #e2e8f0;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.ev-title {
    margin: 18px 0 14px;
    max-width: 14ch;
    color: #ffffff;
    font-size: clamp(34px, 5vw, 62px);
    font-weight: 900;
    line-height: 1.02;
    letter-spacing: -0.05em;
}

.ev-lead {
    max-width: 60ch;
    margin: 0;
    color: rgba(226, 232, 240, 0.88);
    font-size: 16px;
    line-height: 1.8;
}

.ev-stat-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 28px;
}

.ev-stat {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 18px;
    border-radius: 18px;
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: rgba(255, 255, 255, 0.09);
}

.ev-stat--amber {
    box-shadow: inset 0 0 0 1px rgba(251, 191, 36, 0.10);
}

.ev-stat--blue {
    box-shadow: inset 0 0 0 1px rgba(96, 165, 250, 0.12);
}

.ev-stat--emerald {
    box-shadow: inset 0 0 0 1px rgba(52, 211, 153, 0.12);
}

.ev-stat__value {
    color: #ffffff;
    font-size: 28px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.04em;
}

.ev-stat__label {
    color: rgba(226, 232, 240, 0.76);
    font-size: 13px;
    font-weight: 600;
}

.ev-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.ev-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    border-radius: 999px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.02em;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

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

.ev-btn--primary {
    background: linear-gradient(135deg, #f59e0b, #f97316);
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.28);
}

.ev-btn--ghost {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: #f8fafc;
}

.ev-hero__panel,
.ev-calendar-card,
.ev-note-card,
.ev-session-card {
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(226, 232, 240, 0.92);
    border-radius: 24px;
    box-shadow: 0 16px 42px rgba(15, 23, 42, 0.08);
}

.ev-hero__panel {
    padding: 30px;
}

.ev-panel__eyebrow,
.ev-section__kicker,
.ev-mini-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 28px;
    padding: 0 12px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.ev-panel__eyebrow,
.ev-section__kicker {
    background: #eff6ff;
    color: #1d4ed8;
}

.ev-mini-pill {
    background: #e2e8f0;
    color: #0f172a;
}

.ev-mini-pill--warm {
    background: #fff7ed;
    color: #c2410c;
}

.ev-mini-pill--cool {
    background: #eff6ff;
    color: #1d4ed8;
}

.ev-panel__title {
    margin: 16px 0 10px;
    color: #0f172a;
    font-size: 28px;
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.ev-panel__copy,
.ev-section__text,
.ev-impact-item p,
.ev-cluster-item p,
.ev-playbook-item p,
.ev-session-card p {
    margin: 0;
    color: #475569;
    font-size: 14px;
    line-height: 1.75;
}

.ev-impact-list,
.ev-cluster-list,
.ev-playbook-list,
.ev-side-stack {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.ev-impact-list {
    margin-top: 22px;
}

.ev-impact-item {
    display: grid;
    grid-template-columns: 14px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
    padding: 14px 0;
    border-top: 1px solid #e2e8f0;
}

.ev-impact-item:first-child {
    border-top: none;
    padding-top: 0;
}

.ev-impact-item h3,
.ev-cluster-item h4,
.ev-playbook-item h4,
.ev-calendar-card__head h3,
.ev-session-card h3 {
    margin: 0 0 6px;
    color: #0f172a;
    font-weight: 800;
    line-height: 1.25;
}

.ev-impact-item__dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-top: 5px;
}

.ev-impact-item--high .ev-impact-item__dot {
    background: #ef4444;
}

.ev-impact-item--medium .ev-impact-item__dot {
    background: #f59e0b;
}

.ev-impact-item--low .ev-impact-item__dot {
    background: #3b82f6;
}

.ev-section {
    margin-top: 46px;
}

.ev-section--soft {
    padding-top: 8px;
}

.ev-section__head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 26px;
}

.ev-section__title {
    margin: 10px 0 0;
    color: #0f172a;
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 1.05;
}

.ev-section__text {
    max-width: 42ch;
}

.ev-calendar-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.85fr);
    gap: 28px;
    align-items: start;
}

.ev-calendar-card {
    overflow: hidden;
}

.ev-calendar-card__head,
.ev-note-card__head {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 18px;
    padding: 24px 24px 0;
}

.ev-calendar-card__meta {
    color: #94a3b8;
    font-size: 12px;
    font-weight: 700;
}

.ev-calendar-card__body {
    padding: 18px 10px 10px;
}

#tv-events-calendar-page {
    min-height: 640px;
}

#tv-events-calendar-page .tradingview-widget-container__widget {
    min-height: 640px;
}

.ev-note-card {
    padding-bottom: 22px;
}

.ev-cluster-list,
.ev-playbook-list {
    padding: 18px 24px 0;
}

.ev-cluster-item,
.ev-playbook-item {
    padding-top: 14px;
    border-top: 1px solid #e2e8f0;
}

.ev-cluster-item:first-child,
.ev-playbook-item:first-child {
    padding-top: 0;
    border-top: none;
}

.ev-cluster-item__eyebrow {
    display: inline-block;
    margin-bottom: 8px;
    color: #f97316;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.ev-playbook-item {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 14px;
}

.ev-playbook-item__num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #0f172a;
    color: #ffffff;
    font-size: 14px;
    font-weight: 800;
}

.ev-session-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.ev-session-card {
    padding: 26px;
}

.ev-session-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 18px;
}

.ev-session-card__tag {
    color: #0f172a;
    font-size: 13px;
    font-weight: 800;
}

.ev-session-card__time {
    color: #f97316;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

@media (max-width: 1100px) {

    .ev-hero,
    .ev-calendar-grid {
        grid-template-columns: 1fr;
    }

    .ev-section__head {
        flex-direction: column;
        align-items: start;
    }

    .ev-section__text {
        max-width: none;
    }

    .ev-session-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .lp-events-page {
        padding: 84px 0 96px;
    }

    .ev-shell {
        padding: 0 18px;
    }

    .ev-hero__content,
    .ev-hero__panel,
    .ev-session-card {
        padding: 24px;
    }

    .ev-stat-grid,
    .ev-session-grid {
        grid-template-columns: 1fr;
    }

    .ev-calendar-card__head,
    .ev-note-card__head {
        flex-direction: column;
    }

    .ev-calendar-card__body {
        padding: 16px 0 0;
    }

    #tv-events-calendar-page,
    #tv-events-calendar-page .tradingview-widget-container__widget {
        min-height: 540px;
    }
}






/* -----------------------------------------------
   12. Trading Widget Section
   ----------------------------------------------- */
.lp-widget-wrap {
    background: #ffffff;
    border: 1px solid #E2E8F0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
}

/* -----------------------------------------------
   13. CTA Banner
   ----------------------------------------------- */
.lp-cta {
    background: var(--brand-color, #3B82F6);
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.lp-cta::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    pointer-events: none;
}

.lp-cta::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    pointer-events: none;
}

.lp-cta__inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}

.lp-cta__text h3 {
    font-size: 30px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 8px;
}

.lp-cta__text p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    margin: 0;
}

.lp-btn--white {
    background: #ffffff;
    color: var(--brand-color, #3B82F6);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.lp-btn--white:hover {
    background: #F8FAFC;
    color: var(--brand-color, #3B82F6);
    transform: translateY(-2px);
    box-shadow: 0 6px 22px rgba(0, 0, 0, 0.15);
}

/* -----------------------------------------------
   14. Testimonials
   ----------------------------------------------- */
.lp-testimonials__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.lp-testimonial-card {
    background: #ffffff;
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    padding: 28px;
    transition: box-shadow 0.2s ease;
}

.lp-testimonial-card:hover {
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
}

.lp-testimonial-card__quote {
    font-size: 14px;
    color: #475569;
    line-height: 1.75;
    margin-bottom: 20px;
    position: relative;
}

.lp-testimonial-card__quote::before {
    content: '\201C';
    font-size: 56px;
    color: var(--brand-color, #3B82F6);
    line-height: 0;
    vertical-align: -22px;
    margin-right: 4px;
    font-family: Georgia, serif;
    opacity: 0.35;
}

.lp-testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1px solid #F1F5F9;
    padding-top: 16px;
    margin-top: 4px;
}

.lp-testimonial-card__avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid #E2E8F0;
}

.lp-testimonial-card__name {
    font-size: 14px;
    font-weight: 700;
    color: #0F172A;
    display: block;
    margin-bottom: 2px;
}

.lp-testimonial-card__role {
    font-size: 12px;
    color: #94A3B8;
    font-weight: 500;
}

/* -----------------------------------------------
   15. Subscribe / Email Section
   ----------------------------------------------- */
.lp-subscribe {
    background: #F8FAFC;
}

.lp-subscribe__inner {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
}

.lp-subscribe__form {
    display: flex;
    gap: 10px;
    margin-top: 28px;
    border-radius: 12px;
    background: #ffffff;
    border: 1.5px solid #E2E8F0;
    padding: 6px 6px 6px 18px;
    align-items: center;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.lp-subscribe__form:focus-within {
    border-color: var(--brand-color, #3B82F6);
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--brand-color, #3B82F6) 14%, transparent);
}

.lp-subscribe__input {
    border: none;
    outline: none;
    background: transparent;
    font-family: 'Plus Jakarta Sans', 'Montserrat', sans-serif;
    font-size: 14px;
    color: #0F172A;
    flex: 1;
    min-width: 0;
}

.lp-subscribe__input::placeholder {
    color: #94A3B8;
}

.lp-subscribe__alerts {
    margin-bottom: 16px;
}

/* -----------------------------------------------
   16. Blog Cards
   ----------------------------------------------- */
.lp-blog__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}

.lp-blog-card {
    background: #ffffff;
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    overflow: hidden;
    transition: box-shadow 0.25s ease, transform 0.2s ease;
    display: flex;
    flex-direction: column;
}

.lp-blog-card:hover {
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.07);
    transform: translateY(-3px);
}

.lp-blog-card__img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block;
}

.lp-blog-card__body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.lp-blog-card__meta {
    display: flex;
    gap: 14px;
    margin-bottom: 10px;
}

.lp-blog-card__meta-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: #94A3B8;
    font-weight: 500;
}

.lp-blog-card__meta-item svg {
    width: 14px;
    height: 14px;
}

.lp-blog-card__title {
    font-size: 16px;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 8px;
    line-height: 1.4;
    transition: color 0.2s ease;
}

.lp-blog-card__title:hover {
    color: var(--brand-color, #3B82F6);
}

.lp-blog-card__title a {
    color: inherit;
    text-decoration: none;
}

.lp-blog-card__title a:hover {
    color: var(--brand-color, #3B82F6);
}

.lp-blog-card__excerpt {
    font-size: 13px;
    color: #64748B;
    line-height: 1.7;
    margin-bottom: 16px;
    flex: 1;
}

.lp-blog-card__link {
    font-size: 13px;
    font-weight: 700;
    color: var(--brand-color, #3B82F6);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.2s ease;
}

.lp-blog-card__link:hover {
    gap: 9px;
    color: var(--brand-color, #3B82F6);
}

/* -----------------------------------------------
   17. Footer
   ----------------------------------------------- */
.lp-footer {
    background: #0F172A;
    padding: 64px 0 0;
}

.lp-footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    margin-bottom: 48px;
}

.lp-footer__brand p {
    color: rgba(255, 255, 255, 0.55);
    font-size: 14px;
    line-height: 1.7;
    margin-top: 16px;
}

.lp-footer__brand img {
    max-height: 50px;
    width: auto;
}

.lp-footer__col-title {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 16px;
}

.lp-footer__links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.lp-footer__links li a {
    color: rgba(255, 255, 255, 0.65);
    font-size: 14px;
    text-decoration: none;
    transition: color 0.2s ease;
    font-weight: 500;
}

.lp-footer__links li a:hover {
    color: #ffffff;
}

.lp-footer__contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.65);
    font-weight: 500;
    margin-bottom: 10px;
}

.lp-footer__contact-item svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--brand-color, #3B82F6);
}

.lp-footer__social {
    display: flex;
    gap: 10px;
    margin-top: 16px;
    flex-wrap: wrap;
}

.lp-footer__social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.07);
    color: rgba(255, 255, 255, 0.65);
    transition: background 0.2s ease, color 0.2s ease;
    text-decoration: none;
    font-size: 14px;
}

.lp-footer__social a:hover {
    background: var(--brand-color, #3B82F6);
    color: #ffffff;
}

.lp-footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.lp-footer__bottom p {
    color: rgba(255, 255, 255, 0.35);
    font-size: 13px;
    margin: 0;
}

.lp-footer__bottom a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.2s ease;
}

.lp-footer__bottom a:hover {
    color: #ffffff;
}

.lp-footer__bottom-links {
    display: flex;
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0;
}

/* -----------------------------------------------
   18. Scroll Animation
   ----------------------------------------------- */
.lp-fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.lp-fade-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    .lp-fade-up {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* -----------------------------------------------
   19. Responsive
   ----------------------------------------------- */
@media (max-width: 991px) {
    .lp-about__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .lp-stats__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }

    .lp-stat-item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        padding-bottom: 32px;
    }

    .lp-stat-item:nth-child(2n) {
        border-right: none;
    }

    .lp-stat-item:nth-last-child(-n+2) {
        border-bottom: none;
    }

    .lp-footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .lp-navbar__nav {
        display: none;
    }

    .lp-navbar__toggle {
        display: flex;
    }

    .lp-navbar__nav.is-open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: #ffffff;
        border-bottom: 1px solid #E2E8F0;
        padding: 12px;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
        gap: 4px;
        align-items: stretch;
        justify-content: flex-start;
    }

    .lp-navbar__nav.is-open li {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .lp-section {
        padding: 64px 0;
    }

    .lp-hero {
        padding: 120px 0 64px;
    }

    .lp-hero__proof {
        gap: 20px;
    }

    .lp-hero__proof-divider {
        display: none;
    }

    .lp-cta__inner {
        flex-direction: column;
        text-align: center;
    }

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

    .lp-footer__grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .lp-footer__bottom {
        flex-direction: column;
        text-align: center;
    }

    .lp-subscribe__form {
        flex-direction: column;
        padding: 12px;
        gap: 12px;
    }

    .lp-subscribe__input {
        width: 100%;
        padding: 4px 0;
    }
}

@media (max-width: 479px) {
    .lp-hero__cta {
        flex-direction: column;
        align-items: stretch;
    }

    .lp-btn {
        justify-content: center;
    }

    .lp-stats__grid {
        grid-template-columns: 1fr;
    }

    .lp-stat-item {
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }
}

/* -----------------------------------------------
   20. Override Legacy Bootstrap Panel on Landing
   ----------------------------------------------- */
.lp-page .panel {
    display: none;
    /* replaced by lp-signal-card */
}

/* -----------------------------------------------
   21. Hero Widget Layout — Responsive Breakpoints
   ----------------------------------------------- */

/* ≤ 1280px — tighten the grid a touch */
@media (max-width: 1280px) {
    .lp-hero--with-widgets .lp-hero__inner {
        padding: 0 32px;
        gap: 36px;
        grid-template-columns: 1fr 280px;
    }
}

/* ≤ 1024px — stack hero content above widgets */
@media (max-width: 1024px) {
    .lp-hero--with-widgets .lp-hero__inner {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 24px;
        align-items: flex-start;
    }

    .lp-hero--with-widgets .lp-hero__content {
        align-items: center;
        text-align: center;
    }

    .lp-hero--with-widgets .lp-hero__badge,
    .lp-hero--with-widgets .lp-hero__title,
    .lp-hero--with-widgets .lp-hero__sub,
    .lp-hero--with-widgets .lp-hero__cta {
        text-align: center;
    }

    .lp-hero--with-widgets .lp-hero__cta {
        justify-content: center;
    }

    .lp-hero--with-widgets .lp-hero__proof {
        justify-content: center;
        width: 100%;
    }

    /* Widgets go side-by-side */
    .lp-hero__widgets {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 16px;
    }

    .lp-widget-panel {
        flex: 1 1 280px;
        min-width: 260px;
    }

    /* Market tabs center on tablet */
    .lp-market-tabs {
        justify-content: center;
    }
}

/* ≤ 768px — full mobile */
@media (max-width: 768px) {

    /* Navbar */
    .lp-navbar__nav,
    .lp-navbar__actions .lp-btn-ghost {
        display: none;
    }

    .lp-navbar__toggle {
        display: flex;
    }

    .lp-navbar__inner {
        padding: 0 16px;
    }

    /* Hero */
    .lp-hero {
        padding: 120px 0 64px;
    }

    .lp-hero--with-widgets .lp-hero__inner {
        padding: 0 16px;
        gap: 28px;
    }

    .lp-hero__title {
        font-size: clamp(28px, 8vw, 44px);
    }

    .lp-hero__sub {
        font-size: 15px;
    }

    /* Widgets stack vertically again at true mobile */
    .lp-hero__widgets {
        flex-direction: column;
    }

    .lp-widget-panel {
        width: 100%;
        flex: none;
    }

    /* Market tabs scroll horizontally */
    .lp-market-tabs {
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding-bottom: 4px;
        justify-content: flex-start;
    }

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

    .lp-market-tab {
        flex-shrink: 0;
    }

    /* About */
    .lp-about__grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    /* Blog */
    .lp-blog__grid {
        grid-template-columns: 1fr;
    }

    /* Testimonials */
    .lp-testimonials__grid {
        grid-template-columns: 1fr;
    }

    /* Sections */
    .lp-section {
        padding: 64px 0;
    }

    .lp-heading__title {
        font-size: 26px;
    }

    .lp-heading {
        margin-bottom: 36px;
    }

    .lp-tv-showcase__top {
        grid-template-columns: 1fr;
        gap: 26px;
        padding: 28px 28px 24px;
    }

    .lp-tv-showcase__brand {
        align-items: flex-start;
        padding-right: 0;
        padding-bottom: 24px;
        border-right: none;
        border-bottom: 1px solid #e2e8f0;
        text-align: left;
    }

    .lp-tv-showcase__title {
        font-size: 28px;
    }

    .lp-tv-showcase__text {
        max-width: none;
        font-size: 16px;
    }

    .lp-tv-showcase__rail {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .lp-tv-showcase__feature:nth-child(2n + 1) {
        border-left: none;
    }

    .lp-tv-showcase__feature:nth-child(n + 3) {
        border-top: 1px solid #e2e8f0;
    }

    .ne-wrap {
        padding: 84px 16px 56px;
        /* 72px navbar + 12px */
    }

    .ne-section__head--filter {
        align-items: flex-start;
    }

    .ne-country-trigger {
        min-width: 0;
    }

    .ne-country-panel {
        left: 0;
        right: auto;
        width: 100%;
    }

    .ne-trend-grid {
        grid-template-columns: 1fr 1fr;
    }

    .ne-side-list {
        grid-column: 1 / -1;
        border-left: none;
        border-top: 1px solid #eeeeee;
        padding-left: 0;
        padding-top: 16px;
    }

    .ne-hero {
        grid-template-columns: 1fr;
    }

    .ne-hero__img img {
        min-height: 260px;
    }

    .ne-picks-grid {
        grid-template-columns: 1fr;
    }

    .ne-pick-card__img {
        height: 220px;
    }
}

/* ≤ 480px */
@media (max-width: 480px) {
    .lp-hero__proof {
        gap: 16px;
    }

    .lp-hero__proof-divider {
        display: none;
    }

    /* Footer bottom flex stack */
    .lp-footer__bottom>div {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center;
        gap: 12px !important;
    }

    .lp-subscribe__form {
        flex-direction: column;
        padding: 10px;
    }

    .lp-subscribe__input {
        width: 100%;
    }

    .lp-tv-showcase {
        border-radius: 24px;
    }

    .lp-tv-showcase__top {
        padding: 24px 18px 20px;
    }

    .lp-tv-showcase__brand {
        gap: 16px;
        align-items: center;
        text-align: center;
        padding-bottom: 20px;
    }

    .lp-tv-showcase__emblem {
        display: flex;
        justify-content: center;
    }

    .lp-tv-showcase__logo {
        width: 170px;
    }

    .lp-tv-showcase__brand-name {
        font-size: 22px;
    }

    .lp-tv-showcase__title {
        font-size: 24px;
    }

    .lp-tv-showcase__rail {
        grid-template-columns: 1fr;
    }

    .lp-tv-showcase__feature,
    .lp-tv-showcase__feature:nth-child(2n + 1) {
        border-left: none;
    }

    .lp-tv-showcase__feature+.lp-tv-showcase__feature {
        border-top: 1px solid #e2e8f0;
    }

    .lp-tv-showcase__feature {
        padding: 18px;
        font-size: 15px;
    }

    .lp-ticker {
        min-height: 48px;
    }

    .lp-ticker .tradingview-widget-container__widget,
    .lp-ticker iframe {
        min-height: 48px;
    }

    .ne-trend-grid {
        grid-template-columns: 1fr;
    }

    .ne-section__head--filter {
        align-items: stretch;
        gap: 14px;
    }

    .ne-country-search {
        margin-bottom: 12px;
    }

    .ne-country-panel {
        width: calc(100vw - 32px);
        padding: 12px;
        border-radius: 20px;
    }

    .ne-country-trigger {
        width: 100%;
        justify-content: space-between;
    }

    .ne-country-option {
        align-items: flex-start;
        flex-direction: column;
        gap: 6px;
    }

    .ne-big-card__img {
        height: 180px;
    }

    .ne-section__title {
        font-size: 24px;
    }

    .ne-hero__body {
        padding: 28px 24px;
    }

}

/* -----------------------------------------------
   12. Agent-Centric Pricing (Bootstrap Refactor)
   ----------------------------------------------- */

/* -----------------------------------------------
   12. Agent-Centric Pricing (Original Cleaner Layout)
   ----------------------------------------------- */
.lp-pricing__grid--agents {
    display: grid;
    /* Increase min-width from 360 to 420 to prevent 3 columns from being too cramped in 1200px container */
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 420px), 1fr));
    gap: 30px;
    margin-top: 50px;
}

.lp-pricing-card {
    background: #fff;
    border-radius: 24px;
    padding: 0;
    position: relative;
    overflow: visible;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.05);
    width: 100%;
    min-width: 0;
}

.lp-pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.lp-pricing-card__header {
    height: 140px;
    border-radius: 24px 24px 0 0;
    position: relative;
    overflow: visible;
    z-index: 1;
}

.lp-pricing-card__header-bg {
    position: absolute;
    inset: 0;
    border-radius: 24px 24px 0 0;
    overflow: hidden;
    background-color: color-mix(in srgb, var(--brand-color) 8%, transparent);
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.lp-pricing-card__header-bg--blurred::after {
    content: '';
    position: absolute;
    inset: -5%;
    width: 110%;
    height: 110%;
    background: inherit;
    filter: blur(8px) brightness(0.9);
}

.lp-pricing-card__profile-wrap {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #fff;
    padding: 5px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    z-index: 20;
}

.lp-pricing-card__profile-wrap img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.lp-pricing-card__rating {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    color: #FACC15;
    display: flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    z-index: 21;
}

.lp-pricing-card__body {
    padding: 70px 25px 25px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex-grow: 1;
}

.lp-pricing-card__title-area {
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.lp-pricing-card__agent-name {
    font-size: 20px;
    font-weight: 800;
    color: #1E293B;
    margin-bottom: 4px;
    line-height: 1.3;
}

.lp-pricing-card__plan-tag {
    font-size: 12px;
    font-weight: 700;
    color: var(--brand-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.lp-pricing-card__content-grid {
    display: grid;
    grid-template-columns: 1fr 140px;
    gap: 20px;
}

/* Higher breakpoint to stack internal grid if card starts getting cramped */
@media (max-width: 1100px) {
    .lp-pricing-card__content-grid {
        grid-template-columns: 1fr;
    }

    .lp-pricing-card__sidebar {
        border-left: none !important;
        border-top: 1px solid rgba(0, 0, 0, 0.05);
        padding-left: 0 !important;
        padding-top: 15px;
    }
}

.lp-pricing-card__main-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.lp-pricing-card__sec-title {
    font-size: 11px;
    font-weight: 800;
    color: #64748B;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    display: block;
}

.lp-pricing-card__desc {
    font-size: 13px;
    color: #64748B;
    line-height: 1.6;
    margin-bottom: 15px;
}

.lp-pricing-card__metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

@media (max-width: 380px) {
    .lp-pricing-card__metrics {
        grid-template-columns: repeat(2, 1fr);
    }
}

.lp-pricing-metric-box {
    background: #F8FAFC;
    border: 1px solid #F1F5F9;
    border-radius: 12px;
    padding: 10px;
    text-align: center;
}

.lp-pricing-metric-box__val {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: #1E293B;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.lp-pricing-metric-box__label {
    font-size: 9px;
    font-weight: 600;
    color: #94A3B8;
    text-transform: uppercase;
}

.lp-pricing-card__sidebar {
    border-left: 1px solid rgba(0, 0, 0, 0.05);
    padding-left: 15px;
}

.lp-pricing-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.lp-pricing-feature-list li {
    font-size: 11px;
    color: #475569;
    font-weight: 600;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.lp-pricing-feature-list li svg {
    color: var(--brand-color);
    flex-shrink: 0;
}

.lp-pricing-card__price-row {
    margin-top: auto;
    padding-top: 25px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.lp-pricing-card__price-val {
    font-size: 24px;
    font-weight: 800;
    color: #1E293B;
}

.lp-pricing-card__cta-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.lp-pricing-card__cta {
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
}

.lp-pricing-card__cta--primary {
    background-color: var(--brand-color) !important;
    color: #fff !important;
    border: none;
    box-shadow: 0 4px 15px color-mix(in srgb, var(--brand-color) 25%, transparent);
}

.lp-pricing-card__cta--primary:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
}

.lp-pricing-card__cta--outline {
    background-color: transparent !important;
    color: var(--brand-color) !important;
    border: 2px solid var(--brand-color) !important;
}

.lp-pricing-card__cta--outline:hover {
    background-color: color-mix(in srgb, var(--brand-color) 8%, transparent) !important;
    transform: translateY(-2px);
}

.lp-pricing-read-more {
    color: var(--brand-color);
    font-weight: 700;
    cursor: pointer;
    font-size: 12px;
    margin-left: 5px;
    border: none;
    background: none;
    padding: 0;
}

.lp-pricing-card__footer {
    padding: 20px 25px;
    background: #F8FAFC;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 0 0 24px 24px;
}

.lp-pricing-review-box {
    font-style: italic;
    font-size: 12px;
    color: #64748B;
    line-height: 1.5;
}

.lp-agent-profile-avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: color-mix(in srgb, var(--brand-color) 10%, transparent);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-color);
    font-weight: 800;
    font-size: 32px;
    border: 5px solid #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Responsiveness */
@media (max-width: 640px) {
    .lp-pricing__grid--agents {
        grid-template-columns: 1fr;
        padding: 0 10px;
    }

    .lp-pricing-card__content-grid {
        grid-template-columns: 1fr;
    }

    .lp-pricing-card__sidebar {
        border-left: none;
        border-top: 1px solid rgba(0, 0, 0, 0.05);
        padding-left: 0;
        padding-top: 15px;
    }

    .lp-pricing-card__cta-group {
        grid-template-columns: 1fr;
    }
}

/* Add specialized container for ultra-wide to match modern aesthetic if needed */
@media (min-width: 1600px) {
    .lp-container--wide {
        max-width: 1400px;
    }
}

/* -----------------------------------------------
   12. Broker Carousel Section
   ----------------------------------------------- */
.lp-brokers {
    background: #ffffff;
    border-top: 1px solid #F1F5F9;
    padding-top: 96px;
    padding-bottom: 96px;
}

.lp-broker-filters {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.lp-broker-filter-btn {
    padding: 8px 18px;
    border-radius: 40px;
    font-size: 14px;
    font-weight: 600;
    background: #F1F5F9;
    color: #475569;
    border: none;
    cursor: pointer;
    transition: all 0.25s ease;
}

.lp-broker-filter-btn:hover {
    background: #E2E8F0;
    color: #0F172A;
}

.lp-broker-filter-btn.is-active {
    background: var(--brand-color, #3B82F6);
    color: #ffffff;
    box-shadow: 0 4px 12px color-mix(in srgb, var(--brand-color, #3B82F6) 25%, transparent);
}

.lp-broker-carousel-wrapper {
    position: relative;
    padding: 0 40px;
    overflow: hidden;
}

.lp-broker-carousel {
    display: flex;
    overflow: hidden;
    /* Changed from overflow-x: auto to hide scrollbar for infinite logic */
    padding: 24px 4px 40px;
    position: relative;
}

.lp-broker-carousel-track {
    display: flex;
    gap: 32px;
    will-change: transform;
    transition: transform 0.5s cubic-bezier(0.2, 0, 0.2, 1);
}

.lp-broker-card {
    flex: 0 0 380px;
    /* Increased from 280px */
    background: #ffffff;
    border: 1px solid #E2E8F0;
    border-radius: 20px;
    /* Slightly more rounded */
    padding: 32px;
    /* Increased from 24px */
    position: relative;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.lp-broker-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
    border-color: color-mix(in srgb, var(--brand-color, #3B82F6) 40%, transparent);
}

.lp-broker-card.is-hidden {
    display: none;
}

.lp-broker-card__logo {
    height: 80px;
    /* Increased from 64px */
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.lp-broker-card__logo img {
    max-height: 100%;
    max-width: 200px;
    /* Increased from 160px */
    object-fit: contain;
}

.lp-broker-card__info {
    flex: 1;
}

.lp-broker-card__name {
    font-size: 20px;
    /* Increased from 17px */
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 8px;
}

.lp-broker-card__desc {
    font-size: 14px;
    color: #64748B;
    line-height: 1.6;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.lp-broker-card__countries {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}

.lp-broker-tag {
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    background: #F1F5F9;
    color: #64748B;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.lp-broker-card__link {
    position: absolute;
    top: 20px;
    right: 20px;
    color: #94A3B8;
    transition: color 0.2s ease;
}

.lp-broker-card__link:hover {
    color: var(--brand-color, #3B82F6);
}

.lp-broker-carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    background: #ffffff;
    border: 1px solid #E2E8F0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 20;
    color: #64748B;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.lp-broker-carousel-nav:hover {
    background: var(--brand-color, #3B82F6);
    color: #ffffff;
    border-color: var(--brand-color, #3B82F6);
    transform: translateY(-50%) scale(1.05);
}

.lp-broker-carousel-nav--prev {
    left: 10px;
}

.lp-broker-carousel-nav--next {
    right: 10px;
}

.lp-broker-carousel-progress {
    width: 120px;
    height: 3px;
    background: #F1F5F9;
    border-radius: 10px;
    margin: 32px auto 0;
    overflow: hidden;
    position: relative;
    opacity: 0.6;
}

.lp-broker-carousel-progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: var(--brand-color, #3B82F6);
    width: 40%;
    border-radius: 10px;
    animation: infinite-progress 3s ease-in-out infinite;
}

@keyframes infinite-progress {
    0% {
        left: -40%;
    }

    100% {
        left: 100%;
    }
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .lp-broker-carousel-wrapper {
        padding: 0 15px;
    }

    .lp-broker-carousel-nav {
        display: none;
    }

    .lp-broker-card {
        flex: 0 0 280px;
        padding: 24px;
    }

    .lp-broker-card__logo {
        height: 60px;
    }
}