﻿:root {
    --blue: #264EFF;
    --orange: #F7A722;
    --white: #FFFFFF;
    --black: #000000;
    --ink: #0E1320;
    --ink-light: #1F2937;
    --muted: #6B7280;
    --muted-light: #9CA3AF;
    --bg: #F3F4FB;
    --bg-light: #FAFBFF;
    --surface: #FFFFFF;
    --line: #E5E7F0;
    --line-light: #F0F2F5;
    --success: #10B981;
    --radius-lg: 20px;
    --radius-md: 14px;
    --radius-sm: 10px;
    --radius-pill: 999px;
    --shadow-xs: 0 1px 3px rgba(15,23,42,.05);
    --shadow-sm: 0 4px 12px rgba(15,23,42,.08);
    --shadow: 0 8px 24px rgba(15,23,42,.12);
    --shadow-blue: 0 8px 24px rgba(38,78,255,.15);
    --focus: 0 0 0 3px rgba(38,78,255,.12);
    --wrap: 1200px;
    --header-height: 64px;
    --sticky-filter-top: calc(var(--header-height, 64px) + 8px);
    --transition: all .25s cubic-bezier(.4,0,.2,1);
}
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}
html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased
}
body {
    font-family: "Inter",system-ui,-apple-system,Segoe UI,Roboto,sans-serif;
    background: var(--bg);
    color: var(--ink);
    font-size: 15px;
    line-height: 1.6;
    overflow-x: hidden;
}
img {
    max-width: 100%;
    height: auto;
    display: block
}
a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition)
}
button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none
}
.wrap {
    max-width: var(--wrap);
    margin: 0 auto;
    padding: 0 20px 80px
}
.hidden {
    display: none !important
}
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0
}
/* Breadcrumb */
.breadcrumb-bar {
    background: var(--surface);
    border-bottom: 1px solid var(--line-light);
    padding: 12px 20px;
}
.breadcrumb {
    max-width: var(--wrap);
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 500;
    color: var(--muted);
}
    .breadcrumb a {
        color: var(--muted)
    }
        .breadcrumb a:hover {
            color: var(--blue)
        }
.breadcrumb-sep {
    color: var(--muted-light)
}
.breadcrumb [aria-current="page"] {
    color: var(--ink);
    font-weight: 600
}
/* Hero */
.hero-stories {
    padding: 56px 20px 48px;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    position: relative;
}
    .hero-stories::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: var(--orange);
    }
.hero-stories__inner {
    max-width: var(--wrap);
    margin: 0 auto
}
.hero-stories__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: center;
}
@media(min-width:900px) {
    .hero-stories__grid {
        grid-template-columns: 1.1fr .9fr;
        gap: 48px;
        text-align: left
    }
    .hero-stories__actions {
        justify-content: flex-start
    }
    .hero-stats {
        border-top: none;
        padding-top: 0;
        border-left: 1px solid var(--line-light);
        padding-left: 32px
    }
}
.hero-stories__copy {
    text-align: center
}
@media(min-width:900px) {
    .hero-stories__copy {
        text-align: left
    }
}
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: var(--radius-pill);
    background: rgba(38,78,255,.08);
    color: var(--blue);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: 16px;
}
    .hero-eyebrow::before {
        content: "";
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: var(--orange)
    }
.hero-stories h1 {
    font-size: clamp(32px,5vw,48px);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -.03em;
    margin-bottom: 16px;
    color: var(--black);
}
    .hero-stories h1 em {
        font-style: normal;
        color: var(--blue)
    }
.hero-stories__lead {
    font-size: clamp(16px,2.2vw,17px);
    color: var(--muted);
    line-height: 1.75;
    max-width: 560px;
    margin: 0 auto 24px;
}
@media(min-width:900px) {
    .hero-stories__lead {
        margin: 0 0 24px
    }
}
.hero-stories__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 0;
}
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: var(--radius-pill);
    border: 1.5px solid transparent;
    font-weight: 700;
    font-size: 14px;
    transition: var(--transition);
    white-space: nowrap;
    min-height: 44px;
}
.btn-primary {
    background: var(--blue);
    color: var(--white);
    border-color: var(--blue);
    box-shadow: var(--shadow-blue)
}
    .btn-primary:hover {
        background: #1A3DD9;
        border-color: #1A3DD9;
        transform: translateY(-1px)
    }
    .btn-primary:focus-visible, .btn-outline:focus-visible, .filter-chip:focus-visible, .page-btn:focus-visible {
        outline: none;
        box-shadow: var(--focus)
    }
