/* ==========================================================================
   Sosna Restart – web
   Moderní minimalistický styl. Bílé plochy, vzdušná typografie, akcentní barva.
   ========================================================================== */

:root {
    --color-bg: #ffffff;
    --color-surface: #f7f6f3;
    --color-surface-2: #eceae5;
    --color-text: #131313;
    --color-text-muted: #6b6b6b;
    --color-border: #e5e3dd;
    --color-accent: #0a5c3a;      /* tmavě zelená – „Sosna" */
    --color-accent-hover: #07492e;
    --color-accent-soft: #e9f1ec;

    --color-status-volny: #0a5c3a;
    --color-status-volny-bg: #e9f1ec;
    --color-status-rezervovano: #b45309;
    --color-status-rezervovano-bg: #fdf2d8;
    --color-status-prodano: #6b6b6b;
    --color-status-prodano-bg: #e7e5df;

    --font-sans: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
    --font-display: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;

    --shadow-card: 0 1px 2px rgba(0,0,0,.04), 0 8px 28px rgba(0,0,0,.06);

    --radius: 6px;
    --radius-lg: 14px;

    --container: 1200px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

body {
    font-family: var(--font-sans);
    color: var(--color-text);
    background: var(--color-bg);
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--color-text); text-decoration: none; }
a:hover { text-decoration: underline; }

/* Container */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* Typo */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; letter-spacing: -0.025em; }
h1 { font-size: clamp(2rem, 5vw, 3.4rem); line-height: 1.05; margin: 0 0 .4em; font-weight: 800; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); line-height: 1.1; margin: 0 0 .6em; font-weight: 700; }
h3 { font-size: 1.25rem; line-height: 1.25; margin: 0 0 .4em; font-weight: 600; letter-spacing: -0.015em; }
h1 em, .site-logo em { font-style: normal; font-weight: 300; color: var(--color-accent); }
p { margin: 0 0 1em; }

.eyebrow {
    display: inline-block;
    text-transform: uppercase;
    font-size: .72rem;
    letter-spacing: .14em;
    color: var(--color-accent);
    font-weight: 600;
    margin-bottom: .75rem;
}

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

.lead { font-size: 1.125rem; color: var(--color-text-muted); max-width: 680px; }

