/* =========================================================
   ForexWolf – Main Stylesheet
   ========================================================= */

/* --- Reset & Base ---------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
    background: var(--fw-bg);
    color: var(--fw-text);
    font-family: var(--fw-font-body);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    transition: background .3s, color .3s;
}

a { color: var(--fw-primary); text-decoration: none; transition: color .2s; }
a:hover { color: var(--fw-primary-h); }

img { max-width: 100%; height: auto; display: block; }

/* --- Typography ------------------------------------------ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--fw-font-display);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -.01em;
    color: var(--fw-text);
}

.fw-display {
    font-family: var(--fw-font-display);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.fw-mono {
    font-family: var(--fw-font-mono);
    font-size: .75rem;
    letter-spacing: .15em;
    text-transform: uppercase;
}

/* --- Layout --------------------------------------------- */
.fw-container {
    max-width: var(--fw-max-w);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.fw-section { padding: 5rem 0; }
.fw-section--sm { padding: 3rem 0; }

.fw-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.fw-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.fw-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

/* --- Components ----------------------------------------- */

/* Card */
.fw-card {
    background: var(--fw-bg-card);
    border: 1px solid var(--fw-border);
    border-radius: var(--fw-radius);
    padding: 1.5rem;
    transition: border-color .3s, box-shadow .3s, transform .2s;
}
.fw-card:hover {
    border-color: var(--fw-primary);
    box-shadow: var(--fw-glow-green);
    transform: translateY(-2px);
}

/* Badge */
.fw-badge {
    display: inline-block;
    padding: .25rem .75rem;
    font-size: .7rem;
    font-family: var(--fw-font-mono);
    letter-spacing: .15em;
    text-transform: uppercase;
    border-radius: 999px;
    background: rgba(var(--fw-primary-rgb), .1);
    color: var(--fw-primary);
    border: 1px solid rgba(var(--fw-primary-rgb), .2);
}

/* Buttons */
.fw-btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .75rem 2rem;
    font-family: var(--fw-font-display);
    font-size: .85rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    border-radius: var(--fw-radius);
    cursor: pointer;
    border: 2px solid transparent;
    transition: all .25s;
    text-decoration: none;
}
.fw-btn--primary {
    background: var(--fw-primary);
    color: #fff;
    border-color: var(--fw-primary);
}
.fw-btn--primary:hover {
    background: var(--fw-primary-h);
    color: #fff;
    box-shadow: var(--fw-glow-green);
}
.fw-btn--outline {
    background: transparent;
    color: var(--fw-text);
    border-color: var(--fw-border);
}
.fw-btn--outline:hover {
    border-color: var(--fw-primary);
    color: var(--fw-primary);
}
.fw-btn--gold {
    background: var(--fw-accent);
    color: #fff;
    border-color: var(--fw-accent);
}
.fw-btn--gold:hover {
    background: var(--fw-accent-h);
    color: #fff;
    box-shadow: var(--fw-glow-gold);
}

/* Section heading */
.fw-section-heading {
    text-align: center;
    margin-bottom: 3.5rem;
}
.fw-section-heading .overline {
    font-family: var(--fw-font-mono);
    font-size: .7rem;
    letter-spacing: .3em;
    color: var(--fw-primary);
    text-transform: uppercase;
    display: block;
    margin-bottom: .75rem;
}
.fw-section-heading h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-family: var(--fw-font-display);
    font-weight: 900;
    text-transform: uppercase;
}
.fw-section-heading h2 span { color: var(--fw-primary); }
.fw-section-heading .subtitle {
    margin-top: 1rem;
    color: var(--fw-text-muted);
    font-size: 1.05rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Divider */
.fw-divider {
    border: none;
    border-top: 1px solid var(--fw-border);
    margin: 0;
}

/* =========================================================
   HEADER
   ========================================================= */
#fw-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    height: var(--fw-header-h);
    background: rgba(255,255,255,.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 2px solid #0f172a;
    transition: background .3s, box-shadow .3s;
}
body.dark-mode #fw-header {
    background: rgba(10,14,26,.92);
}
#fw-header.scrolled {
    box-shadow: var(--fw-shadow);
}
.fw-header__inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    height: 100%;
    gap: 1.5rem;
}
.fw-nav,
.fw-nav ul {
    justify-content: center;
}
.fw-logo {
    font-family: 'Orbitron', var(--fw-font-display), sans-serif;
    font-size: 1.1rem;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
    text-decoration: none;
    line-height: 1;
    white-space: nowrap;
}
.fw-logo__forex { color: var(--fw-primary); }
.fw-logo__wolf  { color: var(--fw-text); }

.fw-nav,
.fw-nav ul {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}
.fw-nav li {
    list-style: none;
    display: flex;
    align-items: center;
}
.fw-nav a {
    font-family: var(--fw-font-mono);
    font-size: .72rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--fw-text-muted);
    transition: color .2s;
}
.fw-nav a:hover,
.fw-nav a.current-menu-item,
.fw-nav a[aria-current="page"] {
    color: var(--fw-primary);
}

.fw-header__actions {
    display: flex;
    align-items: center;
    gap: .75rem;
}

