/* Shared section kicker */
.sec-kicker {
    display: inline-block; font-family: var(--font-head);
    font-size: 0.75rem; font-weight: 600; letter-spacing: 2.5px;
    text-transform: uppercase; color: var(--c-accent); margin-bottom: 10px;
}

/* ---- Trust bar ---- */
.content-section.trust-bar { padding: 20px 0; background: var(--c-light2); }
.trust-inner {
    width: min(1100px, 92vw); margin: 0 auto;
    display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 12px 28px;
}
.trust-inner span {
    position: relative; font-family: var(--font-head);
    font-size: 0.82rem; font-weight: 600; letter-spacing: 0.4px; color: var(--c-text-dark);
}
.trust-inner span:not(:last-child)::after {
    content: ""; position: absolute; right: -15px; top: 50%;
    width: 5px; height: 5px; background: var(--c-accent); border-radius: 50%; transform: translateY(-50%);
}
@media (max-width: 700px) { .trust-inner span::after { display: none !important; } }

/* ---- Outputs / formats ---- */
.content-section.outputs-sec { padding: 8vh 0; text-align: center; }
.outputs-inner { max-width: 640px; margin: 0 auto; padding: 0 20px; }
.outputs-inner h2 {
    font-family: var(--font-head); font-size: clamp(24px, 3.4vw, 34px); font-weight: 700;
    color: var(--c-text-dark); margin: 0 0 12px 0;
}
.outputs-inner > p { color: var(--c-text-muted); font-size: 1.05rem; line-height: 1.6; margin: 0 0 24px 0; }
.fmt-row { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-bottom: 24px; }
.fmt {
    font-family: var(--font-head); font-weight: 600; font-size: 0.95rem; letter-spacing: 1px;
    color: var(--c-text-dark); background: #fff; border: 1px solid var(--c-border);
    border-radius: var(--radius-sm); padding: 12px 20px; box-shadow: var(--shadow-sm);
    transition: border-color 200ms var(--ease), color 200ms var(--ease), transform 200ms var(--ease);
}
.fmt:hover { border-color: var(--c-accent); color: var(--c-accent); transform: translateY(-2px); }
.outputs-link { font-family: var(--font-head); font-weight: 600; color: var(--c-bold1); text-decoration: none; }
.outputs-link:hover { color: var(--c-accent); }

/* ---- Experience band ---- */
.content-section.exp-band { padding: 9vh 0; background: var(--c-light2); text-align: center; }
.exp-inner { max-width: 820px; margin: 0 auto; padding: 0 22px; }
.exp-inner h2 {
    font-family: var(--font-head); font-size: clamp(26px, 3.8vw, 40px); font-weight: 800;
    color: var(--c-text-dark); line-height: 1.12; margin: 0 0 16px 0;
}
.exp-inner > p {
    color: var(--c-text-muted); font-size: 1.08rem; line-height: 1.65; margin: 0 auto 34px auto; max-width: 680px;
}
.exp-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
@media (max-width: 720px) { .exp-stats { grid-template-columns: repeat(2, 1fr); } }
.exp-stat {
    background: #fff; border: 1px solid var(--c-border); border-radius: var(--radius-md);
    padding: 22px 14px; box-shadow: var(--shadow-sm);
}
.exp-stat strong {
    display: block; font-family: var(--font-head); font-size: 1.7rem; font-weight: 800;
    color: var(--c-accent); line-height: 1; margin-bottom: 8px;
}
.exp-stat span { font-size: 0.82rem; color: var(--c-text-muted); line-height: 1.4; }

/* ---- Closing CTA ---- */
.content-section.home-cta { padding: 9vh 0; background: var(--c-dark2); color: #fff; text-align: center; }
.home-cta h2 { font-family: var(--font-head); font-size: clamp(26px, 3.6vw, 40px); font-weight: 800; margin: 0 0 12px 0; }
.home-cta > p { color: rgba(255,255,255,0.75); font-size: 1.08rem; margin: 0 0 24px 0; }
.home-cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.cta-ghost {
    display: inline-block; font-family: var(--font-head); font-weight: 600; font-size: 0.98rem;
    padding: 13px 26px; border-radius: 999px; text-decoration: none;
    color: #fff; border: 1px solid rgba(255,255,255,0.35);
    transition: border-color 250ms var(--ease), color 250ms var(--ease);
}
.cta-ghost:hover { border-color: var(--c-accent); color: var(--c-accent); }

/* ---- Reveal on scroll ---- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 700ms var(--ease), transform 700ms var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
