/* ============================================
   VIKY CARE — PITCH DECK EXTENSIONS
   Loads AFTER style.css (the shared landing
   design system). Only the investor-deck-only
   components live here; everything shared
   (hero map, video frame, product/shot-frame,
   pillars, steps, traction, infra-badges) is
   inherited from style.css unchanged.
   ============================================ */

/* --- Section background rhythm (deck order) --- */
.problem       { background: var(--bg); }
.solution      { background: var(--bg-soft); }
.ecosystem     { background: var(--bg); }
.how-it-works  { background: var(--bg-soft); }
.product       { background: var(--bg); }
.vision        { background: var(--bg-soft); }
.market        { background: var(--bg); }
.competitors   { background: var(--bg-soft); }
.regulatory    { background: var(--bg); }
.validation    { background: var(--bg-soft); }
.traction      { background: var(--bg); }
.accreditation { background: var(--bg-soft); }

/* --- Reveal animation for deck-only cards --- */
.section.animate :is(.stat-card, .capability, .market-geo-card, .market-problem-card,
    .comp-segment, .accred-context-card, .ask-item, .vision-phase) {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.55s ease, transform 0.55s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.section.visible :is(.stat-card, .capability, .market-geo-card, .market-problem-card,
    .comp-segment, .accred-context-card, .ask-item, .vision-phase) {
    opacity: 1;
    transform: translateY(0);
}
.section.visible :is(.stat-card, .capability, .market-geo-card, .comp-segment):nth-child(2) { transition-delay: 0.07s; }
.section.visible :is(.stat-card, .capability, .market-geo-card, .comp-segment):nth-child(3) { transition-delay: 0.14s; }
.section.visible :is(.stat-card, .capability, .market-geo-card, .comp-segment):nth-child(4) { transition-delay: 0.21s; }
.section.visible :is(.capability, .market-problem-card):nth-child(5) { transition-delay: 0.28s; }

@media (prefers-reduced-motion: reduce) {
    .section.animate :is(.stat-card, .capability, .market-geo-card, .market-problem-card,
        .comp-segment, .accred-context-card, .ask-item, .vision-phase) {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* --- HERO badges --- */
.hero-badges {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
    justify-content: center;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--teal-deep);
    background: rgba(43, 179, 184, 0.09);
    border: 1px solid rgba(43, 179, 184, 0.3);
    border-radius: 999px;
    padding: 0.4rem 0.95rem;
}

/* --- 2. PROBLEM — stat cards + cost bar --- */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.4rem;
    max-width: 1060px;
    width: 100%;
    margin-bottom: 2.4rem;
}

.stat-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: var(--shadow-card);
}

.stat-card:hover {
    border-color: rgba(43, 179, 184, 0.5);
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-4px);
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--teal-dark);
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: 0.6rem;
}

.stat-label {
    display: block;
    font-size: 0.86rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.stat-source {
    display: block;
    font-size: 0.68rem;
    color: var(--text-dim);
    margin-top: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.cost-bar {
    max-width: 900px;
    width: 100%;
    background: var(--dark-panel);
    border-radius: 18px;
    padding: 1.6rem 2.2rem;
    text-align: center;
    box-shadow: 0 26px 54px -26px rgba(10, 39, 44, 0.55);
}

.cost-bar p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.6;
}

.cost-bar strong {
    color: #8ceaef;
    font-weight: 700;
}

/* --- 3. SOLUTION — capability cards --- */
.capabilities {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.4rem;
    max-width: 1060px;
    width: 100%;
}

.capability {
    position: relative;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.9rem 1.7rem;
    box-shadow: var(--shadow-card);
    overflow: hidden;
}

.capability::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--grad);
    opacity: 0;
    transition: opacity 0.25s;
}

.capability:hover {
    border-color: rgba(43, 179, 184, 0.5);
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-4px);
}

.capability:hover::before { opacity: 1; }

.capability-icon {
    width: 48px;
    height: 48px;
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(43, 179, 184, 0.16), rgba(43, 179, 184, 0.05));
    border: 1px solid rgba(43, 179, 184, 0.22);
    color: var(--teal-dark);
    margin-bottom: 1.1rem;
}

.capability-icon svg { width: 24px; height: 24px; }

.capability h4 {
    font-family: var(--font-display);
    font-size: 1.08rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 0.55rem;
    letter-spacing: -0.01em;
}

.capability p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.65;
}

/* "Clinical · in validation" tag, used in capabilities and product labels */
.cap-tag {
    display: inline-block;
    margin-left: 6px;
    padding: 2px 10px;
    font-family: var(--font);
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #8a6d1a;
    background: #fdf3d7;
    border: 1px solid #e8cf8a;
    border-radius: 999px;
    vertical-align: middle;
    white-space: nowrap;
}