/* Dark mode toggle */
.fw-toggle-dark {
    background: none;
    border: 1px solid var(--fw-border);
    border-radius: var(--fw-radius);
    width: 36px; height: 36px;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    color: var(--fw-text-muted);
    transition: border-color .2s, color .2s;
}
.fw-toggle-dark:hover { border-color: var(--fw-primary); color: var(--fw-primary); }
.fw-toggle-dark svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 2; }

/* Mobile hamburger */
.fw-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.fw-hamburger span {
    display: block; width: 24px; height: 2px;
    background: var(--fw-text);
    border-radius: 2px;
    transition: all .3s;
}

/* Mobile nav */
.fw-mobile-nav {
    display: none;
    position: fixed;
    top: var(--fw-header-h); left: 0; right: 0;
    background: var(--fw-bg);
    border-bottom: 1px solid var(--fw-border);
    padding: 1.5rem;
    z-index: 999;
}
.fw-mobile-nav.open { display: block; }
.fw-mobile-nav a {
    display: block;
    padding: .75rem 0;
    border-bottom: 1px solid var(--fw-border);
    font-family: var(--fw-font-mono);
    font-size: .8rem;
    letter-spacing: .15em;
    color: var(--fw-text);
}

/* =========================================================
   MARKET TICKER
   ========================================================= */
.fw-ticker {
    background: #0f172a;
    overflow: hidden;
    padding: .55rem 0;
    margin-top: var(--fw-header-h);
}
.fw-ticker__track {
    display: flex;
    white-space: nowrap;
    animation: ticker-scroll 28s linear infinite;
}
.fw-ticker__track:hover { animation-play-state: paused; }
.fw-ticker__content { display: contents; }
.fw-ticker__item {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    padding: 0 1.5rem;
    font-family: var(--fw-font-mono);
    font-size: .72rem;
    border-right: 1px solid rgba(255,255,255,.07);
}
.fw-ticker__symbol { color: #64748b; }
.fw-ticker__price  { color: #e2e8f0; font-weight: 600; }
.fw-ticker__up     { color: #4ade80; }
.fw-ticker__down   { color: #f87171; }

@keyframes ticker-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* =========================================================
   HERO
   ========================================================= */
.fw-hero {
    position: relative;
    min-height: 88vh;
    display: flex;
    align-items: center;
    background: var(--fw-bg);
    overflow: hidden;
}
.fw-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.fw-hero__bg img {
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: .06;
}
.fw-hero__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,
        var(--fw-bg) 35%,
        rgba(255,255,255,.7) 65%,
        transparent 100%
    );
}
body.dark-mode .fw-hero__bg::after {
    background: linear-gradient(to right,
        var(--fw-bg) 35%,
        rgba(10,14,26,.7) 65%,
        transparent 100%
    );
}
/* Grid overlay */
.fw-hero__bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(var(--fw-border) 1px, transparent 1px),
        linear-gradient(90deg, var(--fw-border) 1px, transparent 1px);
    background-size: 48px 48px;
    opacity: .4;
    z-index: 1;
}
.fw-hero__content {
    position: relative;
    z-index: 2;
    max-width: 760px;
    padding: 6rem 0 4rem;
}
.fw-hero__overline {
    font-family: var(--fw-font-mono);
    font-size: .7rem;
    letter-spacing: .3em;
    color: var(--fw-primary);
    text-transform: uppercase;
    display: block;
    margin-bottom: 1.25rem;
}
.fw-hero__overline::before { content: '▸ '; }

.fw-hero__title {
    font-size: clamp(3.5rem, 10vw, 8rem);
    font-family: var(--fw-font-display);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -.01em;
    line-height: .9;
    margin-bottom: 1.5rem;
}
.fw-hero__title .line1 { color: var(--fw-text); }
.fw-hero__title .line2 {
    color: var(--fw-primary);
    text-shadow: var(--fw-glow-green);
}

.fw-hero__quote {
    font-size: 1.15rem;
    color: var(--fw-text-muted);
    font-style: italic;
    font-weight: 300;
    max-width: 520px;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}
.fw-hero__quote em { color: var(--fw-accent); font-style: normal; font-weight: 600; }

.fw-hero__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3.5rem;
}

.fw-hero__stats {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}
.fw-hero__stat {
    font-family: var(--fw-font-mono);
    font-size: .72rem;
    letter-spacing: .1em;
    color: var(--fw-text-muted);
    display: flex;
    align-items: center;
    gap: .5rem;
}
.fw-hero__stat svg {
    width: 14px; height: 14px;
    stroke: var(--fw-primary);
    fill: none;
    stroke-width: 2;
}
.fw-hero__stat:nth-child(2) svg { stroke: var(--fw-accent); }
.fw-hero__stat:nth-child(3) svg { stroke: #0ea5e9; }

/* =========================================================
   STATS BAR
   ========================================================= */
.fw-statsbar {
    background: var(--fw-bg-alt);
    border-top: 1px solid var(--fw-border);
    border-bottom: 1px solid var(--fw-border);
    padding: 3rem 0;
}
.fw-statsbar__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}
.fw-statsbar__value {
    font-family: var(--fw-font-display);
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 900;
    color: var(--fw-primary);
    text-shadow: var(--fw-glow-green);
    line-height: 1;
    margin-bottom: .4rem;
}
.fw-statsbar__label {
    font-family: var(--fw-font-mono);
    font-size: .68rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--fw-text-muted);
}

