/* ── Section headings ──────────────────────────────── */
.section-heading {
    font-size: 2.5rem; font-weight: 800;
    text-align: center; letter-spacing: -1.2px;
    line-height: 1.15; margin-bottom: 16px;
    color: var(--color-text);
}
.section-heading::after {
    content: ''; display: block; width: 48px; height: 3px;
    background: linear-gradient(90deg, #4e8eb8, #c89060);
    margin: 20px auto 0; border-radius: 2px;
}
.section-subheading {
    text-align: center; color: var(--color-text-secondary);
    font-size: 1.05rem; max-width: 580px;
    margin: 0 auto 64px; line-height: 1.75;
}

/* ── Section glow effects ─────────────────────────── */
.features-section::after,
.tiers-section::after,
.benchmarks-section::after,
.testimonials-section::after,
.cta-section .cta-glow {
    pointer-events: none;
}
.features-section::after {
    content: ''; position: absolute; bottom: -100px; left: 50%;
    transform: translateX(-50%); width: 800px; height: 400px;
    background: radial-gradient(ellipse, rgba(78,142,184,0.07) 0%, transparent 70%);
    filter: blur(40px); z-index: 0;
}
.tiers-section::after {
    content: ''; position: absolute; top: -80px; right: 10%;
    width: 600px; height: 400px;
    background: radial-gradient(ellipse, rgba(200,144,96,0.05) 0%, transparent 70%);
    filter: blur(50px); z-index: 0;
}
.benchmarks-section::after {
    content: ''; position: absolute; bottom: -50px; left: 20%;
    width: 700px; height: 350px;
    background: radial-gradient(ellipse, rgba(78,142,184,0.06) 0%, transparent 70%);
    filter: blur(40px); z-index: 0;
}
.testimonials-section::after {
    content: ''; position: absolute; top: -60px; right: 20%;
    width: 500px; height: 300px;
    background: radial-gradient(ellipse, rgba(200,144,96,0.04) 0%, transparent 70%);
    filter: blur(50px); z-index: 0;
}
.about-section::before {
    content: ''; position: absolute; inset: 0; pointer-events: none;
    background: radial-gradient(ellipse at 30% 50%, rgba(78,142,184,0.04) 0%, transparent 60%);
}

/* ── Providers strip ──────────────────────────────── */
.providers {
    padding: 56px 24px; text-align: center; position: relative;
}
.providers::before {
    content: ''; position: absolute; top: 0; left: 10%; right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(78, 142, 184, 0.12), transparent);
}
.providers-label {
    font-size: 0.82rem; color: var(--color-text-muted);
    margin-bottom: 28px; letter-spacing: 0.3px; font-weight: 500;
}
.providers-row {
    display: flex; justify-content: center; align-items: center;
    gap: 40px; flex-wrap: wrap; max-width: 900px; margin: 0 auto;
}
.provider {
    font-size: 0.9rem; font-weight: 700;
    color: rgba(255, 255, 255, 0.25);
    transition: all 0.3s ease;
    cursor: default; letter-spacing: 0.5px;
}
.provider:hover {
    color: var(--brand, #7ab0d0);
    transform: scale(1.1);
    text-shadow: 0 0 20px var(--brand, rgba(110, 150, 175, 0.4));
}

/* ── Feature cards ────────────────────────────────── */
.features-section {
    padding: 100px 24px; position: relative;
}
.features-section::before {
    content: ''; position: absolute; inset: 0; pointer-events: none;
    background:
        radial-gradient(ellipse at 20% 20%, rgba(78, 142, 184, 0.04) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(130, 165, 185, 0.03) 0%, transparent 50%);
}
.features-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 24px; max-width: 1100px; margin: 0 auto;
}
.feature-card {
    background: rgba(12, 18, 28, 0.25);
    background-image: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.01) 100%);
    backdrop-filter: blur(28px) saturate(1.1); -webkit-backdrop-filter: blur(28px) saturate(1.1);
    border-radius: 16px;
    border: 1px solid var(--color-border);
    padding: 30px;
    transition: box-shadow 0.4s ease, border-color 0.4s ease, background 0.4s ease, transform 0.2s ease;
    position: relative;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
    transform-style: preserve-3d; will-change: transform;
}
.feature-card::before {
    content: ''; position: absolute; inset: 0;
    border-radius: 16px; padding: 1px;
    background: linear-gradient(135deg,
        rgba(78, 142, 184, 0) 0%, rgba(78, 142, 184, 0.25) 40%,
        rgba(130, 165, 185, 0.15) 70%, transparent 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor; mask-composite: exclude;
    opacity: 0; transition: opacity 0.4s ease;
    pointer-events: none;
}
.feature-card:hover {
    border-color: transparent;
    background: var(--color-surface-hover);
    box-shadow: 0 24px 48px -12px rgba(0, 0, 0, 0.4),
                0 0 0 1px rgba(78, 142, 184, 0.08) inset;
}
.feature-card:hover::before { opacity: 1; }

.feature-icon-wrap {
    width: 48px; height: 48px; border-radius: 12px;
    background: rgba(78, 142, 184, 0.08);
    border: 1px solid rgba(78, 142, 184, 0.12);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px; font-size: 1.15rem; color: #7ab0d0;
    transition: all 0.35s ease;
}
.feature-card:hover .feature-icon-wrap {
    background: rgba(78, 142, 184, 0.14);
    box-shadow: 0 0 24px rgba(78, 142, 184, 0.2);
    transform: scale(1.08);
}
.feature-card h3 {
    font-size: 1.1rem; font-weight: 650;
    margin-bottom: 10px; color: var(--color-text);
    transition: color 0.3s ease;
}
.feature-card:hover h3 { color: #fff; }
.feature-card p {
    font-size: 0.875rem; line-height: 1.7;
    color: var(--color-text-secondary);
    transition: color 0.3s ease;
}
.feature-card:hover p { color: rgba(255, 255, 255, 0.7); }

/* Card spotlight — mouse-tracking radial glow */
.feature-card::after,
.coming-card::after {
    content: ''; position: absolute; inset: 0;
    border-radius: inherit;
    background: radial-gradient(
        280px circle at var(--mx, 50%) var(--my, 50%),
        rgba(78, 142, 184, 0.07), transparent 60%
    );
    opacity: 0; transition: opacity 0.35s ease; pointer-events: none;
}
.feature-card:hover::after,
.coming-card:hover::after { opacity: 1; }

/* ── Stats strip ──────────────────────────────────── */
.stats-strip {
    padding: 48px 24px;
    background: rgba(12, 18, 28, 0.25);
    background-image: linear-gradient(180deg,
        rgba(78, 142, 184, 0.015), rgba(78, 142, 184, 0.04), rgba(78, 142, 184, 0.015));
    border-top: 1px solid rgba(78, 142, 184, 0.06);
    border-bottom: 1px solid rgba(78, 142, 184, 0.06);
    backdrop-filter: blur(28px) saturate(1.1); -webkit-backdrop-filter: blur(28px) saturate(1.1);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
}
.stats-inner {
    max-width: 860px; margin: 0 auto;
    display: flex; justify-content: center; align-items: center;
    gap: 48px; flex-wrap: wrap;
}
.stat-item { text-align: center; }
.stat-value {
    font-size: 2.5rem; font-weight: 800; letter-spacing: -1px;
    line-height: 1; display: inline;
}
.stat-suffix { font-size: 2.5rem; font-weight: 800; letter-spacing: -1px; display: inline; }
.stat-label {
    display: block; margin-top: 8px; font-size: 0.78rem;
    color: var(--color-text-muted); letter-spacing: 0.5px; font-weight: 500;
}
.stat-sep {
    width: 1px; height: 44px;
    background: linear-gradient(180deg, transparent, rgba(78, 142, 184, 0.2), transparent);
    flex-shrink: 0;
}

/* ── Showcase (fullwidth SVG panels) ──────────────── */
.showcase-fullwidth {
    padding: 40px 0 80px;
}
.showcase-panel {
    max-width: 1200px; margin: 0 auto 100px; padding: 0;
}
.showcase-fullsvg {
    width: 100%; aspect-ratio: 1280 / 820; display: block;
}

/* Mobile text fallback — hidden on desktop, shown above SVG on mobile */
.showcase-mobile-text { display: none; }
.showcase-mobile-text + .showcase-fullsvg { margin-top: 0; }
.showcase-mobile-text h2 {
    font-size: 1.75rem; font-weight: 800; color: var(--color-text);
    letter-spacing: -1px; margin-bottom: 12px;
}
.showcase-mobile-text p {
    font-size: 0.88rem; line-height: 1.65; color: var(--color-text-secondary);
    margin-bottom: 16px;
}
.showcase-mobile-tags {
    display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 16px;
}
.showcase-mobile-tags span {
    font-size: 0.65rem; font-weight: 600; letter-spacing: 0.5px;
    padding: 4px 10px; border-radius: 100px;
    border: 1px solid; background: rgba(255,255,255,0.02);
}
.smt-cards { display: flex; flex-direction: column; gap: 10px; }
.smt-card {
    background: rgba(13,18,31,0.6); border: 1px solid rgba(255,255,255,0.05);
    border-left: 3px solid; border-radius: 6px; padding: 14px 16px;
}
.smt-head {
    font-size: 0.85rem; font-weight: 600; color: #f0f2f5;
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 4px;
    margin-bottom: 4px;
}
.smt-head span { font-family: 'JetBrains Mono', monospace; font-size: 0.6rem; font-weight: 400; }
.smt-body { font-size: 0.78rem; color: #64748b; line-height: 1.5; }
.showcase {
    padding: 40px 24px 80px;
    max-width: 1100px; margin: 0 auto;
}
.showcase-item {
    display: flex; align-items: center;
    gap: 72px; padding: 64px 0;
}
.showcase-item + .showcase-item {
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}
.showcase-item.reverse { flex-direction: row-reverse; }
.showcase-content { flex: 1; }
.showcase-badge {
    display: inline-block; padding: 5px 14px; border-radius: 100px;
    background: rgba(78, 142, 184, 0.08);
    border: 1px solid rgba(78, 142, 184, 0.15);
    font-size: 0.7rem; font-weight: 700; color: #a8d0e0;
    text-transform: uppercase; letter-spacing: 1.5px;
    margin-bottom: 18px;
}
.showcase-title {
    font-size: 2.25rem; font-weight: 800;
    letter-spacing: -1px; line-height: 1.12;
    margin-bottom: 18px; color: var(--color-text);
}
.showcase-desc {
    font-size: 1rem; line-height: 1.75;
    color: var(--color-text-secondary); margin-bottom: 24px;
}
.showcase-list {
    list-style: none; display: flex; flex-direction: column;
    gap: 10px; margin-bottom: 20px; padding: 0;
}
.showcase-list li {
    display: flex; align-items: flex-start; gap: 10px;
    font-size: 0.9rem; color: var(--color-text-secondary);
    line-height: 1.5;
}
.showcase-list li i {
    color: #34d399; font-size: 0.65rem; flex-shrink: 0;
    margin-top: 0.4em;
}
.showcase-status {
    display: inline-block; padding: 4px 12px; border-radius: 100px;
    background: rgba(78, 142, 184, 0.08);
    font-size: 0.7rem; font-weight: 600; color: #7ab0d0;
}
.showcase-visual {
    flex-shrink: 0; width: 320px; height: 320px;
    border-radius: 24px;
    background: rgba(12, 18, 28, 0.2);
    background-image: radial-gradient(circle at center, rgba(78, 142, 184, 0.06), transparent 70%);
    backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
    border: 1px solid var(--color-border);
    display: flex; align-items: center; justify-content: center;
    position: relative; overflow: hidden;
}
.visual-glow {
    position: absolute; width: 200px; height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(78, 142, 184, 0.2), transparent);
    filter: blur(50px);
    animation: vis-pulse 5s ease-in-out infinite alternate;
}
.visual-glow.purple {
    background: radial-gradient(circle, rgba(100, 140, 170, 0.2), transparent);
}
@keyframes vis-pulse {
    from { transform: scale(0.85); opacity: 0.5; }
    to { transform: scale(1.15); opacity: 1; }
}
/* ── Showcase image animations ─────────────────────── */
.showcase-svg {
    width: 100%; height: 100%;
    border-radius: inherit; position: absolute; inset: 0;
    z-index: 2;
    animation: svg-hue 25s ease-in-out infinite;
    transition: transform 0.8s var(--ease-out), filter 0.8s ease;
}
.showcase-visual:hover .showcase-svg {
    transform: scale(1.03);
    filter: brightness(1.12);
}
@keyframes svg-hue {
    0%, 100% { filter: hue-rotate(0deg) brightness(1); }
    35% { filter: hue-rotate(12deg) brightness(1.04); }
    65% { filter: hue-rotate(-8deg) brightness(0.97); }
}

/* Light sweep band */
.img-sweep {
    position: absolute; inset: 0; z-index: 3;
    overflow: hidden; pointer-events: none; border-radius: inherit;
}
.img-sweep::after {
    content: ''; position: absolute; top: -10%; bottom: -10%;
    width: 35%;
    background: linear-gradient(105deg,
        transparent 0%, rgba(200,144,96,0.04) 25%,
        rgba(255,255,255,0.06) 50%,
        rgba(78,142,184,0.04) 75%, transparent 100%
    );
    animation: sweep-move 8s ease-in-out infinite;
    filter: blur(8px);
}
@keyframes sweep-move {
    0% { left: -40%; }
    100% { left: 105%; }
}

/* Center pulse glow */
.showcase-visual:not(.purple) .img-pulse {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 35%; height: 35%; border-radius: 50%;
    background: radial-gradient(circle, rgba(200,144,96,0.12), transparent 70%);
    animation: pulse-core 5s ease-in-out infinite alternate;
    z-index: 3; pointer-events: none;
}
.showcase-visual.purple .img-pulse {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 55%; height: 55%; border-radius: 50%;
    background: radial-gradient(circle, rgba(78,142,184,0.08), transparent 70%);
    animation: pulse-core 7s ease-in-out infinite alternate;
    z-index: 3; pointer-events: none;
}
@keyframes pulse-core {
    0% { transform: translate(-50%, -50%) scale(0.7); opacity: 0.3; }
    100% { transform: translate(-50%, -50%) scale(1.4); opacity: 0.8; }
}

/* Floating sparks */
.img-spark {
    position: absolute; z-index: 4; pointer-events: none;
    width: 3px; height: 3px; border-radius: 50%;
    background: rgba(78,142,184,0.6);
    box-shadow: 0 0 6px rgba(78,142,184,0.4);
    left: var(--x, 50%); top: var(--y, 50%);
    animation: spark-rise var(--d, 6s) ease-in-out infinite;
}
.img-spark.copper {
    background: rgba(200,144,96,0.6);
    box-shadow: 0 0 6px rgba(200,144,96,0.4);
}
@keyframes spark-rise {
    0%, 100% { transform: translateY(0) scale(0); opacity: 0; }
    15% { transform: translateY(-5px) scale(1); opacity: 0.9; }
    85% { transform: translateY(-40px) scale(0.6); opacity: 0.3; }
    100% { transform: translateY(-50px) scale(0); opacity: 0; }
}

/* Edge breathe */
.showcase-visual {
    animation: edge-breathe 6s ease-in-out infinite;
}
@keyframes edge-breathe {
    0%, 100% { box-shadow: 0 0 20px rgba(78,142,184,0.04), inset 0 0 0 1px rgba(255,255,255,0.06); }
    50% { box-shadow: 0 0 35px rgba(78,142,184,0.08), inset 0 0 0 1px rgba(255,255,255,0.1); }
}
.showcase-img-fallback {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    position: relative;
}
.showcase-icon {
    font-size: 5rem; color: #7ab0d0; opacity: 0.55;
    filter: drop-shadow(0 0 40px rgba(78, 142, 184, 0.35));
    z-index: 1; transition: all 0.5s ease;
}
.showcase-visual:hover .showcase-icon {
    opacity: 0.75; transform: scale(1.08);
    filter: drop-shadow(0 0 50px rgba(78, 142, 184, 0.5));
}
/* Purple variant */
.showcase-visual.purple {
    background: radial-gradient(circle at center, rgba(100, 140, 170, 0.06), transparent 70%);
}
.showcase-visual.purple .showcase-icon { color: #7ab0d0; }

/* Orbital rings */
.orbit {
    position: absolute; border-radius: 50%;
    border: 1px solid rgba(78, 142, 184, 0.08);
    animation: orbit-spin linear infinite;
}
.orbit::after {
    content: ''; position: absolute; top: -4px; left: 50%;
    width: 8px; height: 8px; border-radius: 50%;
    background: #7ab0d0;
    box-shadow: 0 0 12px rgba(78, 142, 184, 0.6);
    transform: translateX(-50%);
}
.orbit-1 { width: 150px; height: 150px; animation-duration: 10s; }
.orbit-2 { width: 220px; height: 220px; animation-duration: 16s; animation-direction: reverse; }
.orbit-2::after { width: 6px; height: 6px; background: #a8d0e0; box-shadow: 0 0 10px rgba(130, 165, 185, 0.5); }
.orbit-3 { width: 280px; height: 280px; animation-duration: 24s; }
.orbit-3::after { width: 5px; height: 5px; opacity: 0.6; }
.showcase-visual.purple .orbit { border-color: rgba(100, 140, 170, 0.08); }
.showcase-visual.purple .orbit::after { background: #7ab0d0; box-shadow: 0 0 12px rgba(100, 140, 170, 0.5); }
@keyframes orbit-spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

/* ── Coming soon ──────────────────────────────────── */
.coming-section {
    padding: 80px 24px;
    background: linear-gradient(180deg, transparent, rgba(78, 142, 184, 0.02) 50%, transparent);
}
.coming-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 24px; max-width: 900px; margin: 0 auto;
}
.coming-card {
    text-align: center; padding: 36px 24px;
    border-radius: 16px;
    border: 1px solid var(--color-border);
    background: rgba(12, 18, 28, 0.25);
    background-image: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.01) 100%);
    backdrop-filter: blur(28px) saturate(1.1); -webkit-backdrop-filter: blur(28px) saturate(1.1);
    transition: all 0.4s var(--ease-out);
    position: relative; overflow: hidden;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
}
.coming-card:hover {
    border-color: rgba(78, 142, 184, 0.15);
    box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.35);
}
.coming-card i {
    font-size: 2rem; color: #7ab0d0; margin-bottom: 18px; display: block;
    filter: drop-shadow(0 0 12px rgba(78, 142, 184, 0.25));
}
.coming-card h3 {
    font-size: 1rem; font-weight: 600;
    margin-bottom: 10px; color: var(--color-text);
}
.coming-card p {
    font-size: 0.85rem; line-height: 1.65;
    color: var(--color-text-secondary);
}

/* ── Model tiers ──────────────────────────────────── */
.tiers-section { padding: 80px 24px; overflow: visible; }
.tiers-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 24px; max-width: 1000px; margin: 0 auto;
}
.tier-card {
    background: rgba(12, 18, 28, 0.25);
    background-image: linear-gradient(135deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.01) 100%);
    backdrop-filter: blur(28px) saturate(1.1); -webkit-backdrop-filter: blur(28px) saturate(1.1);
    border: 1px solid rgba(255,255,255,0.08); border-radius: 20px; padding: 28px;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
    transition: box-shadow 0.4s ease, border-color 0.4s ease, transform 0.2s ease;
    transform-style: preserve-3d; will-change: transform;
}
.tier-card.featured {
    border-color: rgba(78, 142, 184, 0.2);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), 0 0 40px rgba(78, 142, 184, 0.06);
}
.tier-card:hover { box-shadow: 0 20px 40px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.08); }
.tier-badge {
    display: inline-block; padding: 3px 10px; border-radius: 100px;
    font-size: 0.62rem; font-weight: 700; color: var(--color-text-muted);
    background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.06);
    text-transform: uppercase; letter-spacing: 1.2px; margin-bottom: 16px;
}
.tier-card.featured .tier-badge {
    color: #4e8eb8; background: rgba(78,142,184,0.06); border-color: rgba(78,142,184,0.15);
}
.tier-badge.asi {
    color: #c89060; background: rgba(200,144,96,0.06); border-color: rgba(200,144,96,0.15);
}
.tier-name {
    font-size: 1.35rem; font-weight: 800; color: var(--color-text);
    margin-bottom: 4px; letter-spacing: -0.5px;
}
.tier-tagline { font-size: 0.82rem; color: var(--color-text-muted); margin-bottom: 14px; }
.tier-desc {
    font-size: 0.8rem; line-height: 1.7; color: var(--color-text-secondary); margin-bottom: 20px;
}
.tier-highlights { display: flex; flex-direction: column; gap: 7px; }
.tier-highlights span {
    font-size: 0.7rem; color: var(--color-text-muted);
    display: flex; align-items: center; gap: 8px;
}
.tier-highlights span::before {
    content: ''; width: 4px; height: 4px; border-radius: 50%;
    background: rgba(255,255,255,0.12); flex-shrink: 0;
}
.tier-card.featured .tier-highlights span::before { background: rgba(78,142,184,0.35); }