.btn-outline {
    background: var(--white);
    color: var(--ink);
    border-color: var(--line);
    box-shadow: var(--shadow-xs)
}
    .btn-outline:hover {
        border-color: var(--blue);
        color: var(--blue)
    }
.btn-sm {
    padding: 9px 16px;
    font-size: 13px;
    min-height: 40px
}
.hero-stats {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 12px;
    max-width: 100%;
    margin: 0 auto;
}
@media(min-width:480px) {
    .hero-stats {
        grid-template-columns: repeat(2,1fr)
    }
}
.stat-item {
    text-align: center;
    padding: 16px 12px;
    background: var(--bg-light);
    border: 1px solid var(--line-light);
    border-radius: var(--radius-md);
}
.stat-number {
    font-size: clamp(24px,4vw,32px);
    font-weight: 900;
    color: var(--blue);
    line-height: 1;
    margin-bottom: 6px
}
.stat-label {
    font-size: 10px;
    color: var(--muted);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    line-height: 1.35
}
/* Framework strip */
.framework-strip {
    background: var(--white);
    color: var(--ink);
    padding: 16px 20px;
    border-bottom: 1px solid var(--line);
}
.framework-strip__inner {
    max-width: var(--wrap);
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 8px 20px;
    font-size: 12px;
    font-weight: 700;
    color: var(--muted);
}
.framework-step {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--ink-light)
}
.framework-step-num {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--blue);
    color: var(--white);
    font-size: 10px;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.framework-arrow {
    color: var(--orange);
    font-weight: 900;
    font-size: 14px
}
/* Page content rhythm */
.page-content {
    padding-top: 28px;
    padding-bottom: 20px
}
.section-head {
    max-width: var(--wrap);
    margin: 0 auto 24px;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 12px;
}
    .section-head h2 {
        font-size: clamp(22px,3vw,28px);
        font-weight: 900;
        letter-spacing: -.02em
    }
    .section-head p {
        font-size: 14px;
        color: var(--muted);
        max-width: 480px;
        line-height: 1.6
    }
.section-eyebrow {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--blue);
    margin-bottom: 6px;
}
/* Toolbar */
.toolbar-wrap {
    position: sticky;
    top: var(--sticky-filter-top);
    z-index: 90;
    padding: 0 20px;
    margin: 0 auto 20px;
    max-width: calc(var(--wrap) + 40px);
    transition: transform .28s cubic-bezier(.4,0,.2,1),opacity .22s ease,margin .28s cubic-bezier(.4,0,.2,1);
    will-change: transform;
}
    .toolbar-wrap.is-toolbar-hidden {
        transform: translateY(calc(-100% - 16px));
        opacity: 0;
        pointer-events: none;
        margin-bottom: 0;
    }
.toolbar {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 14px 16px;
    box-shadow: var(--shadow-sm);
}
.toolbar-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px
}
    .toolbar-row:last-child {
        margin-bottom: 0
    }
.toolbar-title {
    font-size: 13px;
    font-weight: 800;
    color: var(--ink);
    text-transform: uppercase;
    letter-spacing: .04em
}
.toolbar-controls {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    flex: 1;
    justify-content: flex-end
}
.filter-scroll {
    position: relative;
    flex: 1;
    min-width: 0;
    max-width: 100%;
}
    .filter-scroll::after {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        width: 28px;
        background: linear-gradient(270deg,var(--white),transparent);
        pointer-events: none;
        opacity: 0;
        transition: opacity .2s;
    }
    .filter-scroll.is-scrollable::after {
        opacity: 1
    }