/* =========================================================
   NEWS / BLOG
   ========================================================= */
.fw-news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.fw-news-grid--hero {
    grid-template-columns: 1.6fr 1fr;
    grid-template-rows: auto auto;
}
.fw-news-grid--hero .fw-post-card:first-child {
    grid-row: 1 / 3;
}

/* Post card */
.fw-post-card {
    background: var(--fw-bg-card);
    border: 1px solid var(--fw-border);
    border-radius: var(--fw-radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: border-color .3s, box-shadow .3s, transform .2s;
}
.fw-post-card:hover {
    border-color: var(--fw-primary);
    box-shadow: var(--fw-glow-green);
    transform: translateY(-3px);
}
.fw-post-card__thumb {
    aspect-ratio: 16/9;
    overflow: hidden;
    background: var(--fw-bg-alt);
    position: relative;
}
.fw-post-card__thumb img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .4s;
}
.fw-post-card:hover .fw-post-card__thumb img { transform: scale(1.04); }

.fw-post-card__thumb--noimg {
    background: linear-gradient(135deg, var(--fw-bg-alt) 0%, var(--fw-border) 100%);
    display: flex; align-items: center; justify-content: center;
}
.fw-post-card__thumb--noimg svg {
    width: 40px; height: 40px;
    opacity: .2;
}

.fw-post-card__category {
    position: absolute;
    top: .75rem; left: .75rem;
}

.fw-post-card__body {
    padding: 1.25rem 1.25rem 1rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.fw-post-card__meta {
    font-family: var(--fw-font-mono);
    font-size: .65rem;
    letter-spacing: .12em;
    color: var(--fw-text-light);
    margin-bottom: .6rem;
    display: flex;
    align-items: center;
    gap: .75rem;
}
.fw-post-card__meta .dot {
    width: 3px; height: 3px;
    border-radius: 50%;
    background: var(--fw-border);
}
.fw-post-card__title {
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: .6rem;
    color: var(--fw-text);
    transition: color .2s;
}
.fw-post-card:hover .fw-post-card__title { color: var(--fw-primary); }
.fw-post-card__excerpt {
    font-size: .875rem;
    color: var(--fw-text-muted);
    line-height: 1.6;
    flex: 1;
}
.fw-post-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .75rem 1.25rem;
    border-top: 1px solid var(--fw-border);
    margin-top: auto;
}
.fw-post-card__read-more {
    font-family: var(--fw-font-mono);
    font-size: .65rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--fw-primary);
    display: flex; align-items: center; gap: .3rem;
}
.fw-post-card__read-more svg {
    width: 12px; height: 12px;
    stroke: currentColor; fill: none; stroke-width: 2;
}
.fw-post-card__author {
    font-size: .72rem;
    color: var(--fw-text-muted);
    display: flex; align-items: center; gap: .4rem;
}
.fw-post-card__author img {
    width: 20px; height: 20px;
    border-radius: 50%;
}

/* SkrybaAI badge */
.fw-badge--bot {
    background: rgba(217, 119, 6, .1);
    color: var(--fw-accent);
    border-color: rgba(217, 119, 6, .2);
}

/* Pagination */
.fw-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: .5rem;
    margin-top: 3rem;
}
.fw-pagination a,
.fw-pagination span {
    display: inline-flex; align-items: center; justify-content: center;
    width: 38px; height: 38px;
    border: 1px solid var(--fw-border);
    border-radius: var(--fw-radius);
    font-family: var(--fw-font-mono);
    font-size: .72rem;
    color: var(--fw-text-muted);
    transition: all .2s;
}
.fw-pagination a:hover,
.fw-pagination .current {
    border-color: var(--fw-primary);
    color: var(--fw-primary);
    background: rgba(var(--fw-primary-rgb), .06);
}

/* =========================================================
   FEATURES / PRODUCT
   ========================================================= */
.fw-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.fw-feature-card {
    padding: 2rem 1.75rem;
    background: var(--fw-bg-card);
    border: 1px solid var(--fw-border);
    border-radius: var(--fw-radius);
    transition: border-color .3s, box-shadow .3s, transform .2s;
}
.fw-feature-card:hover {
    border-color: rgba(var(--fw-primary-rgb), .5);
    box-shadow: var(--fw-glow-green);
    transform: translateY(-2px);
}
.fw-feature-card__icon {
    width: 44px; height: 44px;
    background: rgba(var(--fw-primary-rgb), .08);
    border-radius: var(--fw-radius);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.25rem;
}
.fw-feature-card__icon svg {
    width: 22px; height: 22px;
    stroke: var(--fw-primary); fill: none; stroke-width: 2;
}
.fw-feature-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: .6rem;
    text-transform: uppercase;
    letter-spacing: .04em;
}
.fw-feature-card p {
    font-size: .875rem;
    color: var(--fw-text-muted);
    line-height: 1.7;
}