/* ── Benchmarks ───────────────────────────────────── */
.benchmarks-section { padding: 80px 24px; overflow: visible; }
.benchmark-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 28px; max-width: 1000px; margin: 0 auto;
}
.radar-card, .bars-card {
    background: rgba(12, 18, 28, 0.25);
    background-image: linear-gradient(135deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.008) 100%);
    backdrop-filter: blur(32px) saturate(1.15); -webkit-backdrop-filter: blur(32px) saturate(1.15);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px; padding: 28px;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
}
.bench-card-title {
    font-size: 0.85rem; font-weight: 700; color: var(--color-text);
    margin-bottom: 20px; letter-spacing: 0.2px;
}

/* Radar chart */
.radar-chart {
    width: 100%; height: auto; display: block;
    opacity: 0; transform: scale(0.92);
    transition: opacity 0.9s var(--ease-out) 0.2s, transform 0.9s var(--ease-out) 0.2s;
}
.radar-card.visible .radar-chart { opacity: 1; transform: scale(1); }
.radar-legend { display: flex; flex-direction: column; gap: 8px; margin-top: 20px; }
.legend-item {
    display: flex; align-items: center; gap: 10px;
    font-size: 0.78rem; color: var(--color-text-secondary);
}
.legend-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.legend-label { flex: 1; }
.legend-score {
    font-weight: 700; color: var(--color-text);
    font-variant-numeric: tabular-nums; font-size: 0.8rem;
}