.filter-group {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.filter-group--scroll {
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 2px;
}
    .filter-group--scroll::-webkit-scrollbar {
        display: none
    }
    .filter-group--scroll .filter-chip {
        flex-shrink: 0
    }
.search-input {
    padding: 10px 16px 10px 40px;
    border: 1.5px solid var(--line);
    border-radius: var(--radius-pill);
    font-size: 14px;
    font-family: inherit;
    min-width: min(100%,260px);
    background: var(--white) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%236B7280' viewBox='0 0 16 16'%3E%3Cpath d='M11.742 10.344a6.5 6.5 0 1 0-1.397 1.398h-.001l3.85 3.85a1 1 0 0 0 1.415-1.414l-3.85-3.85zm-5.242 1.006a5.5 5.5 0 1 1 0-11 5.5 5.5 0 0 1 0 11z'/%3E%3C/svg%3E") 14px center no-repeat;
}
    .search-input:focus {
        outline: none;
        border-color: var(--blue);
        box-shadow: var(--focus)
    }
.sort-select {
    padding: 10px 36px 10px 14px;
    border: 1.5px solid var(--line);
    border-radius: var(--radius-pill);
    font-size: 13px;
    font-weight: 600;
    font-family: inherit;
    background: var(--white);
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%236B7280' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
}
.filter-chip {
    padding: 8px 14px;
    border-radius: var(--radius-pill);
    background: var(--bg-light);
    border: 1.5px solid var(--line);
    font-size: 12px;
    font-weight: 700;
    color: var(--ink-light);
    transition: var(--transition);
    min-height: 36px;
}
    .filter-chip:hover {
        border-color: var(--blue);
        color: var(--blue)
    }
    .filter-chip.active {
        background: var(--blue);
        color: var(--white);
        border-color: var(--blue);
        box-shadow: var(--shadow-blue)
    }
    .filter-chip[data-filter="marketplace"].active {
        background: var(--orange);
        border-color: var(--orange);
        color: var(--black);
        box-shadow: 0 4px 12px rgba(247,167,34,.3)
    }
.results-meta {
    font-size: 13px;
    color: var(--muted);
    font-weight: 600
}
    .results-meta strong {
        color: var(--blue)
    }
/* Featured */
.featured-story {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 0;
    margin-bottom: 32px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}
    .featured-story::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        width: 5px;
        background: var(--blue);
    }
.featured-story__inner {
    padding: 32px 32px 32px 36px
}
.featured-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    background: var(--blue);
    color: var(--white);
    border-radius: var(--radius-pill);
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 14px;
}
.featured-story h2 {
    font-size: clamp(22px,3.2vw,30px);
    font-weight: 900;
    line-height: 1.25;
    margin-bottom: 14px;
    letter-spacing: -.02em
}
.featured-story__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px
}
.meta-pill {
    padding: 5px 11px;
    border-radius: var(--radius-pill);
    background: var(--bg);
    font-size: 11px;
    font-weight: 700;
    color: var(--muted);
    border: 1px solid var(--line-light);
}
.meta-pill--verified {
    background: rgba(38,78,255,.08);
    color: var(--blue);
    border-color: rgba(38,78,255,.2)
}
.cso-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 12px;
    margin: 0
}
.cso-block {
    padding: 16px;
    border-radius: var(--radius-md);
    border: 1px solid var(--line-light);
    background: var(--bg-light);
}
.cso-label {
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--blue);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px
}
    .cso-label::before {
        content: "";
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: var(--orange);
        flex-shrink: 0
    }
.cso-block p {
    font-size: 13px;
    color: var(--ink-light);
    line-height: 1.65
}
.featured-metrics {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 0;
    border-top: 1px solid var(--line-light);
    background: var(--bg-light);
}
.featured-metric {
    text-align: center;
    padding: 20px 12px;
    border-right: 1px solid var(--line-light)
}
    .featured-metric:last-child {
        border-right: none
    }
.featured-metric-value {
    font-size: 26px;
    font-weight: 900;
    color: var(--blue);
    line-height: 1
}
.featured-metric-label {
    font-size: 10px;
    color: var(--muted);
    font-weight: 700;
    text-transform: uppercase;
    margin-top: 6px;
    letter-spacing: .05em;
    line-height: 1.3
}
/* Grid */
.stories-section {
    padding: 0 20px 20px;
    max-width: var(--wrap);
    margin: 0 auto;
    scroll-margin-top: calc(var(--header-height, 64px) + 80px)
}
.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill,minmax(340px,1fr));
    gap: 24px;
    margin-bottom: 32px;
}
    .stories-grid:not(.is-ready) .story-card {
        display: none !important
    }