/* Product hero */
.fw-product-hero {
    background: var(--fw-bg-alt);
    border-radius: var(--fw-radius);
    overflow: hidden;
    border: 1px solid var(--fw-border);
}
.fw-product-hero__split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 500px;
}
.fw-product-hero__text {
    padding: 3.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.fw-product-hero__text h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-family: var(--fw-font-display);
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 1rem;
    line-height: .95;
}
.fw-product-hero__text h1 span { color: var(--fw-primary); }
.fw-product-hero__text p {
    font-size: 1.05rem;
    color: var(--fw-text-muted);
    margin-bottom: 2rem;
    line-height: 1.7;
}
.fw-product-hero__image {
    position: relative;
    background: linear-gradient(135deg, var(--fw-bg-card), var(--fw-bg-alt));
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
}
.fw-product-hero__image img {
    width: 100%; height: 100%;
    object-fit: cover;
}
.fw-product-hero__image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, var(--fw-bg-alt) 0%, transparent 30%);
}

/* Pricing */
.fw-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    align-items: start;
}
.fw-pricing-card {
    background: var(--fw-bg-card);
    border: 1px solid var(--fw-border);
    border-radius: var(--fw-radius);
    padding: 2rem;
    position: relative;
    transition: border-color .3s, box-shadow .3s;
}
.fw-pricing-card--featured {
    border-color: var(--fw-primary);
    box-shadow: var(--fw-glow-green);
}
.fw-pricing-card--featured::before {
    content: 'NAJPOPULARNIEJSZY';
    position: absolute;
    top: -12px; left: 50%; transform: translateX(-50%);
    font-family: var(--fw-font-mono);
    font-size: .6rem;
    letter-spacing: .2em;
    padding: .25rem .75rem;
    background: var(--fw-primary);
    color: #fff;
    border-radius: 999px;
}
.fw-pricing-card__name {
    font-family: var(--fw-font-display);
    font-size: 1.25rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: .5rem;
}
.fw-pricing-card__price {
    font-family: var(--fw-font-display);
    font-size: 3rem;
    font-weight: 900;
    color: var(--fw-primary);
    line-height: 1;
    margin-bottom: .25rem;
}
.fw-pricing-card__price sup { font-size: 1.25rem; vertical-align: top; margin-top: .5rem; }
.fw-pricing-card__period {
    font-size: .8rem;
    color: var(--fw-text-muted);
    margin-bottom: 1.5rem;
}
.fw-pricing-card__features {
    list-style: none;
    margin-bottom: 1.75rem;
}
.fw-pricing-card__features li {
    display: flex;
    align-items: flex-start;
    gap: .5rem;
    font-size: .875rem;
    padding: .4rem 0;
    color: var(--fw-text-muted);
    border-bottom: 1px solid var(--fw-border);
}
.fw-pricing-card__features li:last-child { border-bottom: none; }
.fw-pricing-card__features li svg {
    flex-shrink: 0;
    width: 14px; height: 14px;
    margin-top: .15rem;
    stroke: var(--fw-primary); fill: none; stroke-width: 2.5;
}

/* =========================================================
   ABOUT
   ========================================================= */
.fw-about-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.fw-about-split__image {
    border-radius: var(--fw-radius);
    overflow: hidden;
    border: 1px solid var(--fw-border);
    aspect-ratio: 4/3;
}
.fw-about-split__image img { width: 100%; height: 100%; object-fit: cover; }
.fw-about-split__text h2 {
    font-size: clamp(1.75rem, 4vw, 3rem);
    font-family: var(--fw-font-display);
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 1rem;
}
.fw-about-split__text h2 span { color: var(--fw-primary); }
.fw-about-split__text p {
    color: var(--fw-text-muted);
    line-height: 1.8;
    margin-bottom: 1rem;
}
.fw-team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}
.fw-team-card {
    text-align: center;
}
.fw-team-card__avatar {
    width: 80px; height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1rem;
    border: 2px solid var(--fw-border);
    background: var(--fw-bg-alt);
}
.fw-team-card__avatar img { width: 100%; height: 100%; object-fit: cover; }
.fw-team-card__name { font-weight: 700; margin-bottom: .2rem; }
.fw-team-card__role {
    font-family: var(--fw-font-mono);
    font-size: .65rem;
    letter-spacing: .12em;
    color: var(--fw-primary);
    text-transform: uppercase;
}

/* =========================================================
   CTA BAND
   ========================================================= */
.fw-cta-band {
    background: linear-gradient(135deg, var(--fw-bg-alt) 0%, var(--fw-bg-card) 100%);
    border-top: 1px solid var(--fw-border);
    border-bottom: 1px solid var(--fw-border);
    text-align: center;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}
.fw-cta-band::before {
    content: 'WOLF';
    position: absolute;
    font-family: var(--fw-font-display);
    font-weight: 900;
    font-size: 18rem;
    color: var(--fw-border);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    user-select: none;
    white-space: nowrap;
    line-height: 1;
}
.fw-cta-band__content { position: relative; z-index: 1; }
.fw-cta-band h2 {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-family: var(--fw-font-display);
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 1rem;
}
.fw-cta-band h2 span { color: var(--fw-accent); }
.fw-cta-band p {
    color: var(--fw-text-muted);
    font-size: 1.1rem;
    max-width: 480px;
    margin: 0 auto 2rem;
}

/* =========================================================
   FOOTER
   ========================================================= */