/* Bar chart */
.bar-item {
    display: flex; align-items: center; gap: 10px;
    margin-bottom: 9px;
}
.bar-label {
    width: 120px; font-size: 0.68rem; color: var(--color-text-secondary);
    text-align: right; flex-shrink: 0; font-weight: 500;
}
.bar-track {
    flex: 1; height: 7px; border-radius: 4px;
    background: rgba(255,255,255,0.03); overflow: hidden;
}
.bar-fill {
    height: 100%; border-radius: 4px;
    background: var(--c, #7ab0d0);
    width: 0%; transition: width 1s var(--ease-out);
}
.bars-card.visible .bar-fill { width: var(--w); }
.bar-item:nth-child(2) .bar-fill { transition-delay: 0.1s; }
.bar-item:nth-child(3) .bar-fill { transition-delay: 0.15s; }
.bar-item:nth-child(4) .bar-fill { transition-delay: 0.2s; }
.bar-item:nth-child(5) .bar-fill { transition-delay: 0.25s; }
.bar-item:nth-child(6) .bar-fill { transition-delay: 0.3s; }
.bar-item:nth-child(7) .bar-fill { transition-delay: 0.35s; }
.bar-item:nth-child(8) .bar-fill { transition-delay: 0.4s; }
.bar-item:nth-child(9) .bar-fill { transition-delay: 0.45s; }
.bar-item:nth-child(10) .bar-fill { transition-delay: 0.5s; }
.bar-item:nth-child(11) .bar-fill { transition-delay: 0.55s; }
.bar-fill.hero {
    background: linear-gradient(90deg, #a87850, #c89060);
    box-shadow: 0 0 10px rgba(200, 144, 96, 0.3);
}
.bar-val {
    width: 34px; font-size: 0.72rem; font-weight: 700;
    color: var(--color-text); font-variant-numeric: tabular-nums;
}
.bench-note {
    font-size: 0.62rem; color: var(--color-text-muted);
    margin-top: 16px; font-style: italic; line-height: 1.6;
}

/* ── Testimonials ─────────────────────────────────── */
.testimonials-section { padding: 80px 24px; overflow: visible; }
.testimonials-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 18px; max-width: 1100px; margin: 0 auto;
}
.testimonial-card {
    background: rgba(12, 18, 28, 0.25);
    background-image: linear-gradient(135deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.01) 100%);
    backdrop-filter: blur(28px) saturate(1.1); -webkit-backdrop-filter: blur(28px) saturate(1.1);
    border: 1px solid rgba(255,255,255,0.06); border-radius: 16px;
    padding: 24px; transition: box-shadow 0.4s ease, border-color 0.4s ease;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}