.story-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    box-shadow: var(--shadow-xs);
    position: relative;
}
    .story-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: var(--blue);
        opacity: 0;
        transition: opacity .2s;
    }
    .story-card:hover::before {
        opacity: 1
    }
    .story-card:hover {
        border-color: rgba(38,78,255,.35);
        box-shadow: var(--shadow)
    }
.story-card__visual {
    height: 108px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    border-bottom: 1px solid var(--line-light);
    position: relative;
    padding: 16px 18px;
}
.story-card__visual--blue {
    background: rgba(38,78,255,.08)
}
.story-card__visual--orange {
    background: rgba(247,167,34,.12)
}
.story-card__visual--neutral {
    background: var(--bg-light)
}
.story-card__icon {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    background: var(--white);
    border: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 900;
    color: var(--blue);
    letter-spacing: -.02em;
}
.story-card__visual--orange .story-card__icon {
    color: var(--black);
    border-color: rgba(247,167,34,.4)
}
.story-card__visual-label {
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--muted);
}
.story-card__badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 10px;
    border-radius: var(--radius-pill);
    background: var(--orange);
    color: var(--black);
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
}
.story-card__readtime {
    position: absolute;
    top: 12px;
    right: 12px;
    font-size: 11px;
    font-weight: 600;
    color: var(--muted);
    background: var(--white);
    padding: 4px 8px;
    border-radius: var(--radius-pill);
    border: 1px solid var(--line-light);
}
.story-card__body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px
}
.story-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px
}
.story-tag {
    padding: 4px 10px;
    border-radius: var(--radius-pill);
    background: var(--bg);
    font-size: 10px;
    font-weight: 700;
    color: var(--muted);
}
.story-tag--country {
    border: 1px solid var(--line);
    background: var(--white)
}
.story-card h3 {
    font-size: 17px;
    font-weight: 800;
    line-height: 1.4;
    color: var(--ink);
    letter-spacing: -.01em
}
.story-card__excerpt {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.65;
    flex: 1
}
.story-card__cso {
    display: grid;
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 12px 14px;
    background: var(--bg-light);
    border-radius: var(--radius-sm);
    font-size: 12px;
    line-height: 1.5;
    border-left: 3px solid var(--blue);
}
    .story-card__cso dt {
        font-weight: 800;
        color: var(--blue);
        font-size: 10px;
        text-transform: uppercase;
        letter-spacing: .05em
    }
    .story-card__cso dd {
        color: var(--ink-light);
        margin-bottom: 4px
    }
.story-card__metrics {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 8px;
    padding-top: 12px;
    border-top: 1px solid var(--line-light);
}
.story-metric {
    text-align: center
}
.story-metric-value {
    font-size: 16px;
    font-weight: 900;
    color: var(--blue);
    line-height: 1.1
}
.story-metric-label {
    font-size: 10px;
    color: var(--muted);
    font-weight: 600;
    margin-top: 2px
}
.story-card__footer {
    padding: 0 20px 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    border-top: 1px solid var(--line-light);
    margin-top: auto;
    padding-top: 16px;
}
.story-card__rfq {
    font-size: 12px;
    color: var(--muted);
    font-weight: 600
}
    .story-card__rfq strong {
        color: var(--success)
    }
/* Empty state */
.empty-state {
    text-align: center;
    padding: 60px 24px;
    background: var(--surface);
    border: 1px dashed var(--line);
    border-radius: var(--radius-lg);
    margin-bottom: 32px;
}
    .empty-state h3 {
        font-size: 20px;
        font-weight: 800;
        margin-bottom: 8px
    }
    .empty-state p {
        color: var(--muted);
        margin-bottom: 16px;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto
    }
/* Pagination */
.pagination {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 40px 0 60px;
}
.page-btn {
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border-radius: var(--radius-pill);
    border: 1.5px solid var(--line);
    background: var(--white);
    font-size: 13px;
    font-weight: 700;
    color: var(--ink-light);
    transition: var(--transition);
}
    .page-btn:hover:not(:disabled) {
        border-color: var(--blue);
        color: var(--blue)
    }
    .page-btn.active {
        background: var(--blue);
        color: var(--white);
        border-color: var(--blue)
    }
    .page-btn:disabled {
        opacity: .4;
        cursor: not-allowed
    }