#fw-footer {
    background: var(--fw-bg-alt);
    border-top: 1px solid var(--fw-border);
    padding: 4rem 0 2rem;
}
.fw-footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--fw-border);
}
.fw-footer__brand .fw-logo { font-size: 1.35rem; }
.fw-footer__brand p {
    font-size: .875rem;
    color: var(--fw-text-muted);
    margin-top: .75rem;
    line-height: 1.7;
    max-width: 280px;
}
.fw-footer__col h4 {
    font-family: var(--fw-font-mono);
    font-size: .68rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--fw-text);
    margin-bottom: 1.25rem;
}
.fw-footer__col ul { list-style: none; }
.fw-footer__col li { margin-bottom: .6rem; }
.fw-footer__col a {
    font-size: .875rem;
    color: var(--fw-text-muted);
    transition: color .2s;
}
.fw-footer__col a:hover { color: var(--fw-primary); }
.fw-footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}
.fw-footer__copy {
    font-family: var(--fw-font-mono);
    font-size: .68rem;
    letter-spacing: .1em;
    color: var(--fw-text-light);
}
.fw-footer__disclaimer {
    font-size: .75rem;
    color: var(--fw-text-light);
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--fw-border);
    line-height: 1.6;
}

/* Social icons */
.fw-social {
    display: flex;
    gap: .6rem;
    margin-top: 1.25rem;
}
.fw-social a {
    width: 34px; height: 34px;
    border: 1px solid var(--fw-border);
    border-radius: var(--fw-radius);
    display: flex; align-items: center; justify-content: center;
    color: var(--fw-text-muted);
    transition: border-color .2s, color .2s;
}
.fw-social a:hover { border-color: var(--fw-primary); color: var(--fw-primary); }
.fw-social svg { width: 14px; height: 14px; fill: currentColor; }

/* =========================================================
   SINGLE POST
   ========================================================= */
.fw-single {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 0 5rem;
}
.fw-single__header { margin-bottom: 2.5rem; }
.fw-single__header h1 {
    font-size: clamp(1.75rem, 4vw, 3rem);
    font-family: var(--fw-font-display);
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 1rem;
}
.fw-single__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    font-family: var(--fw-font-mono);
    font-size: .7rem;
    letter-spacing: .1em;
    color: var(--fw-text-muted);
}
.fw-single__featured-img {
    border-radius: var(--fw-radius);
    overflow: hidden;
    margin-bottom: 2.5rem;
    border: 1px solid var(--fw-border);
    aspect-ratio: 16/7;
}
.fw-single__featured-img img { width: 100%; height: 100%; object-fit: cover; }

/* Prose / article content */
.fw-prose { line-height: 1.8; }
.fw-prose p { margin-bottom: 1.25rem; color: var(--fw-text-muted); }
.fw-prose h2 {
    font-size: 1.6rem;
    margin: 2.5rem 0 1rem;
    font-family: var(--fw-font-display);
    font-weight: 800;
    text-transform: uppercase;
    color: var(--fw-text);
}
.fw-prose h3 { font-size: 1.2rem; margin: 2rem 0 .75rem; }
.fw-prose ul, .fw-prose ol {
    margin-bottom: 1.25rem;
    padding-left: 1.5rem;
    color: var(--fw-text-muted);
}
.fw-prose li { margin-bottom: .4rem; }
.fw-prose blockquote {
    border-left: 3px solid var(--fw-primary);
    padding: 1rem 1.5rem;
    margin: 2rem 0;
    background: var(--fw-bg-alt);
    border-radius: 0 var(--fw-radius) var(--fw-radius) 0;
    font-style: italic;
    color: var(--fw-text-muted);
}
.fw-prose strong { color: var(--fw-text); }
.fw-prose a { color: var(--fw-primary); text-decoration: underline; }
.fw-prose code {
    font-family: var(--fw-font-mono);
    font-size: .85em;
    background: var(--fw-bg-alt);
    border: 1px solid var(--fw-border);
    border-radius: 3px;
    padding: .15em .4em;
}
.fw-prose img {
    border-radius: var(--fw-radius);
    border: 1px solid var(--fw-border);
    margin: 1.5rem 0;
}
.fw-prose table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1.5rem;
    font-size: .9rem;
}
.fw-prose th, .fw-prose td {
    padding: .75rem 1rem;
    border: 1px solid var(--fw-border);
    text-align: left;
}
.fw-prose th {
    background: var(--fw-bg-alt);
    font-family: var(--fw-font-mono);
    font-size: .68rem;
    letter-spacing: .1em;
    text-transform: uppercase;
}

/* Breadcrumbs */
.fw-breadcrumbs {
    font-family: var(--fw-font-mono);
    font-size: .7rem;
    letter-spacing: .08em;
    color: var(--fw-text-light);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: .4rem;
}
.fw-breadcrumbs a { color: var(--fw-text-muted); }
.fw-breadcrumbs a:hover { color: var(--fw-primary); }
.fw-breadcrumbs .sep { color: var(--fw-border); }

/* =========================================================
   ARCHIVE / NEWS PAGE
   ========================================================= */
.fw-archive-header {
    background: var(--fw-bg-alt);
    border-bottom: 1px solid var(--fw-border);
    padding: 3.5rem 0 2.5rem;
    margin-bottom: 3rem;
}
.fw-archive-header h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-family: var(--fw-font-display);
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: .5rem;
}
.fw-archive-header h1 span { color: var(--fw-primary); }

