/* ===== HOME V6 STYLES — scoped to .hv6 ===== */
.hv6 *, .hv6 *::before, .hv6 *::after { box-sizing: border-box; }

.hv6 {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
    background: #fff;
    color: #141f2a;
    overflow-x: hidden;
}

/* CSS Variables */
.hv6 {
    --navy: #08213a;
    --navy-mid: #0c2a48;
    --navy-light: #0e3257;
    --teal: #FCC625;
    --teal-dark: #00937a;
    --yellow-dark: #FCC625;
    --yellow-bright: #F98304;
    --teal-glow: rgba(157, 201, 0, 0.12);
    --teal-glow-strong: rgba(250, 167, 4, 0.22);
    --ink: #141f2a;
    --ink-mid: #2c3e50;
    --muted: #5e6f8d;
    --muted-light: #8a9bb5;
    --gain: #00a882;
    --loss: #d85a30;
    --border-light: #eff2f8;
    --border-mid: #dde3ee;
    --surface: #f6f9fd;
    --number-color: #d97706;
    --shadow-sm: 0 1px 3px rgba(8,33,58,0.05),0 2px 6px rgba(8,33,58,0.03);
    --shadow-md: 0 8px 32px rgba(8,33,58,0.08),0 2px 8px rgba(8,33,58,0.04);
    --shadow-lg: 0 20px 60px rgba(8,33,58,0.12),0 4px 16px rgba(8,33,58,0.06);
    --shadow-teal: 0 8px 32px rgba(0,201,167,0.25);
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
}

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

/* ---- Typography ---- */
.hv6 h1, .hv6 h2, .hv6 h3 { font-weight: 700; letter-spacing: -0.025em; margin: 0; }
.hv6 h1 { font-size: clamp(2rem, 5.5vw, 3rem); line-height: 1.15; }
.hv6 h2 { font-size: clamp(1.4rem, 3vw, 2rem); line-height: 1.3; margin-bottom: 0.75rem; }
.hv6 h3 { font-size: 1.05rem; line-height: 1.4; }
.hv6 .text-muted-v6 { color: var(--muted); font-size: 0.95rem; }
.hv6 .text-teal { color: var(--teal); }
.hv6 .section-label {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em;
    text-transform: uppercase; color: var(--yellow-dark); margin-bottom: 16px;
}
.hv6 .section-label::before {
    content: ""; display: block; width: 18px; height: 2px;
    background: var(--teal); border-radius: 2px;
}

/* ---- Buttons ---- */
.hv6 .btn-v6 {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 13px 28px; border-radius: 100px; font-weight: 600;
    text-decoration: none; transition: all 0.25s cubic-bezier(0.34,1.56,0.64,1);
    cursor: pointer; border: none; font-size: 0.9rem;
    font-family: inherit; letter-spacing: -0.01em;
    position: relative; overflow: hidden;
}
.hv6 .btn-v6::after {
    content: ""; position: absolute; inset: 0;
    background: rgba(255,255,255,0); transition: background 0.2s;
}
.hv6 .btn-v6:hover::after { background: rgba(255,255,255,0.1); }
.hv6 .btn-primary-v6 {
    background: var(--teal); color: var(--navy);
    box-shadow: 0 4px 16px rgba(0,201,167,0.3);
}
.hv6 .btn-primary-v6:hover {
    background: var(--teal-dark); color: var(--navy);
    transform: translateY(-2px) scale(1.02);
    box-shadow: var(--shadow-teal); text-decoration: none;
}
.hv6 .btn-outline-v6 {
    background: white; border: 1.5px solid var(--border-mid);
    color: var(--ink-mid); box-shadow: var(--shadow-sm);
}
.hv6 .btn-outline-v6:hover {
    border-color: var(--teal); color: var(--teal-dark);
    transform: translateY(-2px); box-shadow: var(--shadow-md); text-decoration: none;
}