/* Methodology */
.methodology {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    margin: 60px auto;
    max-width: var(--wrap);
}
    .methodology h2 {
        font-size: clamp(24px,3vw,32px);
        font-weight: 900;
        text-align: center;
        margin-bottom: 12px
    }
    .methodology > p {
        text-align: center;
        color: var(--muted);
        max-width: 640px;
        margin: 0 auto 32px;
        line-height: 1.7
    }
.methodology-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
    gap: 20px
}
.methodology-item {
    padding: 20px;
    border-radius: var(--radius-md);
    background: var(--bg-light);
    border: 1px solid var(--line-light)
}
    .methodology-item h3 {
        font-size: 15px;
        font-weight: 800;
        margin-bottom: 8px;
        color: var(--ink)
    }
    .methodology-item p {
        font-size: 14px;
        color: var(--muted);
        line-height: 1.6
    }
/* Compare */
.compare-section {
    max-width: var(--wrap);
    margin: 0 auto 60px;
    padding: 0 20px
}
    .compare-section h2 {
        font-size: clamp(24px,3vw,32px);
        font-weight: 900;
        text-align: center;
        margin-bottom: 24px
    }
.compare-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--surface);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-xs);
}
    .compare-table th, .compare-table td {
        padding: 16px 20px;
        text-align: left;
        font-size: 14px;
        border-bottom: 1px solid var(--line-light)
    }
    .compare-table th {
        background: var(--bg);
        font-weight: 800;
        font-size: 13px;
        text-transform: uppercase;
        letter-spacing: .04em;
        color: var(--muted)
    }
    .compare-table tr:last-child td {
        border-bottom: none
    }
    .compare-table .col-before {
        color: var(--muted)
    }
    .compare-table .col-after {
        color: var(--blue);
        font-weight: 700
    }
    .compare-table .check {
        color: var(--success);
        font-weight: 900
    }
/* CTA */
.cta-section {
    background: var(--blue);
    color: var(--white);
    border-radius: var(--radius-lg);
    padding: 56px 32px;
    text-align: center;
    max-width: calc(var(--wrap) - 40px);
    margin: 0 20px 60px;
    box-shadow: var(--shadow-blue);
}
    .cta-section h2 {
        font-size: clamp(26px,4vw,36px);
        font-weight: 900;
        margin-bottom: 12px
    }
    .cta-section p {
        font-size: 17px;
        opacity: .95;
        max-width: 560px;
        margin: 0 auto 24px;
        line-height: 1.65
    }
    .cta-section .btn {
        background: var(--white);
        color: var(--blue);
        border-color: var(--white);
        font-size: 15px;
        padding: 14px 28px
    }
        .cta-section .btn:hover {
            background: var(--bg-light);
            transform: translateY(-1px)
        }
/* Related */
.related-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    max-width: var(--wrap);
    margin: 0 auto 60px;
    padding: 0 20px;
}
.related-link {
    padding: 12px 20px;
    border-radius: var(--radius-pill);
    border: 1.5px solid var(--line);
    background: var(--white);
    font-size: 14px;
    font-weight: 700;
    color: var(--ink-light);
}
    .related-link:hover {
        border-color: var(--blue);
        color: var(--blue)
    }
/* FAQ */
.faq-section {
    max-width: 760px;
    margin: 0 auto 80px;
    padding: 0 20px
}
    .faq-section h2 {
        font-size: clamp(26px,4vw,34px);
        font-weight: 900;
        text-align: center;
        margin-bottom: 32px
    }
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px
}
.faq-item {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    overflow: hidden
}
    .faq-item.active {
        border-color: var(--blue);
        box-shadow: var(--shadow-sm)
    }
.faq-question {
    width: 100%;
    padding: 18px 20px;
    font-size: 15px;
    font-weight: 700;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    color: var(--ink);
    cursor: pointer;
}
    .faq-question:hover {
        color: var(--blue)
    }
.faq-icon {
    font-size: 20px;
    color: var(--blue);
    font-weight: 300;
    flex-shrink: 0;
    transition: transform .2s
}
.faq-item.active .faq-icon {
    transform: rotate(45deg)
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease
}
.faq-item.active .faq-answer {
    max-height: 400px
}
.faq-answer-content {
    padding: 0 20px 18px;
    font-size: 14px;
    color: var(--ink-light);
    line-height: 1.7
}
/* Mobile sticky CTA */
.mobile-sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: var(--white);
    border-top: 1px solid var(--line);
    padding: 12px 16px;
    padding-bottom: max(12px,env(safe-area-inset-bottom));
    box-shadow: 0 -4px 20px rgba(15,23,42,.1);
}
    .mobile-sticky-cta .btn {
        width: 100%
    }