.testimonial-card:hover {
    border-color: rgba(78, 142, 184, 0.15);
    box-shadow: 0 16px 32px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.06);
}
.testimonial-stars {
    color: #c89060; font-size: 0.85rem; letter-spacing: 2px; margin-bottom: 14px;
}
.testimonial-text {
    font-size: 0.85rem; line-height: 1.7; color: var(--color-text-secondary);
    margin-bottom: 18px; font-style: italic;
}
.testimonial-author {
    display: flex; align-items: center; gap: 12px;
}
.testimonial-initials {
    width: 36px; height: 36px; border-radius: 50%;
    background: rgba(78, 142, 184, 0.12); color: #7ab0d0;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.7rem; font-weight: 700; flex-shrink: 0;
    border: 1px solid rgba(78, 142, 184, 0.15);
}
.testimonial-author strong {
    font-size: 0.8rem; color: var(--color-text); display: block;
}
.testimonial-author span {
    font-size: 0.7rem; color: var(--color-text-muted);
}

/* ── About / CEO ──────────────────────────────────── */
.about-section {
    padding: 80px 24px;
    background: linear-gradient(180deg, transparent, rgba(78, 142, 184, 0.02) 50%, transparent);
}
.about-inner {
    max-width: 900px; margin: 0 auto;
    display: flex; align-items: center; gap: 56px;
}
.about-photo {
    flex-shrink: 0;
    width: 220px;
    min-height: 420px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}