/* Category filter pills */
.fw-cat-filter {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    margin-top: 1.5rem;
}
.fw-cat-filter a {
    padding: .35rem .9rem;
    font-family: var(--fw-font-mono);
    font-size: .65rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    border: 1px solid var(--fw-border);
    border-radius: 999px;
    color: var(--fw-text-muted);
    transition: all .2s;
}
.fw-cat-filter a:hover,
.fw-cat-filter a.active {
    border-color: var(--fw-primary);
    color: var(--fw-primary);
    background: rgba(var(--fw-primary-rgb), .06);
}

/* =========================================================
   SIDEBAR
   ========================================================= */
.fw-layout-with-sidebar {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 2.5rem;
    align-items: start;
}
.fw-sidebar { position: sticky; top: calc(var(--fw-header-h) + 2rem); }
.fw-widget {
    background: var(--fw-bg-card);
    border: 1px solid var(--fw-border);
    border-radius: var(--fw-radius);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}
.fw-widget__title {
    font-family: var(--fw-font-mono);
    font-size: .68rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--fw-text);
    margin-bottom: 1rem;
    padding-bottom: .75rem;
    border-bottom: 1px solid var(--fw-border);
}

/* Search widget */
.fw-search-form {
    display: flex;
    gap: .5rem;
}
.fw-search-form input {
    flex: 1;
    padding: .6rem 1rem;
    background: var(--fw-bg);
    border: 1px solid var(--fw-border);
    border-radius: var(--fw-radius);
    font-size: .875rem;
    color: var(--fw-text);
    outline: none;
}
.fw-search-form input:focus { border-color: var(--fw-primary); }
.fw-search-form button {
    padding: .6rem 1rem;
    background: var(--fw-primary);
    color: #fff;
    border: none;
    border-radius: var(--fw-radius);
    cursor: pointer;
    font-size: .875rem;
    transition: background .2s;
}
.fw-search-form button:hover { background: var(--fw-primary-h); }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
    .fw-footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .fw-features-grid { grid-template-columns: repeat(2, 1fr); }
    .fw-pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
    .fw-layout-with-sidebar { grid-template-columns: 1fr; }
    .fw-sidebar { position: static; }
    .fw-statsbar__grid { grid-template-columns: repeat(2, 1fr); }
    .fw-product-hero__split { grid-template-columns: 1fr; }
    .fw-product-hero__image { min-height: 300px; }
    .fw-team-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    :root { --fw-header-h: 40px; }
    .fw-nav { display: none; }
    .fw-hamburger { display: flex; }
    /* Hamburger i toggle przy prawej krawędzi */
    .fw-header__inner {
        grid-template-columns: auto 1fr auto;
    }
    .fw-header__actions {
        margin-left: auto;
        gap: .5rem;
    }
    .fw-header__actions .fw-btn { display: none; }
    .fw-news-grid { grid-template-columns: 1fr; }
    .fw-news-grid--hero { grid-template-columns: 1fr; }
    .fw-news-grid--hero .fw-post-card:first-child { grid-row: auto; }
    .fw-features-grid { grid-template-columns: 1fr; }
    .fw-footer__grid { grid-template-columns: 1fr; }
    .fw-about-split { grid-template-columns: 1fr; gap: 2rem; }
    .fw-footer__bottom { flex-direction: column; text-align: center; }
    .fw-section { padding: 3.5rem 0; }
    .fw-hero { min-height: 70vh; }
    .fw-hero__title { font-size: clamp(3rem, 15vw, 5rem); }
    .fw-statsbar__grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
    .fw-grid-2, .fw-grid-3, .fw-grid-4 { grid-template-columns: 1fr; }
    .fw-team-grid { grid-template-columns: repeat(2, 1fr); }
    .fw-product-hero__text { padding: 2rem; }
}
@media (max-width: 480px) {
    .fw-statsbar__grid { grid-template-columns: 1fr; text-align: left; }
    .fw-hero__stats { flex-direction: column; gap: .75rem; }
    .fw-team-grid { grid-template-columns: 1fr; }
}

/* =========================================================
   UTILITY
   ========================================================= */
.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;
}
.text-center { text-align: center; }
.text-primary { color: var(--fw-primary); }
.text-accent  { color: var(--fw-accent); }
.text-muted   { color: var(--fw-text-muted); }
.mt-1 { margin-top: .5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-1 { margin-bottom: .5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.flex-center { display: flex; align-items: center; justify-content: center; }

/* WP alignment classes */
.alignleft  { float: left; margin: 0 1.5rem 1rem 0; }
.alignright { float: right; margin: 0 0 1rem 1.5rem; }
.aligncenter { display: block; margin: 1.5rem auto; }
.alignfull  { width: 100vw; margin-left: calc(-50vw + 50%); }
.alignwide  { width: calc(100% + 4rem); margin-left: -2rem; }

/* WP admin bar offset */
.admin-bar #fw-header { top: 32px; }
@media (max-width: 782px) {
    .admin-bar #fw-header { top: 46px; }
}

/* Scroll animations */
.fw-reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .6s ease, transform .6s ease;
}
.fw-reveal.visible {
    opacity: 1;
    transform: none;
}

/* =========================================================
   NEWS PORTAL HOMEPAGE
   ========================================================= */

/* ── Badge ─────────────────────────────────────────────── */
.fw-badge {
    display: inline-block;
    padding: .25em .65em;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #fff;
    border-radius: 2px;
    text-decoration: none;
    line-height: 1.4;
    white-space: nowrap;
}
.fw-badge--xs { font-size: .6rem; padding: .2em .55em; }

/* ── Top Stories ───────────────────────────────────────── */
.fw-top-stories {
    padding: 1.5rem 0 0;
}
.fw-top-stories__grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 2px;
    background: var(--fw-border);
    border: 1px solid var(--fw-border);
    border-radius: 4px;
    overflow: hidden;
}