/* Footer reuse */
.entasher-footer {
    font-family: "Inter",system-ui,sans-serif;
    background: var(--black);
    color: var(--white);
    padding: 48px 20px 24px;
    margin-top: 64px
}
.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(200px,1fr));
    gap: 32px;
    margin-bottom: 32px
}
.footer-col {
    min-width: 0
}
.footer-logo {
    font-size: 22px;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 8px
}
.footer-tagline {
    font-size: 14px;
    font-weight: 700;
    color: var(--blue);
    margin-bottom: 12px
}
.footer-description {
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255,255,255,.8)
}
.footer-title {
    font-size: 14px;
    font-weight: 800;
    color: var(--orange);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: .05em
}
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0
}
    .footer-links li {
        margin-bottom: 10px
    }
    .footer-links a {
        color: rgba(255,255,255,.85);
        font-size: 14px;
        font-weight: 500
    }
        .footer-links a:hover {
            color: var(--blue)
        }
.country-chip {
    display: inline-block;
    padding: 6px 12px;
    border: 1px solid var(--blue);
    border-radius: var(--radius-pill);
    font-size: 12px;
    font-weight: 700;
    color: var(--blue);
    background: rgba(38,78,255,.1);
    margin-right: 6px;
    margin-bottom: 6px
}
.footer-btn {
    display: inline-block;
    padding: 10px 20px;
    background: var(--blue);
    color: var(--white);
    border-radius: var(--radius-pill);
    font-weight: 700;
    font-size: 14px;
    margin-top: 12px
}
    .footer-btn:hover {
        background: #1A3DD9;
        color: var(--white)
    }
.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,.1);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 12px;
    font-size: 12px;
    color: rgba(255,255,255,.7)
}
.footer-bottom-left {
    font-weight: 700;
    color: var(--orange)
}
.footer-bottom-right {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap
}
    .footer-bottom-right a {
        color: rgba(255,255,255,.7)
    }
        .footer-bottom-right a:hover {
            color: var(--blue)
        }
@media(max-width:900px) {
    .cso-grid, .featured-metrics {
        grid-template-columns: repeat(2,1fr)
    }
    .featured-metric {
        border-bottom: 1px solid var(--line-light)
    }
        .featured-metric:nth-child(2n) {
            border-right: none
        }
}
@media(max-width:768px) {
    .hero-stories {
        padding: 40px 16px 36px
    }
    .toolbar-wrap {
        padding: 0 16px
    }
    .toolbar-controls {
        width: 100%;
        justify-content: stretch
    }
    .search-input, .sort-select {
        flex: 1;
        min-width: 0
    }
    .stories-grid {
        grid-template-columns: 1fr;
        gap: 16px
    }
    .featured-story__inner {
        padding: 24px 20px 24px 24px
    }
    .cso-grid, .featured-metrics {
        grid-template-columns: 1fr 1fr
    }
    .featured-metric {
        border-right: none;
        padding: 16px 10px
    }
    .compare-table {
        font-size: 13px
    }
        .compare-table th, .compare-table td {
            padding: 12px 14px
        }
    .mobile-sticky-cta {
        display: block
    }
    body {
        padding-bottom: 72px
    }
    .entasher-footer {
        padding: 32px 16px 20px
    }
    .footer-inner {
        grid-template-columns: 1fr
    }
    .filter-group:not(.filter-group--scroll) {
        flex-wrap: wrap
    }
}
@media(max-width:480px) {
    .story-card__metrics {
        grid-template-columns: 1fr 1fr
    }
    .filter-chip {
        padding: 8px 12px;
        font-size: 11px
    }
}
@media(hover:hover) and (pointer:fine) {
    .story-card:hover {
        transform: translateY(-2px)
    }
}
@media(prefers-reduced-motion:reduce) {
    *, *::before, *::after {
        animation-duration: .01ms !important;
        transition-duration: .01ms !important
    }
    html {
        scroll-behavior: auto
    }
    .toolbar-wrap.is-toolbar-hidden {
        transform: none;
        opacity: 1;
        pointer-events: auto
    }
}