/* --- LANDSCAPE — validation pillar state (adds to now/future) --- */
.pillar-item.val {
    color: #b06a00;
    background: rgba(255, 152, 0, 0.09);
}

.legend-val { color: var(--text-muted); }

.val-dot {
    background: rgba(255, 152, 0, 0.18);
    border: 1.5px solid rgba(255, 152, 0, 0.6);
}

/* --- HOW IT WORKS — flex layout with arrows (deck variant) --- */
.how-it-works .steps {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;
    gap: 1.2rem;
}

.how-it-works .steps::before { display: none; }

.how-it-works .step {
    flex: 1 1 0;
    min-width: 200px;
    max-width: 290px;
}

.step-arrow {
    align-self: center;
    font-size: 1.5rem;
    color: var(--teal);
    opacity: 0.6;
    margin-top: 1.4rem;
    flex-shrink: 0;
}

/* --- 6. VISION — horizontal timeline + quote --- */
.vision-content {
    width: 100%;
    max-width: 980px;
    margin-bottom: 2.4rem;
}

.vision-timeline {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.6rem;
    position: relative;
}

.vision-timeline::before {
    content: '';
    position: absolute;
    top: 9px;
    left: 16%;
    right: 16%;
    border-top: 2px dashed rgba(43, 179, 184, 0.4);
}

.vision-phase {
    position: relative;
    text-align: center;
    padding: 0 0.6rem;
}

.vision-dot {
    position: relative;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    margin: 0 auto 1.2rem;
    background: var(--bg);
    border: 2px solid var(--border-strong);
    z-index: 1;
}

.vision-phase.active .vision-dot {
    background: var(--grad);
    border-color: transparent;
    box-shadow: var(--shadow-teal), 0 0 0 6px rgba(43, 179, 184, 0.12);
}

.vision-phase h4 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 0.5rem;
}

.vision-phase.active h4 { color: var(--teal-dark); }

.vision-phase p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.vision-quote {
    max-width: 820px;
    width: 100%;
    background: var(--dark-panel);
    border-radius: 22px;
    padding: 2.6rem 2.8rem;
    text-align: center;
    box-shadow: 0 30px 60px -26px rgba(10, 39, 44, 0.5);
}

.vision-quote p {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1.5;
    color: #eafcfd;
    letter-spacing: -0.01em;
}

.vision-quote em {
    font-style: normal;
    background: var(--grad-text);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

/* --- 7. MARKET --- */
.market-sub {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--ink);
    margin: 1rem 0 0.4rem;
    text-align: center;
}

.market-sub-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 2rem;
    max-width: 620px;
}

.market-geo {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.3rem;
    max-width: 1060px;
    width: 100%;
    margin-bottom: 3.2rem;
}

.market-geo-card {
    position: relative;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.7rem 1.5rem;
    box-shadow: var(--shadow-card);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.market-geo-card:hover {
    border-color: rgba(43, 179, 184, 0.5);
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-4px);
}

.market-geo-active {
    border-color: rgba(43, 179, 184, 0.55);
    background: linear-gradient(160deg, rgba(43, 179, 184, 0.06), transparent 55%);
}

.market-geo-tag {
    font-size: 0.64rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--teal-dark);
    background: rgba(43, 179, 184, 0.1);
    border: 1px solid rgba(43, 179, 184, 0.28);
    border-radius: 999px;
    padding: 0.25rem 0.7rem;
    margin-bottom: 0.9rem;
}

.market-geo-card h5 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 0.3rem;
}

.market-geo-number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    color: var(--teal-dark);
    letter-spacing: -0.03em;
    line-height: 1;
}

.market-geo-detail {
    font-size: 0.74rem;
    color: var(--text-dim);
    margin-bottom: 0.9rem;
}

.market-geo-stats {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    font-size: 0.78rem;
    color: var(--text-muted);
    border-top: 1px solid var(--border);
    padding-top: 0.8rem;
    width: 100%;
    margin-top: auto;
}

.market-problems {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.3rem;
    max-width: 1060px;
    width: 100%;
    margin-bottom: 2.6rem;
}

.market-problem-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.7rem;
    box-shadow: var(--shadow-card);
    text-align: center;
}

.market-problem-card:hover {
    border-color: rgba(43, 179, 184, 0.5);
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-3px);
}

.market-problem-highlight {
    background: var(--dark-panel);
    border-color: transparent;
}