/* Featured card */
.fw-feat-card {
    background: var(--fw-bg);
}
.fw-feat-card__img-wrap {
    display: block;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: var(--fw-bg-alt);
}
.fw-feat-card__img-wrap img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s ease;
}
.fw-feat-card:hover .fw-feat-card__img-wrap img { transform: scale(1.03); }
.fw-feat-card__placeholder {
    width: 100%; height: 100%;
    background: linear-gradient(135deg, color-mix(in srgb, var(--c, #16a34a) 20%, var(--fw-bg-alt)), var(--fw-bg-alt));
}
.fw-feat-card__body { padding: 1.25rem 1.5rem 1.5rem; }
.fw-feat-card__title {
    font-size: clamp(1.3rem, 2.2vw, 1.7rem);
    font-weight: 800;
    line-height: 1.2;
    margin: .5rem 0 .75rem;
}
.fw-feat-card__title a { color: var(--fw-text); text-decoration: none; }
.fw-feat-card__title a:hover { color: var(--fw-primary); }
.fw-feat-card__excerpt {
    font-size: .9rem;
    color: var(--fw-text-muted);
    line-height: 1.65;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.fw-feat-card__meta {
    display: flex;
    gap: .5rem;
    align-items: center;
    font-size: .75rem;
    color: var(--fw-text-muted);
}

/* Side cards */
.fw-side-cards {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.fw-side-card {
    display: grid;
    grid-template-columns: 110px 1fr;
    background: var(--fw-bg);
    border-bottom: 1px solid var(--fw-border);
    transition: background .15s;
}
.fw-side-card:last-child { border-bottom: none; }
.fw-side-card:hover { background: var(--fw-bg-alt); }
.fw-side-card__img-wrap {
    display: block;
    aspect-ratio: 1/1;
    overflow: hidden;
    background: var(--fw-bg-alt);
}
.fw-side-card__img-wrap img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .35s;
}
.fw-side-card:hover .fw-side-card__img-wrap img { transform: scale(1.06); }
.fw-side-card__placeholder {
    width: 100%; height: 100%;
    background: linear-gradient(135deg, color-mix(in srgb, var(--c, #16a34a) 20%, var(--fw-bg-alt)), var(--fw-bg-alt));
}
.fw-side-card__body {
    padding: .8rem 1rem;
    display: flex;
    flex-direction: column;
    gap: .4rem;
    justify-content: center;
}
.fw-side-card__title {
    font-size: .875rem;
    font-weight: 700;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.fw-side-card__title a { color: var(--fw-text); text-decoration: none; }
.fw-side-card__title a:hover { color: var(--fw-primary); }
.fw-side-card__meta {
    display: flex;
    gap: .35rem;
    font-size: .72rem;
    color: var(--fw-text-muted);
    margin-top: auto;
}

/* ── Category filter bar ───────────────────────────────── */
.fw-cat-bar {
    position: sticky;
    top: var(--fw-header-h, 64px);
    z-index: 90;
    background: var(--fw-bg);
    border-bottom: 2px solid var(--fw-border);
    margin-top: 1.5rem;
}
.fw-cat-bar__pills {
    display: flex;
    gap: .35rem;
    overflow-x: auto;
    padding: .7rem 0;
    scrollbar-width: none;
}
.fw-cat-bar__pills::-webkit-scrollbar { display: none; }
.fw-cat-pill {
    display: inline-block;
    padding: .4em 1em;
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .04em;
    white-space: nowrap;
    color: var(--fw-text-muted);
    background: transparent;
    border: 1px solid var(--fw-border);
    border-radius: 20px;
    text-decoration: none;
    transition: color .2s, border-color .2s, background .2s;
}
.fw-cat-pill:hover {
    color: var(--c, var(--fw-primary));
    border-color: var(--c, var(--fw-primary));
    background: color-mix(in srgb, var(--c, var(--fw-primary)) 8%, transparent);
}
.fw-cat-pill--active {
    color: #fff !important;
    background: var(--fw-primary) !important;
    border-color: var(--fw-primary) !important;
}

/* ── Main news feed grid ───────────────────────────────── */
.fw-news-feed { padding: 2rem 0 3.5rem; }
.fw-feed-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.fw-news-card {
    display: flex;
    flex-direction: column;
    background: var(--fw-bg);
    border: 1px solid var(--fw-border);
    border-radius: 4px;
    overflow: hidden;
    transition: box-shadow .25s, transform .25s;
}
.fw-news-card:hover {
    box-shadow: 0 6px 24px rgba(0,0,0,.07);
    transform: translateY(-3px);
}
.fw-news-card__img-wrap {
    display: block;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: var(--fw-bg-alt);
    flex-shrink: 0;
}
.fw-news-card__img-wrap img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .4s ease;
}
.fw-news-card:hover .fw-news-card__img-wrap img { transform: scale(1.05); }
.fw-news-card__placeholder {
    width: 100%; height: 100%;
    background: linear-gradient(135deg, color-mix(in srgb, var(--c, #16a34a) 15%, var(--fw-bg-alt)), var(--fw-bg-alt));
}
.fw-news-card__body {
    padding: .9rem 1rem 1rem;
    display: flex;
    flex-direction: column;
    gap: .45rem;
    flex: 1;
}
.fw-news-card__title {
    font-size: .975rem;
    font-weight: 700;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.fw-news-card__title a { color: var(--fw-text); text-decoration: none; }
.fw-news-card__title a:hover { color: var(--fw-primary); }
.fw-news-card__excerpt {
    font-size: .82rem;
    color: var(--fw-text-muted);
    line-height: 1.55;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.fw-news-card__meta {
    display: flex;
    justify-content: space-between;
    font-size: .72rem;
    color: var(--fw-text-muted);
    margin-top: auto;
    padding-top: .6rem;
    border-top: 1px solid var(--fw-border);
}

/* Pagination + more link */
.fw-portal-pagination {
    display: flex;
    justify-content: center;
    gap: .4rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}
.fw-portal-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px; height: 38px;
    padding: 0 .75rem;
    border: 1px solid var(--fw-border);
    border-radius: 4px;
    font-size: .8rem;
    color: var(--fw-text-muted);
    text-decoration: none;
    transition: all .2s;
}
.fw-portal-pagination .page-numbers:hover,
.fw-portal-pagination .page-numbers.current {
    border-color: var(--fw-primary);
    color: var(--fw-primary);
    background: color-mix(in srgb, var(--fw-primary) 6%, transparent);
}
.fw-portal__more-link {
    text-align: center;
    margin-top: 1.5rem;
}

/* ── Responsive ────────────────────────────────────────── */
@media (max-width: 1024px) {
    .fw-top-stories__grid {
        grid-template-columns: 1fr;
    }
    .fw-side-cards {
        flex-direction: row;
        flex-wrap: wrap;
    }
    .fw-side-card {
        flex: 1 1 calc(33.33% - 1px);
        min-width: 220px;
    }
    .fw-feed-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .fw-feat-card__title { font-size: 1.2rem; }
    .fw-side-card { flex: 1 1 100%; }
    .fw-feed-grid { grid-template-columns: 1fr; }
    .fw-cat-bar { top: 0; }
}

/* =========================================================
   COOKIE BANNER
   ========================================================= */
#fw-cookie-banner {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 9999;
    background: #0f172a;
    border-top: 2px solid var(--fw-primary);
    padding: 1rem 0;
    transform: translateY(100%);
    transition: transform .35s ease;
    box-shadow: 0 -4px 24px rgba(0,0,0,.2);
}
#fw-cookie-banner.visible { transform: translateY(0); }
.fw-cookie__inner {
    max-width: var(--fw-max-w);
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}
.fw-cookie__text { flex: 1; min-width: 240px; }
.fw-cookie__text strong {
    display: block;
    color: #e2e8f0;
    margin-bottom: .3rem;
    font-size: .95rem;
}
.fw-cookie__text p {
    color: #94a3b8;
    font-size: .82rem;
    line-height: 1.5;
    margin: 0;
}
.fw-cookie__text a { color: var(--fw-primary); }
.fw-cookie__actions {
    display: flex;
    gap: .75rem;
    flex-shrink: 0;
}
.fw-cookie__actions .fw-btn--outline {
    border-color: #334155;
    color: #94a3b8;
}
.fw-cookie__actions .fw-btn--outline:hover {
    border-color: #64748b;
    color: #e2e8f0;
}

/* =========================================================
   MOBILE – globalne poprawki
   ========================================================= */
@media (max-width: 768px) {
    /* Header */
    .fw-header__inner { gap: .75rem; }
    .fw-logo { font-size: .95rem; }

    /* Ticker mniejszy */
    .fw-ticker__item { padding: 0 .9rem; font-size: .65rem; gap: .4rem; }

    /* Sekcje */
    .fw-section { padding: 2.5rem 0; }

    /* Footer grid */
    .fw-footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    /* Single post */
    .fw-single { padding: 1.5rem 0 3rem; }

    /* Pricing */
    .fw-pricing-grid { grid-template-columns: 1fr; }

    /* Products */
    .fw-product-hero__split { grid-template-columns: 1fr; }

    /* Cookie banner */
    .fw-cookie__inner { flex-direction: column; align-items: flex-start; gap: 1rem; }
    .fw-cookie__actions { width: 100%; }
    .fw-cookie__actions .fw-btn { flex: 1; justify-content: center; }
}

@media (max-width: 480px) {
    /* Container padding */
    .fw-container { padding: 0 1rem; }

    /* Footer single column */
    .fw-footer__grid { grid-template-columns: 1fr; gap: 1.5rem; }

    /* Top stories side cards stack */
    .fw-side-card { grid-template-columns: 90px 1fr; }

    /* Featured heading smaller */
    .fw-feat-card__title { font-size: 1.05rem; }
    .fw-feat-card__body { padding: 1rem; }

    /* Cat bar pills smaller */
    .fw-cat-pill { font-size: .68rem; padding: .35em .8em; }

    /* Header actions – ukryj tekst CTA na mobile */
    .fw-header__actions .fw-btn { display: none; }
}