.prose { max-width: 680px; line-height: 1.7; }
.prose p { font-size: 1.02rem; }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
    position: sticky; top: 0; z-index: 50;
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--color-border);
}
.site-header__inner {
    display: flex; align-items: center; justify-content: space-between;
    height: 72px;
}
.site-logo {
    display: inline-flex; align-items: center; gap: 10px;
    font-family: var(--font-sans); font-weight: 700; font-size: 1.25rem;
    letter-spacing: -0.02em;
}
.site-logo__mark {
    display: inline-flex; align-items: center; justify-content: center;
    width: 34px; height: 34px; border-radius: 50%;
    background: var(--color-accent); color: #fff; font-weight: 700; font-family: var(--font-sans);
}
.site-logo--light .site-logo__mark { background: #fff; color: var(--color-accent); }

.site-nav {
    display: flex; align-items: center; gap: 28px;
}
.site-nav a { font-size: .95rem; color: var(--color-text); position: relative; }
.site-nav a.btn--primary { color: #fff; }
.site-nav a.is-active:not(.btn) { color: var(--color-accent); }
.site-nav a:not(.btn):hover { text-decoration: none; }
.site-nav a:not(.btn).is-active::after,
.site-nav a:not(.btn):hover::after {
    content: ''; position: absolute; left: 0; right: 0; bottom: -22px;
    border-bottom: 2px solid var(--color-accent);
}

.nav-toggle { display: none; background: transparent; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--color-text); margin: 5px 0; transition: .2s; }

@media (max-width: 900px) {
    .site-nav {
        position: absolute; top: 72px; left: 0; right: 0;
        flex-direction: column; align-items: stretch; gap: 0;
        background: #fff; padding: 8px 24px 24px;
        border-bottom: 1px solid var(--color-border);
        display: none;
    }
    .site-nav.is-open { display: flex; }
    .site-nav a { padding: 14px 0; border-bottom: 1px solid var(--color-border); }
    .site-nav a:last-child { border-bottom: 0; }
    .site-nav a:not(.btn).is-active::after,
    .site-nav a:not(.btn):hover::after { display: none; }
    .nav-toggle { display: inline-flex; flex-direction: column; }
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 12px 22px;
    font-size: .95rem; font-weight: 500;
    border-radius: var(--radius);
    border: 1px solid transparent;
    cursor: pointer; text-decoration: none;
    transition: background .15s ease, color .15s ease, border-color .15s ease, transform .05s ease;
    white-space: nowrap;
}
.btn:hover { text-decoration: none; }
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--color-accent); color: #fff; }
.btn--primary:hover { background: var(--color-accent-hover); }
.btn--ghost { background: transparent; color: var(--color-text); border-color: var(--color-border); }
.btn--ghost:hover { border-color: var(--color-text); }
.btn--danger { background: #fff; color: #b91c1c; border-color: #fecaca; }
.btn--danger:hover { background: #fef2f2; }
.btn--sm { padding: 8px 14px; font-size: .85rem; }
.btn--lg { padding: 16px 28px; font-size: 1rem; }
.btn--block { width: 100%; }

/* ==========================================================================
   Flash messages
   ========================================================================== */
.flash { padding: 12px 0; font-size: .95rem; }
.flash--success { background: var(--color-accent-soft); color: var(--color-accent); }
.flash--error { background: #fef2f2; color: #b91c1c; }
.flash--info { background: #eef2ff; color: #3730a3; }

/* ==========================================================================
   Sections
   ========================================================================== */
.section { padding: 88px 0; }
.section--alt { background: var(--color-surface); }
.section--cta { background: var(--color-accent); color: #fff; }
.section--cta h2 { color: #fff; }
.section--cta .cta { text-align: center; max-width: 720px; margin: 0 auto; }
.section--cta .btn--primary { background: #fff; color: var(--color-accent); }
.section--cta .btn--primary:hover { background: var(--color-accent-soft); }

.section__head {
    display: flex; justify-content: space-between; align-items: end;
    gap: 24px; margin-bottom: 40px; flex-wrap: wrap;
}

.grid-2 {
    display: grid; grid-template-columns: 1fr 1.2fr; gap: 64px; align-items: start;
}
@media (max-width: 900px) {
    .grid-2 { grid-template-columns: 1fr; gap: 24px; }
    .section { padding: 56px 0; }
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero { position: relative; color: #fff; min-height: 620px; display: flex; align-items: flex-end; }
.hero__media { position: absolute; inset: 0; overflow: hidden; }
.hero__media::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(10,20,15,0) 0%, rgba(10,20,15,.2) 40%, rgba(10,20,15,.8) 100%);
}
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__content {
    position: relative; z-index: 1; padding: 120px 24px 64px;
    max-width: var(--container);
}
.hero .eyebrow { color: #fff; opacity: .9; }
.hero__lead { font-size: 1.15rem; color: rgba(255,255,255,.92); max-width: 640px; }
.hero__cta { display: flex; gap: 12px; flex-wrap: wrap; margin: 28px 0 0; }
.hero .btn--ghost { color: #fff; border-color: rgba(255,255,255,.4); }
.hero .btn--ghost:hover { border-color: #fff; }
.hero__stats {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
    margin-top: 60px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.25);
}
.hero__stats > div strong { display: block; font-family: var(--font-sans); font-size: 2rem; font-weight: 700; letter-spacing: -0.02em; line-height: 1; }
.hero__stats > div span { display: block; font-size: .85rem; color: rgba(255,255,255,.7); margin-top: 6px; }
@media (max-width: 700px) {
    .hero__stats { grid-template-columns: repeat(2, 1fr); }
}

/* ==========================================================================
   Subhero (druhotné hlavičky stránek)
   ========================================================================== */
.subhero { padding: 100px 0 24px; }

/* ==========================================================================
   Cards (features)
   ========================================================================== */
.cards {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 24px;
    margin-top: 36px;
}
.card-feature {
    padding: 28px;
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    transition: transform .15s, box-shadow .15s;
}
.card-feature:hover { transform: translateY(-2px); box-shadow: var(--shadow-card); }
.card-feature h3 { color: var(--color-accent); }

/* Cards - proč Fingood (number badge varianta) */
.cards--why .card-feature { position: relative; padding-top: 64px; }
.card-feature__num {
    position: absolute; top: 24px; left: 28px;
    font-size: .82rem; font-weight: 700; letter-spacing: .08em;
    color: var(--color-accent); opacity: .55;
}
.section__head--stacked {
    display: grid; grid-template-columns: 1fr 1.2fr; gap: 48px;
    align-items: start; margin-bottom: 16px;
}
.section__lead {
    font-size: 1.05rem; line-height: 1.7; color: var(--color-text-muted);
    margin: 0;
}
.why-fingood__outro {
    margin-top: 40px; text-align: center; max-width: 780px;
    margin-left: auto; margin-right: auto; font-size: 1rem;
}
@media (max-width: 900px) {
    .section__head--stacked { grid-template-columns: 1fr; gap: 16px; }
}

/* ==========================================================================
   Sekce „Proč investovat přes Fingood" – prodejní hero
   ========================================================================== */
.section--fingood {
    background:
        radial-gradient(1200px 400px at 15% -10%, rgba(10, 92, 58, .10), transparent 60%),
        radial-gradient(900px 340px at 100% 0%, rgba(10, 92, 58, .08), transparent 60%),
        var(--color-surface);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}
.fingood-hero { max-width: 1040px; margin: 0 auto; text-align: center; }
.fingood-hero__pill {
    display: inline-block;
    background: #fff;
    border: 1px solid var(--color-accent-soft);
    color: var(--color-accent);
    padding: 8px 18px;
    border-radius: 999px;
    font-size: .85rem;
    font-weight: 600;
    letter-spacing: .01em;
    margin-bottom: 24px;
    box-shadow: 0 1px 0 rgba(10, 92, 58, .05);
}
.fingood-hero__title {
    font-size: clamp(1.8rem, 3.6vw, 2.6rem);
    line-height: 1.15;
    margin: 0 0 20px;
    letter-spacing: -0.025em;
}
.fingood-hero__title em {
    color: var(--color-accent);
    font-style: normal;
}
.fingood-hero__lead {
    font-size: 1.08rem; line-height: 1.75;
    color: var(--color-text-muted);
    max-width: 820px;
    margin: 0 auto 40px;
}
.fingood-hero__lead strong { color: var(--color-text); font-weight: 600; }

.fingood-hero__stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin: 0 auto 48px;
    padding: 28px;
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
}
.fingood-hero__stats > div {
    text-align: center;
    padding: 0 8px;
    border-right: 1px solid var(--color-border);
}
.fingood-hero__stats > div:last-child { border-right: 0; }
.fingood-hero__stats strong {
    display: block;
    font-size: clamp(1.4rem, 2.2vw, 1.9rem);
    font-weight: 800;
    color: var(--color-accent);
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: 6px;
}
.fingood-hero__stats strong .unit {
    font-size: .65em;
    color: var(--color-text-muted);
    font-weight: 600;
    margin-left: 4px;
}
.fingood-hero__stats span {
    font-size: .82rem;
    color: var(--color-text-muted);
    line-height: 1.4;
    display: block;
}

.fingood-hero__cta {
    margin-top: 56px;
    padding: 36px 32px;
    background: linear-gradient(135deg, var(--color-accent) 0%, #094a2e 100%);
    color: #fff;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: 0 20px 40px -20px rgba(10, 92, 58, .5);
}
.fingood-hero__cta p {
    max-width: 680px;
    margin: 0 auto 20px;
    font-size: 1.05rem;
    line-height: 1.65;
    color: rgba(255,255,255,.9);
}
.fingood-hero__cta-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}
.fingood-hero__cta .btn--primary {
    background: #fff;
    color: var(--color-accent);
    font-weight: 700;
}
.fingood-hero__cta .btn--primary:hover { background: var(--color-accent-soft); }
.fingood-hero__more {
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 4px;
    font-size: .95rem;
}
.fingood-hero__more:hover { opacity: .85; }

@media (max-width: 800px) {
    .fingood-hero__stats { grid-template-columns: repeat(2, 1fr); padding: 20px; }
    .fingood-hero__stats > div { border-right: 0; padding: 12px 0; }
    .fingood-hero__stats > div:nth-child(odd) { border-right: 1px solid var(--color-border); }
    .fingood-hero__stats > div:nth-child(-n+2) { border-bottom: 1px solid var(--color-border); }
    .fingood-hero__cta { padding: 28px 20px; }
}

/* Cards - byty */
.cards--byty { grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); }
.card-byt {
    display: block;
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform .15s, box-shadow .15s;
    text-decoration: none !important;
    color: inherit;
}
.card-byt:hover { transform: translateY(-2px); box-shadow: var(--shadow-card); }
.card-byt__media { position: relative; aspect-ratio: 4/3; background: var(--color-surface); }
.card-byt__media img { width: 100%; height: 100%; object-fit: cover; }
.card-byt__body { padding: 18px 20px 20px; }
.card-byt__head { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.card-byt__head h3 { margin: 0; }
.card-byt__price { font-weight: 600; color: var(--color-accent); }
.card-byt__meta { list-style: none; padding: 0; margin: 8px 0 0; display: flex; gap: 14px; flex-wrap: wrap; font-size: .9rem; color: var(--color-text-muted); }

/* Cards - aktuality */
.cards--aktuality { grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); }
.card-news {
    display: block; background: #fff; border: 1px solid var(--color-border);
    border-radius: var(--radius-lg); overflow: hidden; color: inherit;
    transition: transform .15s, box-shadow .15s;
}
.card-news:hover { transform: translateY(-2px); box-shadow: var(--shadow-card); }
.card-news__media { aspect-ratio: 16/9; background: var(--color-surface); }
.card-news__media img { width: 100%; height: 100%; object-fit: cover; }
.card-news__body { padding: 20px 22px 24px; }
.card-news__body time { font-size: .82rem; color: var(--color-text-muted); display: block; margin-bottom: 6px; }

.link-arrow { color: var(--color-accent); font-weight: 500; }
.link-arrow::after { content: ' →'; }

/* ==========================================================================
   Badges
   ========================================================================== */
.badge {
    display: inline-block; padding: 4px 10px;
    border-radius: 999px; font-size: .78rem; font-weight: 500;
    background: var(--color-surface-2); color: var(--color-text);
}
.badge--volny { background: var(--color-status-volny-bg); color: var(--color-status-volny); }
.badge--rezervovano { background: var(--color-status-rezervovano-bg); color: var(--color-status-rezervovano); }
.badge--prodano { background: var(--color-status-prodano-bg); color: var(--color-status-prodano); }
.badge--ok { background: #dcfce7; color: #166534; }
.badge--muted { background: var(--color-surface-2); color: var(--color-text-muted); }
.badge--planovano { background: var(--color-surface-2); color: var(--color-text-muted); }
.badge--probiha { background: var(--color-status-rezervovano-bg); color: var(--color-status-rezervovano); }
.badge--dokonceno { background: var(--color-status-volny-bg); color: var(--color-status-volny); }
.badge--floating {
    position: absolute; top: 16px; left: 16px; box-shadow: 0 1px 2px rgba(0,0,0,.1);
}
.card-byt__media .badge { position: absolute; top: 12px; left: 12px; box-shadow: 0 1px 2px rgba(0,0,0,.1); }

/* ==========================================================================
   Filter chips
   ========================================================================== */
.filter-bar { display: flex; flex-wrap: wrap; gap: 10px; margin: 28px 0 0; }
.chip {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 8px 14px; border-radius: 999px;
    background: #fff; border: 1px solid var(--color-border);
    font-size: .9rem;
}
.chip span { color: var(--color-text-muted); font-size: .82rem; }
.chip.is-active { background: var(--color-text); color: #fff; border-color: var(--color-text); }
.chip.is-active span { color: rgba(255,255,255,.7); }
.chip--volny.is-active { background: var(--color-status-volny); border-color: var(--color-status-volny); }
.chip--rezervovano.is-active { background: var(--color-status-rezervovano); border-color: var(--color-status-rezervovano); }
.chip--prodano.is-active { background: var(--color-status-prodano); border-color: var(--color-status-prodano); }

/* ==========================================================================
   Byt detail
   ========================================================================== */
.byt-detail__grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 48px; align-items: start; }
@media (max-width: 900px) { .byt-detail__grid { grid-template-columns: 1fr; gap: 28px; } }
.byt-detail__main { position: relative; aspect-ratio: 4/3; border-radius: var(--radius-lg); overflow: hidden; background: var(--color-surface); }
.byt-detail__main img { width: 100%; height: 100%; object-fit: cover; }
.byt-detail__thumbs { display: grid; grid-template-columns: repeat(auto-fill, minmax(80px, 1fr)); gap: 8px; margin-top: 10px; }
.thumb { border: 2px solid transparent; padding: 0; background: none; cursor: pointer; border-radius: 8px; overflow: hidden; aspect-ratio: 1/1; }
.thumb img { width: 100%; height: 100%; object-fit: cover; }
.thumb.is-active { border-color: var(--color-accent); }
.byt-detail__info .eyebrow { display: block; }
.byt-detail__price { font-family: var(--font-sans); font-weight: 700; letter-spacing: -0.02em; font-size: 1.8rem; color: var(--color-accent); margin: 0 0 20px; }
.byt-detail__params { display: grid; grid-template-columns: 1fr 1fr; gap: 0; margin: 0 0 24px; border-top: 1px solid var(--color-border); }
.byt-detail__params > div { display: flex; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid var(--color-border); grid-column: span 2; }
.byt-detail__params dt { color: var(--color-text-muted); margin: 0; }
.byt-detail__params dd { margin: 0; font-weight: 500; }

/* ==========================================================================
   Forms
   ========================================================================== */
.form-wrap { display: grid; grid-template-columns: 1fr 1.2fr; gap: 56px; align-items: start; }
@media (max-width: 900px) { .form-wrap { grid-template-columns: 1fr; gap: 28px; } }

.form {
    display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
    background: #fff; padding: 28px; border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
}
.form label { display: flex; flex-direction: column; gap: 6px; font-size: .9rem; color: var(--color-text-muted); }
.form label > span { font-weight: 500; color: var(--color-text); }
.form input, .form select, .form textarea {
    font: inherit; color: inherit;
    padding: 12px 14px; border: 1px solid var(--color-border); border-radius: var(--radius);
    background: #fff; width: 100%;
}
.form input:focus, .form select:focus, .form textarea:focus {
    outline: 2px solid var(--color-accent-soft); border-color: var(--color-accent);
}
.form__full { grid-column: 1 / -1; }
.form__check { flex-direction: row; align-items: flex-start; gap: 10px; font-size: .88rem; }
.form__check input { width: 18px; height: 18px; margin-top: 2px; flex-shrink: 0; }
.form__check span { color: var(--color-text-muted); }

/* ==========================================================================
   Timeline
   ========================================================================== */
.timeline { list-style: none; padding: 0; margin: 32px 0 0; position: relative; }
.timeline::before {
    content: ''; position: absolute; left: 13px; top: 8px; bottom: 8px;
    width: 2px; background: var(--color-border);
}
.timeline__item { position: relative; padding: 0 0 28px 50px; }
.timeline__dot {
    position: absolute; left: 4px; top: 4px;
    width: 22px; height: 22px; border-radius: 50%;
    background: #fff; border: 2px solid var(--color-border);
}
.timeline__item--probiha .timeline__dot { background: var(--color-accent); border-color: var(--color-accent); box-shadow: 0 0 0 6px var(--color-accent-soft); }
.timeline__item--dokonceno .timeline__dot { background: var(--color-accent); border-color: var(--color-accent); }
.timeline__body h3 { margin: 2px 0 4px; }
.timeline__date { font-size: .82rem; color: var(--color-text-muted); text-transform: uppercase; letter-spacing: .08em; }
.timeline--large .timeline__item { padding-bottom: 40px; }

/* ==========================================================================
   Article
   ========================================================================== */
.article { max-width: 760px; margin: 0 auto; }
.article__media { margin: 28px 0; border-radius: var(--radius-lg); overflow: hidden; }
.article__back { margin-bottom: 24px; }

/* ==========================================================================
   Empty state
   ========================================================================== */
.empty { text-align: center; padding: 60px 24px; }
.empty__actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 24px; }

/* ==========================================================================
   Fingood card (Powered by Fingood)
   ========================================================================== */
.fingood-card {
    display: grid;
    grid-template-columns: 280px 1fr auto;
    gap: 32px;
    align-items: center;
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 22px;
    box-shadow: var(--shadow-card);
}
.fingood-card__media {
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: var(--color-surface);
}
.fingood-card__media img { width: 100%; height: 100%; object-fit: cover; }

.fingood-card__body { min-width: 0; }

.fingood-card__head {
    display: flex; justify-content: space-between; align-items: center; gap: 16px;
    margin-bottom: 14px; flex-wrap: wrap;
}
.fingood-progress { flex: 1; min-width: 220px; }
.fingood-progress__bar {
    height: 8px; background: var(--color-surface-2); border-radius: 999px; overflow: hidden;
}
.fingood-progress__bar span {
    display: block; height: 100%;
    background: var(--color-accent);
    border-radius: 999px;
    transition: width .4s ease;
}
.fingood-progress__meta {
    display: flex; justify-content: space-between; align-items: baseline;
    margin-top: 6px; font-size: .85rem;
}
.fingood-progress__meta strong { font-weight: 600; }

.fingood-badge {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 6px 12px; border-radius: 999px;
    background: var(--color-accent-soft); color: var(--color-accent);
    font-size: .82rem; font-weight: 500;
    white-space: nowrap;
}

.fingood-card__title {
    display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-bottom: 8px;
}
.fingood-card__title h2 {
    margin: 0; font-size: 1.5rem; line-height: 1.2; font-weight: 700; letter-spacing: -0.02em;
}
.fingood-pill {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 5px 11px; border-radius: 999px;
    background: #eff6ff; color: #1d4ed8;
    font-size: .78rem; font-weight: 500;
}

.fingood-tags {
    list-style: none; padding: 0; margin: 0 0 16px;
    display: flex; flex-wrap: wrap; gap: 6px 18px;
    color: var(--color-text-muted); font-size: .88rem;
}

.fingood-stats {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
}
.fingood-stats > div { display: flex; flex-direction: column; }
.fingood-stats span {
    font-size: .78rem; color: var(--color-text-muted);
    text-transform: uppercase; letter-spacing: .06em;
}
.fingood-stats strong {
    font-size: 1.2rem; font-weight: 700; letter-spacing: -0.02em; margin-top: 4px;
}
.fingood-stats .is-accent { color: var(--color-accent); }

.fingood-card__cta {
    display: flex; flex-direction: column; align-items: stretch; gap: 10px;
    min-width: 160px;
}
.fingood-card__cta .btn { justify-content: center; }
.fingood-powered {
    display: block; text-align: center;
    font-size: .78rem; color: var(--color-text-muted);
}
.fingood-powered strong { color: var(--color-accent); font-weight: 700; }

@media (max-width: 1000px) {
    .fingood-card {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .fingood-card__media { aspect-ratio: 16/9; max-height: 280px; }
    .fingood-stats { grid-template-columns: repeat(2, 1fr); }
    .fingood-card__cta { flex-direction: row; align-items: center; justify-content: space-between; }
    .fingood-card__cta .btn { flex: 1; }
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
    background: #131313; color: rgba(255,255,255,.8); padding: 64px 0 24px;
    margin-top: 0;
}
.site-footer__inner {
    display: grid; grid-template-columns: 1.5fr 1fr 1.3fr; gap: 48px;
    padding-bottom: 48px;
}
.site-footer a { color: rgba(255,255,255,.8); display: block; padding: 4px 0; }
.site-footer a:hover { color: #fff; }
.site-footer h4 { color: #fff; font-family: var(--font-sans); font-size: .92rem; margin: 0 0 14px; font-weight: 600; }
.site-footer .site-logo { color: #fff; margin-bottom: 12px; }
.site-footer .muted { color: rgba(255,255,255,.55); }
.site-footer__bottom {
    display: flex; justify-content: space-between; padding: 20px 0 0;
    border-top: 1px solid rgba(255,255,255,.1);
    font-size: .85rem; color: rgba(255,255,255,.5);
}
.site-footer__bottom a { display: inline; padding: 0; }
@media (max-width: 900px) {
    .site-footer__inner { grid-template-columns: 1fr; gap: 32px; }
}