.market-problem-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2.3rem;
    font-weight: 800;
    color: var(--ink);
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.market-problem-highlight .market-problem-number {
    background: var(--grad-text);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.market-problem-label {
    display: block;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.45rem;
}

.market-problem-highlight .market-problem-label { color: #eafcfd; }

.market-problem-cagr {
    display: block;
    font-size: 0.76rem;
    color: var(--text-dim);
}

.market-problem-highlight .market-problem-cagr { color: rgba(216, 253, 255, 0.6); }

/* Shared teal insight strip (market + competitors) */
.market-insight {
    max-width: 900px;
    width: 100%;
    background: rgba(43, 179, 184, 0.07);
    border: 1px solid rgba(43, 179, 184, 0.24);
    border-radius: 16px;
    padding: 1.4rem 2rem;
    text-align: center;
    margin-bottom: 1rem;
}

.market-insight p {
    font-size: 0.96rem;
    color: var(--ink-2);
    line-height: 1.6;
}

.market-insight strong { color: var(--teal-deep); font-weight: 700; }

/* --- 7.5 COMPETITIVE LANDSCAPE --- */
.comp-matrix {
    max-width: 1080px;
    width: 100%;
    margin: 1.6rem 0 1rem;
    overflow-x: auto;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-card);
    -webkit-overflow-scrolling: touch;
}

.comp-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.85rem;
    min-width: 720px;
    background: var(--bg);
}

.comp-table th,
.comp-table td {
    padding: 0.7rem 0.6rem;
    text-align: center;
    border-bottom: 1px solid var(--border);
}

.comp-table thead th {
    font-family: var(--font-display);
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--text-muted);
    background: var(--bg-soft);
    position: sticky;
    top: 0;
}

.comp-table tbody td:first-child,
.comp-table thead th:first-child {
    text-align: left;
    font-weight: 600;
    color: var(--ink);
    white-space: nowrap;
}

.comp-table th.comp-viky {
    color: #fff;
    background: var(--grad);
    border-radius: 8px 8px 0 0;
}

.comp-table td.comp-viky {
    background: rgba(43, 179, 184, 0.07);
    font-weight: 700;
}

.comp-infra-row td { background: rgba(15, 97, 104, 0.02); }
.comp-infra-row td.comp-viky { background: rgba(43, 179, 184, 0.09); }

.comp-yes { color: var(--teal-dark); font-weight: 700; }
.comp-partial { color: #d98a00; font-weight: 700; }
.comp-no { color: var(--text-dim); font-size: 0.8rem; }
.comp-na { color: var(--border-strong); }

.comp-table-note {
    font-size: 0.72rem;
    color: var(--text-dim);
    margin-bottom: 2.6rem;
    text-align: center;
}

.comp-players-title {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 1.4rem;
    text-align: center;
}

.comp-segments {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.2rem;
    max-width: 1080px;
    width: 100%;
    margin-bottom: 2.4rem;
}

.comp-segment {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem 1.4rem;
    box-shadow: var(--shadow-card);
}

.comp-segment h5 {
    font-family: var(--font-display);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    color: var(--teal-dark);
    text-transform: uppercase;
    margin-bottom: 1rem;
    padding-bottom: 0.7rem;
    border-bottom: 1px solid var(--border);
}

.comp-player { margin-bottom: 0.9rem; }
.comp-player:last-child { margin-bottom: 0; }

.comp-player-name {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 0.15rem;
}

.comp-player-detail {
    display: block;
    font-size: 0.74rem;
    color: var(--text-muted);
    line-height: 1.45;
}

.comp-insight {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.3rem;
    max-width: 980px;
    width: 100%;
}

.comp-insight-item {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem 1.7rem;
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
    box-shadow: var(--shadow-card);
}

.comp-insight-item strong {
    display: block;
    font-family: var(--font-display);
    color: var(--ink);
    margin-bottom: 0.3rem;
}

.comp-insight-item:last-child {
    border-color: rgba(43, 179, 184, 0.4);
    background: linear-gradient(160deg, rgba(43, 179, 184, 0.05), transparent 60%);
}

/* --- 9. THE ASK — dark money slide --- */
.ask {
    background: var(--dark-panel);
    position: relative;
    overflow: hidden;
}

.ask::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 55% 80% at 50% -10%, rgba(43, 179, 184, 0.22), transparent 60%),
        radial-gradient(ellipse 40% 60% at 8% 110%, rgba(43, 179, 184, 0.12), transparent 55%);
    pointer-events: none;
}

.ask > * { position: relative; z-index: 1; }

.ask .section-label {
    color: #8ceaef;
    background: rgba(43, 179, 184, 0.14);
    border-color: rgba(140, 234, 239, 0.35);
}

.ask-content {
    text-align: center;
    margin-bottom: 2.8rem;
}

.ask-amount {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1;
    background: var(--grad-text);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.ask-round {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.72);
    margin-top: 0.7rem;
}

.ask-allocation {
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
    max-width: 720px;
    width: 100%;
}

.ask-item-top {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.6rem;
}

.ask-item h4 {
    font-family: var(--font-display);
    font-size: 1.02rem;
    font-weight: 700;
    color: #fff;
}