/* ---- Ticker Band ---- */
.hv6 .ticker-band {
    background: var(--navy); color: rgba(255,255,255,0.9);
    height: 36px; overflow: hidden;
    display: flex; align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.06); z-index: 1001;
}
.hv6 .ticker-band-inner {
    display: flex; align-items: center;
    white-space: nowrap;
    animation: hv6TickerScroll 38s linear infinite;
    will-change: transform;
}
.hv6 .ticker-band:hover .ticker-band-inner { animation-play-state: paused; }
@keyframes hv6TickerScroll {
    0%  { transform: translateX(0); }
    100%{ transform: translateX(-50%); }
}
.hv6 .ticker-item {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 0 28px; font-size: 0.72rem; font-weight: 600;
    letter-spacing: 0.01em;
    border-right: 1px solid rgba(255,255,255,0.1);
}
.hv6 .ticker-item-code { font-weight: 800; font-size: 0.75rem; color: rgba(255,255,255,0.95); letter-spacing: 0.03em; }
.hv6 .ticker-item-price { color: var(--number-color); font-weight: 700; }
.hv6 .ticker-item-change.up   { color: #3dd9b3; }
.hv6 .ticker-item-change.down { color: #f4826a; }
.hv6 .ticker-separator { display: inline-block; width: 4px; height: 4px; border-radius: 50%; background: rgba(255,255,255,0.2); margin: 0 4px; }

/* ---- Hero Pro ---- */
.hv6 .hero-pro {
    position: relative; overflow: hidden;
    padding: 40px 0 56px;
    background:
        radial-gradient(ellipse 55% 60% at 5% 95%, rgba(0,201,167,.08) 0%, transparent 60%),
        radial-gradient(ellipse 70% 55% at 92% 5%, rgba(0,201,167,.06) 0%, transparent 55%),
        linear-gradient(180deg, #f5f9fc 0%, #ffffff 100%);
}
.hv6 .hero-pro__bg { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.hv6 .hero-pro__grid {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(10,22,40,.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(10,22,40,.04) 1px, transparent 1px);
    background-size: 48px 48px;
    background-color: #0F2030;
    /* -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, #000 20%, transparent 80%);
            mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, #000 20%, transparent 80%); */
}
.hv6 .hero-pro__blob { position: absolute; border-radius: 50%; filter: blur(90px); }
.hv6 .hero-pro__blob--teal { width: 560px; height: 560px; background: #00c9a7; top: -180px; right: -140px; opacity: .12; }
.hv6 .hero-pro__blob--navy { width: 380px; height: 380px; background: #1e3a5f; bottom: -140px; left: -80px; opacity: .08; }
.hv6 .hero-pro__grid-layout {
    display: grid; grid-template-columns: 1fr;
    gap: 0; align-items: start; position: relative; z-index: 2;
}
.hv6 .hero-pro__eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 7px 16px; border-radius: 999px;
    background: rgba(232, 255, 251, 0.1); border: 1px solid rgba(218, 255, 249, 0.3);
    color: rgb(224, 224, 224); font-size: 12px; font-weight: 700;
    letter-spacing: .06em; text-transform: uppercase;
    animation: heroProFade .7s ease-out both;
}
.hv6 .hero-pro__dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: #e1e1e1; animation: heroProPulse 1.8s ease-in-out infinite;
}
.hv6 .hero-pro__title {
    margin: 16px 0 0; font-size: clamp(1.75rem, 6vw, 3rem);
    line-height: 1.1; letter-spacing: -.03em; color: #ffffff;
    animation: heroProUp .8s .05s ease-out both;
}
.hv6 .hero-pro__accent { color: #FCC625; }
.hv6 .hero-pro__subtitle {
    margin: 20px 0 0; max-width: 500px;
    font-size: 1rem; line-height: 1.7; color: #c7ced8;
    animation: heroProUp .8s .15s ease-out both;
}
.hv6 .hero-pro__cta {
    display: flex; flex-direction: column; align-items: stretch; gap: 12px;
    margin-top: 24px; animation: heroProUp .8s .25s ease-out both;
}
.hv6 .hero-pro__btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 14px 26px; border-radius: 12px;
    font-size: 15px; font-weight: 600; text-decoration: none;
    transition: transform .2s ease, box-shadow .25s ease, background .2s;
    cursor: pointer; border: none; font-family: inherit;
}
.hv6 .hero-pro__btn--primary {
    background: linear-gradient(135deg, #FCC625 0%, #FCC625 100%);
    color: #0a1628; box-shadow: 0 10px 28px -8px rgba(252,198,37,.55);
}
.hv6 .hero-pro__btn--primary:hover { transform: translateY(-2px); box-shadow: 0 16px 36px -8px rgba(252,198,37,.7); text-decoration: none; color: #0a1628; }
.hv6 .hero-pro__btn--ghost {
    background: rgba(255,255,255,.8); backdrop-filter: blur(10px);
    color: #0a1628; border: 1.5px solid rgba(10,22,40,.14);
}
.hv6 .hero-pro__btn--ghost:hover { background: #fff; border-color: rgba(10,22,40,.25); transform: translateY(-1px); text-decoration: none; color: #0a1628; }
.hv6 .hero-pro__trust {
    display: flex; align-items: center; flex-wrap: wrap; gap: 12px;
    margin-top: 24px; animation: heroProUp .8s .35s ease-out both;
}
.hv6 .hero-pro__avatars { display: flex; }
.hv6 .hero-pro__avatar {
    width: 34px; height: 34px; border-radius: 50%;
    border: 2.5px solid #fff; margin-left: -8px;
    display: grid; place-items: center;
    color: #fff; font-size: 10px; font-weight: 700;
    box-shadow: 0 2px 6px rgba(10,22,40,.12);
}
.hv6 .hero-pro__avatar:first-child { margin-left: 0; }
.hv6 .hero-pro__trust-text { font-size: 13px; color: #cad4e2; line-height: 1.4; }
.hv6 .hero-pro__trust-text strong { color: #ffffff; font-weight: 700; }

/* Visual panel */
.hv6 .hero-pro__visual {
    position: relative; animation: heroProUp .9s .2s ease-out both;
    display: none; flex-direction: column; gap: 16px;
}
/* Dark dashboard card */
.hv6 .hi-dashboard {
    background: linear-gradient(145deg, #f7f8f9 0%, #ffffff 60%, #FFFFFF 100%);
    border-radius: 24px; padding: 0;
    box-shadow: 0 40px 80px -20px rgba(8,20,40,.55), 0 0 0 1px rgba(255,255,255,.07) inset, 0 1px 0 rgba(255,255,255,.12) inset;
    position: relative; overflow: hidden;
}
.hv6 .hi-dashboard::before {
    content: ''; position: absolute; top: -80px; right: -80px;
    width: 260px; height: 260px; border-radius: 50%;
    background: radial-gradient(circle, rgba(0,201,167,.18) 0%, transparent 65%);
    pointer-events: none;
}
.hv6 .hi-dashboard::after {
    content: ''; position: absolute; bottom: -60px; left: -40px;
    width: 180px; height: 180px; border-radius: 50%;
    background: radial-gradient(circle, rgba(227, 238, 248, 0.6) 0%, transparent 70%);
    pointer-events: none;
}
.hv6 .hi-topbar {
    display: flex; align-items: center; justify-content: space-between;
    padding: 16px 22px 12px; border-bottom: 1px solid rgba(0,0,0,.07);
}
.hv6 .hi-topbar-left { display: flex; align-items: center; gap: 10px; }
.hv6 .hi-topbar-dots { display: flex; gap: 6px; }
.hv6 .hi-topbar-dots span { width: 9px; height: 9px; border-radius: 50%; }
.hv6 .hi-topbar-dots span:nth-child(1) { background: #ff5f57; }
.hv6 .hi-topbar-dots span:nth-child(2) { background: #febc2e; }
.hv6 .hi-topbar-dots span:nth-child(3) { background: #28c840; }
.hv6 .hi-topbar-title { font-size: 11px; font-weight: 600; color: rgba(0, 0, 0, 0.4); letter-spacing: .04em; }
.hv6 .hi-live-pill {
    display: flex; align-items: center; gap: 5px;
    background: rgba(0,201,167,.12); border: 1px solid rgba(0,201,167,.25);
    border-radius: 999px; padding: 3px 10px;
    font-size: 10px; font-weight: 700; color: #00c9a7; letter-spacing: .06em;
}
.hv6 .hi-live-dot { width: 5px; height: 5px; border-radius: 50%; background: #00c9a7; animation: heroProPulse 1.8s ease-in-out infinite; }
.hv6 .hi-stats-row {
    display: grid; grid-template-columns: repeat(3,1fr);
    border-bottom: 1px solid rgba(255,255,255,.07);
}
.hv6 .hi-stat { padding: 16px 18px; border-right: 1px solid rgba(255,255,255,.07); }
.hv6 .hi-stat:last-child { border-right: none; }
.hv6 .hi-stat-label { font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: .09em; color: rgba(0, 0, 0, 0.35); margin-bottom: 6px; }
.hv6 .hi-stat-val { font-size: 20px; font-weight: 900; letter-spacing: -.04em; color: #000000; }
.hv6 .hi-stat-val--teal { color: #070707; }
.hv6 .hi-stat-val--amber { color: #f59e0b; }
.hv6 .hi-stat-change { display: inline-flex; align-items: center; gap: 3px; margin-top: 4px; font-size: 10px; font-weight: 700; color: #050505; }
.hv6 .hi-stat-change--loss { color: #f87171; }
.hv6 .hi-chart-area { padding: 18px 22px 6px; position: relative; }
.hv6 .hi-chart-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.hv6 .hi-chart-title { font-size: 11px; font-weight: 700; color: rgba(0,0,0,.5); text-transform: uppercase; letter-spacing: .07em; }
.hv6 .hi-chart-legend { display: flex; gap: 14px; }
.hv6 .hi-legend-item { display: flex; align-items: center; gap: 5px; font-size: 9px; font-weight: 600; color: rgba(0,0,0,.4); }
.hv6 .hi-legend-line { width: 16px; height: 2px; border-radius: 2px; }
.hv6 .hi-legend-line--teal { background: #00c9a7; }
.hv6 .hi-legend-line--grey { background: rgba(0,0,0,.25); }
.hv6 .hi-area-veye { fill: url(#hiGradVeye); stroke: none; animation: hiFadeIn 1.2s .6s ease-out both; }
.hv6 .hi-line-veye { stroke: #00c9a7; stroke-width: 2; fill: none; stroke-dasharray: 700; stroke-dashoffset: 700; animation: hiDrawLine 2s .5s ease-out forwards; stroke-linecap: round; stroke-linejoin: round; }
.hv6 .hi-line-market { stroke: rgba(0,0,0,.25); stroke-width: 1.5; fill: none; stroke-dasharray: 600; stroke-dashoffset: 600; animation: hiDrawLine 2s .8s ease-out forwards; stroke-linecap: round; stroke-linejoin: round; }
.hv6 .hi-co-badge {
    width: 38px; height: 38px; border-radius: 10px;
    background: rgba(0,201,167,.15); border: 1px solid rgba(0,201,167,.25);
    display: flex; align-items: center; justify-content: center;
    font-size: 9px; font-weight: 900; color: #00c9a7;
    letter-spacing: .04em; flex-shrink: 0;
}
.hv6 .hi-area-stock { fill: url(#hiGradStock); animation: hiFadeIn 1s .5s ease-out both; }
.hv6 .hi-line-stock {
    stroke: #00c9a7; stroke-width: 2; fill: none;
    stroke-dasharray: 800; stroke-dashoffset: 800;
    animation: hiDrawLine 2.2s .4s ease-out forwards;
    stroke-linecap: round; stroke-linejoin: round;
}
.hv6 .hi-chip {
    position: absolute; background: rgba(255,255,255,.96);
    border-radius: 12px; padding: 9px 13px;
    box-shadow: 0 8px 28px -6px rgba(8,20,40,.35);
    border: 1px solid rgba(10,22,40,.08);
    animation: heroProFloat 5s ease-in-out infinite;
}
.hv6 .hi-chip:nth-child(2) { animation-delay: -1.5s; }
.hv6 .hi-chip:nth-child(3) { animation-delay: -3s; }
.hv6 .hi-chip-label { font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: #8899b0; margin-bottom: 3px; }
.hv6 .hi-chip-val { font-size: 16px; font-weight: 900; color: #0a1628; letter-spacing: -.03em; }
.hv6 .hi-chip-badge { display: inline-flex; align-items: center; gap: 3px; margin-top: 3px; background: rgba(0,201,167,.13); color: #00937a; border-radius: 999px; padding: 2px 7px; font-size: 10px; font-weight: 700; }
.hv6 .hi-chip-badge--loss { background: rgba(248,113,113,.13); color: #dc2626; }
.hv6 .hi-chip-badge--amber { background: rgba(245,158,11,.13); color: #b45309; }
.hv6 .hi-tickers-row { display: flex; gap: 6px; padding: 12px 22px 18px; overflow: hidden; }
.hv6 .hi-ticker-chip { display: flex; align-items: center; gap: 8px; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.09); border-radius: 10px; padding: 8px 12px; flex-shrink: 0; }
.hv6 .hi-ticker-sym { font-size: 11px; font-weight: 800; color: #fff; }
.hv6 .hi-ticker-price { font-size: 10px; color: rgba(255,255,255,.45); margin-top: 1px; }
.hv6 .hi-ticker-gain { font-size: 10px; font-weight: 700; }
.hv6 .hi-ticker-gain--up { color: #00c9a7; }
.hv6 .hi-ticker-gain--dn { color: #f87171; }
/* Allocation card */
.hv6 .hi-alloc-card {
    background: #fff; border-radius: 20px; padding: 18px 20px;
    box-shadow: 0 12px 40px -12px rgba(8,20,40,.14), 0 1px 0 rgba(10,22,40,.06);
    border: 1px solid #eaf0f8;
    display: grid; grid-template-columns: auto 1fr;
    gap: 20px; align-items: center;
    animation: heroProUp 1s .4s ease-out both; position: relative; overflow: hidden;
}
.hv6 .hi-alloc-card::before {
    content: ''; position: absolute; top: -30px; right: -30px;
    width: 100px; height: 100px; border-radius: 50%;
    background: radial-gradient(circle, rgba(0,201,167,.08) 0%, transparent 70%);
    pointer-events: none;
}
.hv6 .hi-donut-wrap { position: relative; width: 88px; height: 88px; flex-shrink: 0; }
.hv6 .hi-donut-center { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.hv6 .hi-donut-val { font-size: 16px; font-weight: 900; color: #0a1628; letter-spacing: -.03em; line-height: 1; }
.hv6 .hi-donut-lbl { font-size: 8px; font-weight: 700; color: #8899b0; text-transform: uppercase; letter-spacing: .06em; margin-top: 2px; }
.hv6 .hi-alloc-right-title { font-size: 11px; font-weight: 700; color: #0a1628; margin-bottom: 10px; }
.hv6 .hi-alloc-bars { display: flex; flex-direction: column; gap: 7px; }
.hv6 .hi-alloc-bar-row { display: flex; align-items: center; gap: 8px; }
.hv6 .hi-alloc-bar-label { font-size: 10px; font-weight: 600; color: #5e6f8d; width: 60px; flex-shrink: 0; }
.hv6 .hi-alloc-bar-track { flex: 1; height: 6px; background: #f0f4fb; border-radius: 99px; overflow: hidden; }
.hv6 .hi-alloc-bar-fill { height: 100%; border-radius: 99px; animation: hiBarGrow .8s ease-out both; transform-origin: left; }
.hv6 .hi-alloc-pct { font-size: 10px; font-weight: 700; color: #0a1628; width: 28px; text-align: right; flex-shrink: 0; }

/* ---- Stats Ribbon ---- */
.hv6 .stats-wrap { padding: 48px 0 0; }
.hv6 .stats-ribbon {
    display: grid; grid-template-columns: repeat(4,1fr);
    border: 1px solid var(--border-light); border-radius: var(--radius-lg);
    overflow: hidden; background: white; box-shadow: var(--shadow-sm);
}
.hv6 .stat-item {
    padding: 28px 22px; text-align: center;
    border-right: 1px solid var(--border-light);
    transition: background 0.2s;
}
.hv6 .stat-item:last-child { border-right: none; }
.hv6 .stat-item:hover { background: var(--teal-glow); }
.hv6 .stat-item h3 { font-size: 1.9rem; font-weight: 900; color: #3b5998; letter-spacing: -0.04em; margin-bottom: 6px; }
.hv6 .stat-item p { font-size: 0.78rem; color: var(--muted); font-weight: 500; }

/* ---- Performance section ---- */
.hv6 .section-head { text-align: center; margin-bottom: 36px; }
.hv6 .section-head h2 { margin-bottom: 8px; }

.hv6 .trade-table-wrap {
    background: white; border: 1px solid var(--border-light);
    border-radius: var(--radius-lg); overflow: hidden;
    box-shadow: var(--shadow-sm);
}
.hv6 .trade-table-container { overflow-x: auto; }
.hv6 .trade-table { width: 100%; border-collapse: collapse; font-size: 0.875rem; }
.hv6 .trade-table thead tr { background: var(--navy); }
.hv6 .trade-table thead th {
    padding: 14px 20px; text-align: left; font-size: 0.68rem;
    font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
    color: rgba(255,255,255,0.6); white-space: nowrap;
}
.hv6 .trade-row { border-bottom: 1px solid var(--border-light); transition: background 0.15s; }
.hv6 .trade-row:last-child { border-bottom: none; }
.hv6 .trade-row:hover { background: rgba(217,119,6,0.03); }
.hv6 .trade-row td { padding: 15px 20px; vertical-align: middle; }
.hv6 .trade-co-name { font-weight: 600; color: var(--ink); font-size: 0.875rem; }
.hv6 .trade-co-code { font-size: 0.68rem; color: var(--muted); font-weight: 600; margin-top: 1px; letter-spacing: 0.04em; }
.hv6 .trade-price { font-weight: 600; color: var(--ink-mid); }
.hv6 .trade-gain { font-weight: 800; font-size: 0.95rem; letter-spacing: -0.02em; }
.hv6 .trade-gain.positive { color: var(--gain); }
.hv6 .trade-gain.negative { color: var(--loss); }
.hv6 .trade-disclaimer {
    display: flex; align-items: flex-start; gap: 8px;
    padding: 14px 22px; background: var(--surface);
    border-top: 1px solid var(--border-light);
    font-size: 0.72rem; color: var(--muted); line-height: 1.55;
}
.hv6 .disclaimer-v6 { font-size: 0.68rem; text-align: center; color: var(--muted-light); margin-top: -4px; margin-bottom: 48px; }

/* ---- All-News 6-Column Grid ---- */
.hv6 .all-news-section { padding: 64px 0 72px; background: var(--surface); }
.hv6 .all-news-grid {
    display: grid; grid-template-columns: repeat(4,1fr);
    border: 1px solid var(--border-light); border-radius: var(--radius-xl);
    overflow: hidden; background: white; box-shadow: var(--shadow-md);
}
.hv6 .news-col { display: flex; flex-direction: column; border-right: 1px solid var(--border-light); min-width: 0; }
.hv6 .news-col:last-child { border-right: none; }
.hv6 .news-col-header { display: flex; align-items: center; gap: 8px; padding: 14px 12px 12px; border-bottom: 2px solid var(--border-light); }
.hv6 .news-col-header--analysis { border-bottom-color: var(--teal); }
.hv6 .news-col-header--mining    { border-bottom-color: #d97706; }
.hv6 .news-col-header--dividend  { border-bottom-color: #059669; }
.hv6 .news-col-header--etf       { border-bottom-color: #6366f1; }
.hv6 .news-col-header--trending  { border-bottom-color: #ef4444; }
.hv6 .news-col-header--52w       { border-bottom-color: #8b5cf6; }
.hv6 .news-col-icon { font-size: 1.05rem; line-height: 1; flex-shrink: 0; }
.hv6 .news-col-label { font-size: 0.52rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); margin-bottom: 1px; }
.hv6 .news-col-title { font-size: 0.95rem; font-weight: 800; color: var(--ink); line-height: 1.2; letter-spacing: -0.02em; margin: 0; }
.hv6 .news-col-desc { font-size: 0.68rem; color: var(--muted); line-height: 1.55; padding: 9px 12px 10px; border-bottom: 1px solid var(--border-light); }
.hv6 .news-col-items { flex: 1; display: flex; flex-direction: column; }
.hv6 .news-col-item {
    display: flex; flex-direction: column; text-decoration: none;
    color: inherit; border-bottom: 1px solid var(--border-light);
    transition: background 0.18s; cursor: pointer;
}
.hv6 .news-col-item:last-child { border-bottom: none; }
.hv6 .news-col-item:hover { background: var(--teal-glow); }
.hv6 .news-col-img { width: 100%; height: 90px; object-fit: cover; display: block; border-bottom: 1px solid var(--border-light); flex-shrink: 0; }
.hv6 .news-col-item-body { padding: 10px 12px 12px; display: flex; flex-direction: column; gap: 4px; }
.hv6 .news-col-item-body--text { padding: 10px 12px 12px; }
.hv6 .news-col-tag { font-size: 0.56rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; }
.hv6 .news-col-headline { font-size: 0.93rem; font-weight: 600; color: var(--ink); line-height: 1.45; margin: 0; }
.hv6 .news-col-item:hover .news-col-headline { color: var(--teal-dark); }
.hv6 .news-col-date { font-size: 0.72rem; color: var(--muted-light); }
.hv6 .news-col-more {
    display: block; text-align: center; padding: 10px 12px;
    font-size: 0.7rem; font-weight: 700; color: var(--teal-dark);
    text-decoration: none; border-top: 1px solid var(--border-light);
    background: var(--surface); transition: background 0.18s, color 0.18s;
    margin-top: auto;
}
.hv6 .news-col-more:hover { background: var(--teal-glow); color: var(--navy); }

/* ---- Newsletter CTA ---- */
.hv6 .newsletter-cta-section { padding: 16px 0 40px; }
.hv6 .newsletter-cta-wrap {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    border-radius: var(--radius-xl); padding: 36px 40px;
    position: relative; overflow: hidden;
}
.hv6 .newsletter-cta-wrap::before {
    content: ""; position: absolute; top: -60px; right: -60px;
    width: 220px; height: 220px; border-radius: 50%;
    background: radial-gradient(circle, rgba(0,201,167,0.1) 0%, transparent 70%);
    pointer-events: none;
}
.hv6 .newsletter-cta-inner { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.hv6 .newsletter-cta-icon { font-size: 2rem; flex-shrink: 0; }
.hv6 .newsletter-cta-inner > div:nth-child(2) { flex: 1; min-width: 180px; }
.hv6 .newsletter-cta-inner h3 { color: white; font-size: 1.05rem; margin-bottom: 4px; }
.hv6 .newsletter-cta-inner p { color: rgba(255,255,255,0.65); font-size: 0.82rem; }
.hv6 .newsletter-cta-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.hv6 .newsletter-input {
    padding: 11px 16px; border-radius: 100px; border: none;
    font-family: inherit; font-size: 0.875rem;
    width: 220px; outline: none;
    background: rgba(255,255,255,0.12); color: white;
    border: 1.5px solid rgba(255,255,255,0.2);
}
.hv6 .newsletter-input::placeholder { color: rgba(255,255,255,0.45); }
.hv6 .newsletter-input:focus { border-color: var(--teal); background: rgba(255,255,255,0.18); }

/* ---- Tools CTA ---- */
.hv6 .tools-cta-section { padding: 16px 0 56px; }
.hv6 .tools-cta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.hv6 .tools-cta-card {
    display: flex; gap: 20px; align-items: flex-start;
    background: white; border: 1px solid var(--border-light);
    border-radius: var(--radius-lg); padding: 28px;
    text-decoration: none; color: inherit;
    transition: all 0.25s ease; position: relative; overflow: hidden;
}
.hv6 .tools-cta-card::before {
    content: ""; position: absolute; top: 0; left: 0; right: 0;
    height: 3px; background: var(--teal);
    transform: scaleX(0); transform-origin: left; transition: transform 0.3s ease;
}
.hv6 .tools-cta-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.hv6 .tools-cta-card:hover::before { transform: scaleX(1); }
.hv6 .tools-cta-icon-wrap {
    border-radius: var(--radius-md); overflow: hidden;
    flex-shrink: 0; display: flex;
    align-items: center; justify-content: center;
}
.hv6 .tools-cta-icon-wrap img {
    width: 100px; height: 100px;
    object-fit: cover; border-radius: var(--radius-md);
    display: block;
}
.hv6 .tools-cta-body h3 { font-size: 1rem; margin-bottom: 8px; }
.hv6 .tools-cta-body p { font-size: 0.83rem; color: var(--muted); line-height: 1.6; margin-bottom: 12px; }
.hv6 .tools-cta-link { font-size: 0.83rem; font-weight: 600; color: var(--teal-dark); }

/* ---- Pricing ---- */
.hv6 .pricing-section { padding: 16px 0 64px; background: var(--surface); }
.hv6 .pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; align-items: stretch; }
.hv6 .pricing-card {
    background: white; border: 1px solid var(--border-light);
    border-radius: var(--radius-lg); padding: 32px 28px;
    display: flex; flex-direction: column;
    position: relative; transition: all 0.25s ease;
}
.hv6 .pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.hv6 .pricing-card-featured { background: var(--navy); border-color: var(--navy); box-shadow: var(--shadow-lg); }
.hv6 .pricing-most-valuable {
    position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
    background: var(--teal); color: var(--navy);
    font-size: 0.62rem; font-weight: 800; text-transform: uppercase;
    letter-spacing: 0.08em; padding: 4px 14px;
    border-radius: 100px; white-space: nowrap;
}
.hv6 .pricing-card-header { margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid var(--border-light); }
.hv6 .pricing-card-featured .pricing-card-header { border-bottom-color: rgba(255,255,255,0.1); }
.hv6 .pricing-plan-name { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); margin-bottom: 8px; }
.hv6 .pricing-card-featured .pricing-plan-name { color: rgba(255,255,255,0.5); }
.hv6 .pricing-price { font-size: 2rem; font-weight: 900; color: #3b5998; letter-spacing: -0.04em; line-height: 1; margin-bottom: 5px; }
.hv6 .pricing-price span { font-size: 0.85rem; font-weight: 500; color: var(--muted); letter-spacing: 0; }
.hv6 .pricing-card-featured .pricing-price { color: white; }
.hv6 .pricing-card-featured .pricing-price span { color: rgba(255,255,255,0.5); }
.hv6 .pricing-tagline { font-size: 0.78rem; color: var(--muted); font-weight: 500; }
.hv6 .pricing-card-featured .pricing-tagline { color: rgba(255,255,255,0.55); }
.hv6 .pricing-features { list-style: none; flex: 1; margin-bottom: 24px; display: flex; flex-direction: column; gap: 10px; padding: 0; }
.hv6 .pricing-features li { display: flex; align-items: center; gap: 10px; font-size: 0.875rem; color: var(--ink-mid); }
.hv6 .pricing-card-featured .pricing-features li { color: rgba(255,255,255,0.8); }
.hv6 .pf-check {
    width: 20px; height: 20px; border-radius: 50%;
    background: var(--teal-glow); border: 1px solid rgba(0,201,167,0.3);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.58rem; color: var(--teal-dark); flex-shrink: 0;
}
.hv6 .pf-check--white { background: rgba(0,201,167,0.2); border-color: rgba(0,201,167,0.4); color: var(--teal); }
.hv6 .pricing-btn { width: 100%; justify-content: center; }

/* ---- Lead form ---- */
.hv6 .lead-section { padding: 16px 0 56px; }
.hv6 .lead-modern {
    background: var(--navy);
    background-image:
        radial-gradient(ellipse at 0% 100%, rgba(0,201,167,0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 100% 0%, rgba(12,42,72,0.8) 0%, transparent 50%);
    border-radius: var(--radius-xl); padding: 56px;
    color: white; position: relative; overflow: hidden;
}
.hv6 .lead-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.hv6 .lead-left h2 { font-size: 1.9rem; margin-bottom: 14px; line-height: 1.25; }
.hv6 .lead-left p { opacity: 0.7; margin-bottom: 24px; font-size: 0.93rem; }
.hv6 .perk-item { display: flex; gap: 10px; align-items: center; margin-bottom: 12px; font-size: 0.86rem; }
.hv6 .perk-check {
    width: 22px; height: 22px; border-radius: 50%;
    background: var(--teal-glow-strong); border: 1px solid rgba(0,201,167,0.3);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; font-size: 0.62rem; color: var(--teal);
}
.hv6 .lead-right {
    background: white; border-radius: var(--radius-lg); padding: 32px;
    color: var(--ink); box-shadow: 0 24px 64px rgba(0,0,0,0.15);
}
.hv6 .lead-right h3 { font-size: 1rem; margin-bottom: 20px; color: var(--ink); }
.hv6 .input-group-v6 { margin-bottom: 12px; }
.hv6 .input-group-v6 input {
    width: 100%; padding: 12px 16px;
    border: 1.5px solid var(--border-light);
    border-radius: 10px; font-family: inherit;
    font-size: 0.875rem; color: var(--ink);
    background: var(--surface); transition: all 0.2s;
}
.hv6 .input-group-v6 input::placeholder { color: var(--muted-light); }
.hv6 .input-group-v6 input:focus { outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px var(--teal-glow); background: white; }
.hv6 .checkbox-group-v6 { display: flex; gap: 10px; align-items: flex-start; margin: 16px 0; font-size: 0.72rem; color: var(--muted); line-height: 1.4; }
.hv6 .checkbox-group-v6 input[type="checkbox"] { margin-top: 2px; accent-color: var(--teal); flex-shrink: 0; }
.hv6 .btn-block-v6 { width: 100%; justify-content: center; margin-top: 4px; padding: 14px !important; font-size: 0.88rem !important; }

/* ---- Testimonials ---- */
.hv6 .testimonials-section { padding: 0 0 56px; }
.hv6 .testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.hv6 .testimonial-card {
    background: white; border: 1px solid var(--border-light);
    border-radius: var(--radius-md); padding: 24px;
    transition: all 0.2s; position: relative;
}
.hv6 .testimonial-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.hv6 .testimonial-card::before {
    content: '"'; position: absolute; top: 14px; right: 18px;
    font-size: 3.5rem; line-height: 1; color: var(--teal-glow-strong);
    font-weight: 900; font-family: Georgia, serif;
}
.hv6 .stars { color: #f5b042; margin-bottom: 12px; font-size: 0.85rem; letter-spacing: 2px; }
.hv6 .testimonial-text { font-size: 0.85rem; margin-bottom: 18px; line-height: 1.6; color: var(--ink-mid); position: relative; z-index: 1; }
.hv6 .testimonial-footer { display: flex; align-items: center; gap: 10px; }
.hv6 .testimonial-avatar {
    width: 34px; height: 34px; border-radius: 50%;
    background: var(--teal-glow); border: 2px solid rgba(201, 194, 0, 0.2);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.78rem; font-weight: 700; color: var(--yellow-bright); flex-shrink: 0;
}
.hv6 .testimonial-author { font-weight: 700; font-size: 0.83rem; color: var(--ink); }
.hv6 .testimonial-role { font-size: 0.7rem; color: var(--muted); margin-top: 1px; }

/* ---- WhatsApp ---- */
.hv6 .wa-section { padding: 0 0 64px; }
.hv6 .wa-compact {
    background: linear-gradient(135deg, #0F2030 0%, #1D1C40 100%);
    border-radius: var(--radius-lg); padding: 28px 36px;
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 18px;
    box-shadow: 0 12px 40px rgba(7,94,84,0.25); position: relative; overflow: hidden;
}
.hv6 .wa-compact::before {
    content: ""; position: absolute; top: -50px; right: -50px;
    width: 180px; height: 180px; border-radius: 50%;
    background: rgba(255,255,255,0.04); pointer-events: none;
}
.hv6 .wa-icon { font-size: 1.9rem; margin-right: 4px; }
.hv6 .wa-compact h4 { color: white; font-size: 1.1rem; margin-bottom: 3px; }
.hv6 .wa-compact p { color: rgba(255,255,255,0.75); font-size: 0.8rem; }
.hv6 .wa-right { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.hv6 .wa-consent-label { align-items: center; gap: 8px; color: rgba(255,255,255,0.85); font-size: 0.73rem; cursor: pointer; }
.hv6 .wa-consent-label input { accent-color: white; }
.hv6 .wa-btn-white {
    background: white; color: #075e54;
    padding: 10px 24px; border-radius: 100px;
    text-decoration: none; font-weight: 700; font-size: 0.875rem;
    transition: all 0.2s; white-space: nowrap;
    box-shadow: 0 4px 14px rgba(0,0,0,0.15);
}
.hv6 .wa-btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,0,0,0.2); color: #075e54; text-decoration: none; }

/* ---- NS-Wrap (Newspaper-style news section) ---- */
.hv6 .ns-wrap {
    margin: 2rem 0; padding: 1rem;
    border-radius: var(--radius-md);
}
.hv6 .ns-row {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 0; border-bottom: 0.5px solid #e5e7eb;
}
.hv6 .ns-row:last-child { border-bottom: none; }
.hv6 .ns-left {
    border-right: 0.5px solid #e5e7eb;
    padding: 16px 16px 16px 0;
    display: flex; flex-direction: column; gap: 10px;
}
.hv6 .ns-right { display: flex; flex-direction: column; }
.hv6 .ns-right-item {
    padding: 12px 14px; border-bottom: 0.5px solid #e5e7eb;
    display: flex; gap: 10px; align-items: flex-start;
    cursor: pointer; transition: background 0.15s;
    text-decoration: none; color: inherit;
}
.hv6 .ns-right-item:last-child { border-bottom: none; }
.hv6 .ns-right-item:hover { background: #f9fafb; }
.hv6 .ns-left-img { width: 100%; aspect-ratio: 16/9; object-fit: cover; border-radius: 8px; }
.hv6 .ns-left-body { display: flex; flex-direction: column; gap: 5px; }
.hv6 .ns-tag-trending { font-size: 12px; font-weight: 600; color: #dc2626; text-transform: uppercase; letter-spacing: .06em; }
.hv6 .ns-tag-market { font-size: 12px; font-weight: 600; color: #3b5998; text-transform: uppercase; letter-spacing: .06em; }
.hv6 .ns-headline-lg { font-size: 21px; font-weight: 500; color: #111; line-height: 1.45; margin: 0; text-decoration: none; }
.hv6 .ns-headline-sm { font-size: 18px; font-weight: 600; color: #111; line-height: 1.4; margin: 0; }
.hv6 .ns-date { font-size: 11px; color: #9ca3af; }
.hv6 .ns-thumb { width: 52px; height: 40px; object-fit: cover; border-radius: 4px; flex-shrink: 0; }
.hv6 .ns-right-body { display: flex; flex-direction: column; gap: 4px; flex: 1; }
.hv6 .ns-label { font-size: 9px; font-weight: 600; color: #9ca3af; text-transform: uppercase; letter-spacing: .07em; margin-bottom: 4px; }
.hv6 .insight-button button {
    background: var(--teal); color: #0a1628;
    padding: 8px 20px; border-radius: 29px; border: none;
    margin: 20px 10px 10px; font-weight: 600; cursor: pointer;
}
.hv6 .insight-button button:hover { background: var(--teal-dark); }
/* Anchor replacement for button CTAs — same appearance, crawlable */
.hv6 .insight-link {
    display: inline-block;
    background: var(--teal); color: #0a1628;
    padding: 8px 20px; border-radius: 29px;
    margin: 20px 10px 10px; font-weight: 600;
    text-decoration: none; cursor: pointer;
}
.hv6 .insight-link:hover { background: var(--teal-dark); color: #0a1628; text-decoration: none; }
@media (max-width: 520px) {
    .hv6 .ns-row { grid-template-columns: 1fr; }
    .hv6 .ns-left { border-right: none; border-bottom: 0.5px solid #e5e7eb; padding: 12px 0; }
}

/* ---- Animations ---- */
@keyframes hv6FadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes hv6FadeDown {
    from { opacity: 0; transform: translateY(-12px); }
    to   { opacity: 1; transform: translateY(0); }
}
/* Hero-pro animations */
@keyframes heroProFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes heroProUp {
    from { opacity: 0; transform: translateY(18px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes heroProFloat {
    0%,100% { transform: translateY(0); }
    50%      { transform: translateY(-7px); }
}
@keyframes heroProPulse {
    0%,100% { opacity: 1; box-shadow: 0 0 0 0 rgba(228, 252, 248, 0.5); }
    50%      { opacity: .7; box-shadow: 0 0 0 5px rgba(0,201,167,0); }
}
@keyframes hiFadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes hiDrawLine { to { stroke-dashoffset: 0; } }
@keyframes hiBarGrow { from { transform: scaleX(0); } to { transform: scaleX(1); } }

.hv6 .reveal-v6 { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.hv6 .reveal-v6.visible { opacity: 1; transform: translateY(0); }
.hv6 .reveal-delay-1 { transition-delay: 0.1s; }
.hv6 .reveal-delay-2 { transition-delay: 0.2s; }
.hv6 .reveal-delay-3 { transition-delay: 0.3s; }

/* ====== RESPONSIVE — MOBILE FIRST ====== */

/* Default (mobile): single column */
@media (max-width: 479px) {
    .hv6 .hero-pro { padding: 32px 0 48px; }
    .hv6 .stats-ribbon { grid-template-columns: 1fr; }
    .hv6 .stat-item { border-right: none !important; border-top: 1px solid var(--border-light); }
    .hv6 .stat-item:first-child { border-top: none; }
    .hv6 .all-news-grid { grid-template-columns: 1fr; border-radius: var(--radius-lg); }
    .hv6 .news-col { border-right: none !important; border-bottom: 1px solid var(--border-light); }
    .hv6 .lead-modern { padding: 28px 18px; }
    .hv6 .lead-grid { grid-template-columns: 1fr; gap: 28px; }
    .hv6 .testimonials-grid { grid-template-columns: 1fr; }
    .hv6 .tools-cta-grid { grid-template-columns: 1fr; }
    .hv6 .newsletter-cta-wrap { padding: 24px 18px; }
    .hv6 .newsletter-cta-inner { flex-direction: column; align-items: flex-start; }
    .hv6 .newsletter-cta-actions { width: 100%; }
    .hv6 .newsletter-input { width: 100%; }
    .hv6 .wa-compact { padding: 20px 18px; flex-direction: column; align-items: flex-start; }
    .hv6 .pricing-grid { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; }
}

/* Small mobile to tablet */
@media (min-width: 480px) and (max-width: 767px) {
    .hv6 .hero-pro { padding: 36px 0 52px; }
    .hv6 .stats-ribbon { grid-template-columns: 1fr 1fr; }
    .hv6 .stat-item:nth-child(2) { border-right: none; }
    .hv6 .stat-item:nth-child(3) { border-top: 1px solid var(--border-light); }
    .hv6 .stat-item:nth-child(4) { border-top: 1px solid var(--border-light); border-right: none; }
    .hv6 .all-news-grid { grid-template-columns: 1fr 1fr; border-radius: var(--radius-lg); }
    .hv6 .news-col { border-right: none; border-bottom: 1px solid var(--border-light); }
    .hv6 .news-col:nth-child(odd) { border-right: 1px solid var(--border-light); }
    .hv6 .news-col:last-child { border-bottom: none; }
    .hv6 .lead-grid { grid-template-columns: 1fr; gap: 28px; }
    .hv6 .lead-modern { padding: 32px 24px; }
    .hv6 .testimonials-grid { grid-template-columns: 1fr; }
    .hv6 .tools-cta-grid { grid-template-columns: 1fr; }
    .hv6 .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
    .hv6 .newsletter-cta-inner { flex-direction: column; align-items: flex-start; }
    .hv6 .newsletter-input { width: 100%; }
}

/* Tablet */
@media (min-width: 768px) and (max-width: 1023px) {
    .hv6 .hero-pro { padding: 56px 0 72px; }
    .hv6 .hero-pro__cta { flex-direction: row; align-items: center; flex-wrap: wrap; }
    .hv6 .hero-pro__btn { width: auto; }
    .hv6 .stats-ribbon { grid-template-columns: 1fr 1fr; }
    .hv6 .stat-item:nth-child(2) { border-right: none; }
    .hv6 .stat-item:nth-child(3) { border-top: 1px solid var(--border-light); }
    .hv6 .stat-item:nth-child(4) { border-top: 1px solid var(--border-light); border-right: none; }
    .hv6 .all-news-grid { grid-template-columns: repeat(2,1fr); }
    .hv6 .news-col:nth-child(2) { border-right: none; }
    .hv6 .news-col:nth-child(3), .hv6 .news-col:nth-child(4) { border-top: 1px solid var(--border-light); }
    .hv6 .news-col:nth-child(4) { border-right: none; }
    .hv6 .lead-grid { grid-template-columns: 1fr; gap: 32px; }
    .hv6 .lead-modern { padding: 40px 36px; }
    .hv6 .testimonials-grid { grid-template-columns: 1fr 1fr; }
    .hv6 .pricing-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
}

/* Desktop */
@media (min-width: 1024px) {
    .hv6 .hero-pro { padding: 80px 0 100px; }
    .hv6 .hero-pro__grid-layout { grid-template-columns: 1fr 1.1fr; gap: 56px; }
    .hv6 .hero-pro__cta { flex-direction: row; align-items: center; flex-wrap: wrap; }
    .hv6 .hero-pro__btn { width: auto; }
    .hv6 .hero-pro__trust { gap: 14px; margin-top: 32px; }
    .hv6 .hero-pro__visual { display: flex; }
    .hv6 .stats-ribbon { grid-template-columns: repeat(4,1fr); }
    .hv6 .all-news-grid { grid-template-columns: repeat(4,1fr); }
    .hv6 .news-col:nth-child(3) { border-right: 1px solid var(--border-light); }
    .hv6 .news-col:nth-child(4) { border-top: none; border-right: none; }
    .hv6 .lead-grid { grid-template-columns: 1fr 1fr; gap: 48px; }
    .hv6 .testimonials-grid { grid-template-columns: repeat(3,1fr); }
    .hv6 .pricing-grid { grid-template-columns: repeat(3,1fr); }
    .hv6 .tools-cta-grid { grid-template-columns: 1fr 1fr; }
    .hv6 .newsletter-cta-inner { flex-direction: row; align-items: center; }
}

/* Large desktop */
@media (min-width: 1280px) {
    .hv6 .all-news-grid { grid-template-columns: repeat(4,1fr); }
}
/* WA section: no-wrap on wider screens */
@media (min-width: 900px) {
    .hv6 .wa-compact { flex-wrap: nowrap; }
    .hv6 .wa-right { flex-shrink: 0; white-space: normal; }
    .hv6 .wa-consent-label { max-width: 320px; font-size: 0.75rem; line-height: 1.3; }
}
@media (max-width: 899px) {
    .hv6 .wa-consent-label { font-size: 0.7rem; }
    .hv6 .wa-btn-white { padding: 8px 18px; font-size: 0.8rem; }
}

/* ---- Market Chart Tabs ---- */
.hv6 .hi-market-tabs {
    display: flex; gap: 6px; padding: 10px 18px 8px; flex-wrap: wrap;
}
.hv6 .hi-market-tab {
    display: inline-flex; align-items: center; gap: 5px;
    background: rgba(0, 0, 0, 0.07); border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 999px; padding: 4px 12px;
    font-size: 9.5px; font-weight: 700; letter-spacing: .04em;
    color: rgba(0, 0, 0, 0.4); cursor: pointer; font-family: inherit;
    transition: background .2s, color .2s, border-color .2s;
}
.hv6 .hi-market-tab:hover { background: rgba(177, 252, 168, 0.12); color: rgba(0, 0, 0, 0.7); }
.hv6 .hi-market-tab[data-market="asx"].active   { background: rgba(0,201,167,.18);   border-color: rgba(0,201,167,.4);   color: #00c9a7; }
.hv6 .hi-market-tab[data-market="nasdaq"].active { background: rgba(129,140,248,.18); border-color: rgba(129,140,248,.4); color: #818cf8; }
.hv6 .hi-market-tab[data-market="nyse"].active   { background: rgba(245,158,11,.18);  border-color: rgba(245,158,11,.4);  color: #f59e0b; }
.hv6 .hi-tab-dot { width: 5px; height: 5px; border-radius: 50%; background: currentColor; opacity: .8; flex-shrink: 0; }
/* Cycle progress bar */
.hv6 .hi-market-progress { height: 2px; background: rgba(255,255,255,.06); margin: 0 18px 2px; border-radius: 2px; overflow: hidden; }
.hv6 .hi-market-progress-bar { height: 100%; border-radius: 2px; transform-origin: left; transform: scaleX(0); }
@keyframes hiProgressSweep { from { transform: scaleX(0); } to { transform: scaleX(1); } }
/* Chart slide transition */
.hv6 .hi-chart-area { transition: opacity .32s ease, transform .32s ease; }
.hv6 .hi-chart-area.hi-chart-out { opacity: 0; transform: translateX(-10px); pointer-events: none; }
.hv6 .hi-chart-area.hi-chart-in  { opacity: 0; transform: translateX(10px);  pointer-events: none; }