.ceo-img {
    display: block; width: 100%; height: 100%;
    object-fit: cover; object-position: center top;
    border-radius: inherit;
    filter: grayscale(0.15);
}
.about-content { flex: 1; }
.about-badge {
    display: inline-block; padding: 5px 14px; border-radius: 100px;
    background: rgba(78, 142, 184, 0.06);
    border: 1px solid rgba(78, 142, 184, 0.12);
    font-size: 0.7rem; font-weight: 700; color: #7ab0d0;
    text-transform: uppercase; letter-spacing: 1.2px; margin-bottom: 18px;
}
.about-title {
    font-size: 2rem; font-weight: 800; color: var(--color-text);
    letter-spacing: -0.8px; line-height: 1.15; margin-bottom: 16px;
}
.about-text {
    font-size: 0.9rem; line-height: 1.7; color: var(--color-text-secondary);
    margin-bottom: 24px;
}
.about-meta {
    display: flex; flex-wrap: wrap; gap: 10px 20px; margin-bottom: 24px;
}
.about-meta-item {
    font-size: 0.75rem; color: var(--color-text-muted);
    display: flex; align-items: center; gap: 8px;
}
.about-meta-item i { color: #7ab0d0; font-size: 0.7rem; }
.about-founder {
    padding-top: 16px; border-top: 1px solid rgba(255,255,255,0.05);
}
.about-founder strong {
    font-size: 0.9rem; color: var(--color-text); display: block; margin-bottom: 2px;
}
.about-founder span {
    font-size: 0.78rem; color: var(--color-text-muted);
}

/* ── CTA ──────────────────────────────────────────── */
.cta-section {
    padding: 120px 24px; text-align: center; position: relative;
}
.cta-glow {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 800px; height: 400px;
    background: radial-gradient(ellipse, rgba(78,142,184,0.1) 0%, rgba(200,144,96,0.04) 40%, transparent 70%);
    filter: blur(50px); pointer-events: none;
    animation: cta-breathe 6s ease-in-out infinite alternate;
}
@keyframes cta-breathe {
    0% { transform: translate(-50%,-50%) scale(0.9); opacity: 0.7; }
    100% { transform: translate(-50%,-50%) scale(1.1); opacity: 1; }
}
.cta-title {
    font-size: 2.75rem; font-weight: 800;
    letter-spacing: -1px; margin-bottom: 16px;
    color: var(--color-text);
}
.cta-subtitle {
    font-size: 1.1rem; color: var(--color-text-secondary);
    margin-bottom: 40px; max-width: 480px;
    margin-left: auto; margin-right: auto; line-height: 1.7;
}
.cta-btn {
    font-size: 1.05rem; padding: 16px 36px;
    position: relative; z-index: 1;
}
.cta-btn::before {
    content: ''; position: absolute;
    inset: -3px; border-radius: 103px;
    background: linear-gradient(135deg, #5a7d9a, #7a9db5, #a8d0e0, #7a9db5);
    background-size: 300% 300%;
    animation: cta-glow-shift 4s ease infinite;
    z-index: -1; opacity: 0.4; filter: blur(12px);
}
@keyframes cta-glow-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}