.ask-pct {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: #8ceaef;
}

.ask-bar {
    position: relative;
    height: 9px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    overflow: hidden;
    margin-bottom: 0.7rem;
}

.ask-bar::after {
    content: '';
    position: absolute;
    inset: 0 auto 0 0;
    width: var(--width, 100%);
    background: var(--grad);
    border-radius: 999px;
}

.ask-item p {
    font-size: 0.86rem;
    color: rgba(255, 255, 255, 0.62);
    line-height: 1.6;
}

/* --- ACCREDITATION --- */
.accred-context {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.3rem;
    max-width: 980px;
    width: 100%;
    margin-bottom: 2.6rem;
}

.accred-context-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.6rem;
    box-shadow: var(--shadow-card);
}

.accred-context-number {
    font-family: var(--font-display);
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--teal-dark);
    letter-spacing: -0.02em;
    line-height: 1;
    flex-shrink: 0;
}

.accred-context-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.55;
}

.accred-context-card strong { color: var(--ink); }

.accred-table-wrapper {
    max-width: 1080px;
    width: 100%;
    overflow-x: auto;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-card);
    margin-bottom: 2rem;
    -webkit-overflow-scrolling: touch;
}

.accred-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.83rem;
    min-width: 760px;
    background: var(--bg);
}

.accred-table th,
.accred-table td {
    padding: 0.85rem 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border);
    vertical-align: top;
}

.accred-table thead th {
    font-family: var(--font-display);
    font-size: 0.76rem;
    font-weight: 700;
    color: var(--text-muted);
    background: var(--bg-soft);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.accred-table td { color: var(--text-muted); line-height: 1.5; }

.std-code {
    display: block;
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--ink);
    font-size: 0.82rem;
}

.std-ref {
    display: block;
    font-size: 0.7rem;
    color: var(--text-dim);
    margin-top: 0.2rem;
}

.future-row td { background: rgba(15, 97, 104, 0.02); opacity: 0.85; }

.status-badge {
    display: inline-block;
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 0.28rem 0.7rem;
    border-radius: 999px;
    white-space: nowrap;
}

.status-live {
    color: #2e7d32;
    background: rgba(76, 175, 80, 0.12);
    border: 1px solid rgba(76, 175, 80, 0.3);
}

.status-val {
    color: #b06a00;
    background: rgba(255, 152, 0, 0.1);
    border: 1px solid rgba(255, 152, 0, 0.3);
}

.status-next {
    color: var(--text-muted);
    background: var(--bg-soft);
    border: 1px solid var(--border-strong);
}

.accred-bottom {
    max-width: 900px;
    width: 100%;
    background: var(--dark-panel);
    border-radius: 18px;
    padding: 1.6rem 2.2rem;
    text-align: center;
    box-shadow: 0 26px 54px -26px rgba(10, 39, 44, 0.55);
}

.accred-bottom p {
    font-size: 0.98rem;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.6;
}

.accred-bottom strong { color: #8ceaef; }

/* --- 10. CONTACT — dark close --- */
.contact {
    background: #0a272c;
    position: relative;
    overflow: hidden;
    gap: 0.3rem;
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.contact::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 90% at 50% -10%, rgba(43, 179, 184, 0.2), transparent 60%);
    pointer-events: none;
}

.contact > * { position: relative; z-index: 1; }

.contact-logo {
    height: 40px;
    filter: brightness(0) invert(1);
    opacity: 0.9;
    margin-bottom: 1.4rem;
}

.contact .section-title { color: #fff; }

.contact-email {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: #8ceaef;
    text-decoration: none;
    margin-top: 0.8rem;
    transition: filter 0.2s;
}

.contact-email:hover { filter: brightness(1.15); }

.contact-url {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 0.4rem;
}

/* --- Responsive --- */
@media (max-width: 1080px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .capabilities { grid-template-columns: repeat(2, 1fr); }
    .market-geo { grid-template-columns: repeat(2, 1fr); }
    .market-problems { grid-template-columns: repeat(2, 1fr); }
    .comp-segments { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .stats-grid { grid-template-columns: 1fr 1fr; max-width: 460px; }
    .capabilities { grid-template-columns: 1fr; max-width: 460px; }
    .market-geo { grid-template-columns: 1fr; max-width: 400px; }
    .market-problems { grid-template-columns: 1fr; max-width: 400px; }
    .comp-segments { grid-template-columns: 1fr; max-width: 420px; }
    .comp-insight { grid-template-columns: 1fr; max-width: 460px; }
    .accred-context { grid-template-columns: 1fr; max-width: 460px; }
    .vision-timeline { grid-template-columns: 1fr; gap: 1.8rem; }
    .vision-timeline::before { display: none; }
    .step-arrow { display: none; }
    .how-it-works .step { max-width: 340px; }
}
