/* =============================================
   RENA-POL CMS – Site CSS
   Bazuje 1:1 na oryginalnym theme rsp89wp
   ============================================= */

:root {
    --dark: #212122;
    --gray-70: #717171;
    --gray-60: #858585;
    --gray-50: #999999;
    --gray-20: #D6D6D6;
    --gray-15: #E1E1E1;
    --orange: #FF6F4D;
    --white: #ffffff;
    --bg-light: #F6F6F6;
    --bg-alt: #F4F4F4;
    --border: #E1E1E1;
    --shadow-orange: 0px 30px 70px 0px rgba(255,111,77,0.15);
    --shadow-card: 0px 8px 10px 0px rgba(0,0,0,0.06);
    --radius: 15px;
    --transition: all .3s ease-in-out;
}

/* ---- FONTS ---- */
@font-face {
    font-display: swap;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 300;
    src: url('/assets/fonts/inter-v13-latin_latin-ext-300.woff2') format('woff2');
}
@font-face {
    font-display: swap;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    src: url('/assets/fonts/inter-v13-latin_latin-ext-regular.woff2') format('woff2');
}
@font-face {
    font-display: swap;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    src: url('/assets/fonts/inter-v13-latin_latin-ext-500.woff2') format('woff2');
}
@font-face {
    font-display: swap;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;
    src: url('/assets/fonts/inter-v13-latin_latin-ext-700.woff2') format('woff2');
}
@font-face {
    font-display: swap;
    font-family: 'Krona One';
    font-style: normal;
    font-weight: 400;
    src: url('/assets/fonts/krona-one-v14-latin_latin-ext-regular.woff2') format('woff2');
}

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; }

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

/* picture element musi być display:block żeby img wewnątrz wypełniał kontener */
picture { display: block; }
picture img { display: block; }

body {
    font-family: 'Inter', sans-serif;
    font-size: 1.6rem;
    color: var(--dark);
    background: #fff;
    overflow-x: hidden;
    max-width: 100%;
    margin: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Krona One', sans-serif;
    line-height: normal;
    margin: 0 0 2rem 0;
}

p { margin: 0 0 4rem 0; line-height: 3rem; }
p:last-child { margin-bottom: 0; }

a { color: inherit; text-decoration: underline; }
a:hover, a:focus { color: inherit; text-decoration: underline; }

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

ul {
    list-style-type: none;
    padding: 0;
    margin: 0 0 4rem 0;
    line-height: 3rem;
}

ul li {
    position: relative;
    padding-left: 6.5rem;
    margin-bottom: 2.5rem;
}

ul li:last-child { margin-bottom: 0; }

ul li::before {
    content: '';
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: -.4rem;
    background: #F6F6F6 url('/assets/images/icon-checkmark.svg') center center no-repeat;
    background-size: 1.4rem;
}

/* Resetuj bullet dla nav, footer, etc. */
.page-footer li,
.page-header li,
.langs li,
.menu-top li,
.menu-top-mobile li,
.breadcrumbs li,
nav li {
    padding: 0;
    margin: 0;
}
.page-footer li::before,
.page-header li::before,
.langs li::before,
.menu-top li::before,
.menu-top-mobile li::before,
.breadcrumbs li::before,
nav li::before {
    display: none;
}

/* ---- CONTAINER ---- */
.container {
    max-width: 1260px;
    margin: 0 auto;
    padding: 0 1.5rem;
    width: 100%;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -1.5rem;
}
.row > [class*="col-"] {
    padding: 0 1.5rem;
}

/* Column grid */
.col-12 { width: 100%; }
.col-md-6 { width: 100%; }
.col-lg-4 { width: 100%; }
.col-lg-5 { width: 100%; }
.col-lg-6 { width: 100%; }
.col-lg-8 { width: 100%; }

@media (min-width: 768px) {
    .col-md-6 { width: 50%; }
}
@media (min-width: 992px) {
    .col-lg-3 { width: 25%; }
    .col-lg-4 { width: 33.333%; }
    .col-lg-5 { width: 41.666%; }
    .col-lg-6 { width: 50%; }
    .col-lg-7 { width: 58.333%; }
    .col-lg-8 { width: 66.666%; }
    .col-lg-9 { width: 75%; }
    .col-lg-12 { width: 100%; }
    .offset-lg-1 { margin-left: 8.333%; }
    .order-lg-1 { order: 1; }
    .order-lg-2 { order: 2; }
}

/* Gap variants */
.row--gap-medium { gap: 3rem 0; }
@media (min-width: 992px) { .row--gap-medium { gap: 5rem 0; } }

/* ============================================
   PAGE HEADER
   ============================================ */
.page-header-holder {
    height: 150px;
}
@media (min-width: 992px) { .page-header-holder { height: 170px; } }

.page-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    transition: var(--transition);
    background: transparent;
}

.page-header.scrolled {
    background: #fff;
    box-shadow: var(--shadow-card);
}

/* ---- TOPBAR ---- */
.page-header .top {
    background: var(--dark);
    color: var(--gray-50);
    padding: 1rem 0;
    font-size: 1.4rem;
}

.page-header .top .container {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0;
}

.page-header .top p { font-size: 1.4rem; line-height: 2rem; margin: 0; }
.page-header .top a { color: var(--gray-50); text-decoration: none; }
.page-header .top a:hover { color: #fff; }

.page-header .top .email,
.page-header .top .phone {
    position: relative;
    padding: 0 2rem 0 2.5rem;
    margin-right: 2rem;
}
.page-header .email::after,
.page-header .phone::after {
    content: '';
    width: .1rem;
    height: 2rem;
    background: #333;
    position: absolute;
    right: 0;
    top: 50%;
    margin-top: -1rem;
}
.page-header .email::before {
    content: '';
    width: 1.6rem;
    height: 1.3rem;
    background: url('/assets/images/icon-email.svg') no-repeat center;
    background-size: contain;
    position: absolute;
    left: 0;
    top: .5rem;
}
.page-header .phone::before {
    content: '';
    width: 1.5rem;
    height: 1.5rem;
    background: url('/assets/images/icon-phone.svg') no-repeat center;
    background-size: contain;
    position: absolute;
    left: 0;
    top: .2rem;
}

.social-links {
    display: flex;
    align-items: center;
    margin: 0;
    position: relative;
    padding-right: 2rem;
    margin-right: 2rem;
    line-height: 1rem;
}
.social-links::after {
    content: '';
    width: .1rem;
    height: 2rem;
    background: #333;
    position: absolute;
    right: 0;
    top: 50%;
    margin-top: -1rem;
}
.social-links li { margin: 0; }
.social-links li:not(:last-child) { margin-right: 2rem; }
.social-links svg { fill: var(--gray-60); height: 1.7rem; width: auto; display: block; }
.social-links a:hover svg { fill: #fff; }

.langs {
    font-size: 1.4rem;
    line-height: 2rem;
    margin: 0;
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: .5rem;
}
.langs a { text-decoration: none; color: var(--gray-50); }
.langs img { border-radius: 3px; height: 1.3rem; display: inline-block; }

/* ---- HEADER BOTTOM ---- */
.page-header .bottom .container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    width: 100%;
}

.page-logo {
    display: flex;
    align-items: center;
    position: relative;
    margin: 2rem 0;
    text-decoration: none;
}
@media (min-width: 992px) { .page-logo { margin: 0; } }

.page-logo img { transition: var(--transition); height: 5rem; width: auto; }
.page-logo .logo-2 { position: absolute; top: 0; left: 0; opacity: 0; }
.page-header.scrolled .page-logo .logo-1 { opacity: 0; }
.page-header.scrolled .page-logo .logo-2 { opacity: 1; }
/* On non-hero pages, show dark logo by default */
.page-header.dark-logo .page-logo .logo-1 { opacity: 0; }
.page-header.dark-logo .page-logo .logo-2 { opacity: 1; }

.page-header .right {
    margin-left: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2rem;
}

/* ---- NAVIGATION (Desktop mega menu) ---- */
#menu-top {
    margin: 0;
    display: flex;
    list-style: none;
    padding: 0;
}

#menu-top li { margin-left: 2rem; position: relative; }

#menu-top > li > a {
    font-size: 1.6rem;
    font-weight: 500;
    color: #fff;
    text-decoration: none;
    padding: 3.5rem 0;
    display: inline-block;
    line-height: 1;
    white-space: nowrap;
    transition: var(--transition);
}

.page-header.scrolled #menu-top > li > a,
.page-header.dark-logo #menu-top > li > a {
    color: var(--gray-60);
}

#menu-top > li > a:hover { color: var(--orange); }
.page-header.scrolled #menu-top > li > a:hover,
.page-header.dark-logo #menu-top > li > a:hover { color: var(--orange); }

#menu-top > li.current > a {
    position: relative;
}
#menu-top > li.current > a::after {
    content: '';
    width: 100%;
    height: .2rem;
    background: var(--orange);
    position: absolute;
    bottom: 2.5rem;
    left: 0;
    display: block;
}

/* Dropdown submenu */
#menu-top > li > ul {
    position: absolute;
    top: 100%;
    left: -2rem;
    min-width: 24rem;
    background: #fff;
    box-shadow: 0 10px 40px rgba(0,0,0,.12);
    border-radius: 8px;
    padding: 1rem 0;
    margin: 0;
    display: none;
    z-index: 100;
}
#menu-top > li:hover > ul { display: block; }
#menu-top > li > ul > li > a {
    display: block;
    padding: 1rem 2.5rem;
    font-size: 1.5rem;
    color: var(--dark);
    text-decoration: none;
    white-space: nowrap;
    transition: var(--transition);
}
#menu-top > li > ul > li > a:hover {
    color: var(--orange);
    background: var(--bg-light);
}

/* CTA item in dropdown nav */
#menu-top > li > ul > li.nav-cta {
    border-top: 1px solid var(--border);
    margin-top: .5rem;
    padding-top: .5rem;
}
#menu-top > li > ul > li.nav-cta > a {
    color: var(--orange) !important;
    font-weight: 700;
}
#menu-top > li > ul > li.nav-cta > a:hover {
    background: var(--orange);
    color: #fff !important;
}
.menu-top-mobile li.nav-cta > a {
    color: var(--orange);
    font-weight: 700;
}

/* CTA Button in header */
.header-cta {
    background: var(--orange);
    color: #fff !important;
    padding: 1.4rem 3rem;
    border-radius: 5rem;
    font-size: 1.5rem;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    transition: var(--transition);
}
.header-cta:hover { background: #e85e3d; color: #fff !important; }

/* ---- HAMBURGER (Mobile) ---- */
.hamburger {
    display: block;
    cursor: pointer;
    background: none;
    border: none;
    padding: 1rem;
    margin-left: auto;
}
@media (min-width: 992px) { .hamburger { display: none; } }

.hamburger-box {
    width: 3rem;
    height: 2.4rem;
    display: inline-block;
    position: relative;
}
.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
    content: '';
    width: 3rem;
    height: .25rem;
    background: #fff;
    border-radius: 2px;
    position: absolute;
    transition: var(--transition);
}
.page-header.scrolled .hamburger-inner,
.page-header.scrolled .hamburger-inner::before,
.page-header.scrolled .hamburger-inner::after,
.page-header.dark-logo .hamburger-inner,
.page-header.dark-logo .hamburger-inner::before,
.page-header.dark-logo .hamburger-inner::after {
    background: var(--dark);
}
.hamburger-inner { top: 50%; transform: translateY(-50%); }
.hamburger-inner::before { top: -1rem; }
.hamburger-inner::after { top: 1rem; }

/* Desktop nav - show only on 992+ */
#menu-top,
.header-cta { display: none; }
@media (min-width: 992px) {
    #menu-top,
    .header-cta { display: flex; }
    .header-cta { display: inline-block; }
}

/* ---- MOBILE MENU OVERLAY ---- */
#menu-overlay {
    position: fixed;
    top: 150px;
    left: 0;
    width: 100%;
    height: calc(100vh - 150px);
    background: #fff;
    z-index: 99999;
    overflow-y: auto;
    display: none;
    padding: 3rem 0;
}
@media (min-width: 768px) { #menu-overlay { top: 150px; height: calc(100vh - 150px); } }
@media (min-width: 992px) { #menu-overlay { display: none !important; } }

.menu-top-mobile { font-size: 2rem; list-style: none; padding: 0; margin: 0; }
.menu-top-mobile a { text-decoration: none; color: var(--dark); font-weight: 600; display: block; padding: 1.3rem 0; border-bottom: 1px solid var(--gray-15); }
.menu-top-mobile ul { display: none; padding: 1rem 0 2rem; font-size: 1.6rem; background: var(--bg-light); }
.menu-top-mobile ul a { padding: .8rem 2rem; border-bottom: none; font-weight: 400; }
.menu-top-mobile .sub-menu-open > ul { display: block; }
.menu-top-mobile li::before { display: none; }

/* ============================================
   PAGE CONTENT
   ============================================ */
.page-content {
    overflow: clip; /* clip zamiast hidden — nie psuje position:sticky w dzieciach */
    padding-top: 0;
}

/* Pages without a full-width hero — push content below fixed header */
.page-content.no-hero { padding-top: 17rem; }

.content-block { margin-bottom: 10rem; }
.content-block:last-child { margin-bottom: 0; }

/* ============================================
   HEADINGS
   ============================================ */
.heading { font-family: 'Krona One', sans-serif; line-height: normal; }
.heading--size-1 { font-size: 4rem; } @media (min-width:992px) { .heading--size-1 { font-size: 5.5rem; } }
.heading--size-2 { font-size: 3.8rem; } @media (min-width:992px) { .heading--size-2 { font-size: 4.8rem; } }
.heading--size-3 { font-size: 3rem; } @media (min-width:992px) { .heading--size-3 { font-size: 3.5rem; } }
.heading--size-4 { font-size: 2.8rem; } @media (min-width:992px) { .heading--size-4 { font-size: 3.2rem; } }
.heading--white { color: #fff; }

/* Dark background utility */
.dark-bg { background: var(--dark); }

/* ============================================
   PROSE — rich text content (WYSIWYG output)
   ============================================ */
.prose {
    font-size: 1.6rem;
    line-height: 1.85;
    color: var(--dark);
    max-width: 100%;
}

/* Headings inside prose */
.prose h1 {
    font-family: 'Krona One', sans-serif;
    font-size: 3.6rem;
    line-height: 1.25;
    margin: 0 0 2rem;
    color: var(--dark);
}
.prose h2 {
    font-family: 'Krona One', sans-serif;
    font-size: 2.6rem;
    line-height: 1.3;
    margin: 4rem 0 1.6rem;
    color: var(--dark);
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--border);
}
.prose h3 {
    font-family: 'Inter', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.35;
    margin: 3rem 0 1.2rem;
    color: var(--dark);
}
.prose h4 {
    font-size: 1.7rem;
    font-weight: 700;
    margin: 2.5rem 0 1rem;
    color: var(--dark);
}
.prose h2:first-child,
.prose h3:first-child { margin-top: 0; }

/* Paragraphs */
.prose p {
    margin: 0 0 2rem;
}
.prose p:last-child { margin-bottom: 0; }

/* Lists — custom styled bullets */
.prose ul {
    list-style: none;
    margin: 0 0 2.5rem;
    padding: 0;
}
.prose ul li {
    position: relative;
    padding-left: 2.4rem;
    margin-bottom: 1rem;
    line-height: 1.7;
}
.prose ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: .65em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--orange);
    flex-shrink: 0;
}

.prose ol {
    list-style: none;
    counter-reset: prose-counter;
    margin: 0 0 2.5rem;
    padding: 0;
}
.prose ol li {
    counter-increment: prose-counter;
    position: relative;
    padding-left: 3.5rem;
    margin-bottom: 1.2rem;
    line-height: 1.7;
}
.prose ol li::before {
    content: counter(prose-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 2.4rem;
    height: 2.4rem;
    background: var(--orange);
    color: #fff;
    border-radius: 50%;
    font-size: 1.2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    margin-top: .1rem;
}

/* Nested lists */
.prose ul ul,
.prose ol ul { margin: 1rem 0 0 2rem; }

/* Links */
.prose a { color: var(--orange); text-decoration: underline; text-underline-offset: 3px; }
.prose a:hover { opacity: .8; }

/* Strong / em */
.prose strong { font-weight: 700; color: var(--dark); }
.prose em { font-style: italic; }

/* Blockquote */
.prose blockquote {
    border-left: 4px solid var(--orange);
    padding: 2rem 2.5rem;
    margin: 3rem 0;
    background: var(--bg-light);
    border-radius: 0 1rem 1rem 0;
    font-size: 1.7rem;
    font-style: italic;
    color: var(--dark);
}
.prose blockquote p { margin-bottom: 0; }

/* Tables */
.prose table {
    width: 100%;
    border-collapse: collapse;
    margin: 3rem 0;
    font-size: 1.5rem;
    line-height: 1.5;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0 0 1px var(--border);
}
.prose thead { background: var(--dark); color: #fff; }
.prose th {
    padding: 1.4rem 2rem;
    font-weight: 700;
    text-align: left;
    font-size: 1.3rem;
    letter-spacing: .04em;
    text-transform: uppercase;
    border: none;
    color: #fff;
}
.prose td {
    padding: 1.2rem 2rem;
    border-bottom: 1px solid var(--border);
    border-right: 1px solid var(--border);
    text-align: left;
    vertical-align: top;
}
.prose td:last-child { border-right: none; }
.prose tbody tr:last-child td { border-bottom: none; }
.prose tbody tr:nth-child(even) { background: var(--bg-light); }
.prose tbody tr:hover { background: rgba(255,111,77,.04); }

/* HR */
.prose hr {
    border: none;
    border-top: 2px solid var(--border);
    margin: 4rem 0;
}

/* Images */
.prose img {
    max-width: 100%;
    height: auto;
    border-radius: 1rem;
    margin: 2.5rem 0;
    display: block;
}
.prose figure {
    margin: 2.5rem 0;
}
.prose figcaption {
    font-size: 1.3rem;
    color: var(--gray-50);
    text-align: center;
    margin-top: .8rem;
}

/* Code */
.prose code {
    background: #f0f2f5;
    padding: .2rem .6rem;
    border-radius: 4px;
    font-size: 1.4rem;
    font-family: 'Courier New', monospace;
}
.prose pre {
    background: var(--dark);
    color: #f8f8f2;
    padding: 2.5rem;
    border-radius: 1rem;
    overflow-x: auto;
    font-size: 1.4rem;
    margin: 2.5rem 0;
}
.prose pre code { background: none; padding: 0; color: inherit; }

/* Info / warning boxes */
.prose .info-box,
.prose .warning-box {
    padding: 2rem 2.5rem;
    border-radius: 1rem;
    margin: 2.5rem 0;
    border-left: 4px solid;
    font-size: 1.5rem;
    line-height: 1.7;
}
.prose .info-box { background: #e8f4fd; border-color: #3498db; }
.prose .warning-box { background: #fff3cd; border-color: #f0ad4e; }

/* ============================================
   BUTTONS
   ============================================ */
.button, .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.4rem 3.2rem;
    border-radius: 10rem;
    font-size: 1.6rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition);
    border: 2px solid transparent;
    white-space: nowrap;
    line-height: 1.2;
}

.button--orange, .btn-orange, .btn-primary {
    background: var(--orange) !important;
    color: #fff !important;
    border-color: var(--orange) !important;
}
.button--orange:hover, .btn-orange:hover, .btn-primary:hover {
    background: #e85e3d !important;
    border-color: #e85e3d !important;
    color: #fff !important;
}

/* ghost — only for dark/coloured backgrounds */
.button--ghost, .btn-ghost, .button--ghost-white {
    background: transparent;
    border-color: rgba(255,255,255,.5);
    color: #fff !important;
}
.button--ghost:hover, .button--ghost-white:hover {
    background: rgba(255,255,255,.1);
    border-color: #fff;
    color: #fff !important;
}

/* ghost-dark — for light/white backgrounds */
.button--ghost-dark, .btn-secondary {
    background: transparent;
    border-color: var(--dark);
    color: var(--dark) !important;
}
.button--ghost-dark:hover, .btn-secondary:hover {
    background: var(--dark);
    color: #fff !important;
}

/* ghost-orange — transparent with orange border, for light backgrounds */
.button--ghost-orange, .btn-ghost-orange {
    background: transparent;
    border-color: var(--orange);
    color: var(--orange) !important;
}
.button--ghost-orange:hover, .btn-ghost-orange:hover {
    background: var(--orange);
    color: #fff !important;
}

.button--white, .btn-white {
    background: #fff;
    color: var(--orange);
    border-color: #fff;
}
.button--white:hover, .btn-white:hover {
    background: transparent;
    color: #fff;
    border-color: #fff;
}

/* btn-outline-white — white ghost, for dark/colored backgrounds */
.btn-outline-white {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,.55);
}
.btn-outline-white:hover {
    border-color: #fff;
    background: rgba(255,255,255,.1);
    color: #fff;
}

/* ============================================
   BLOCK TYPE 1 – HERO SLIDER
   ============================================ */
.block-type-1 { position: relative; margin-bottom: 0 !important; outline: 3px solid #fff; outline-offset: -3px; box-shadow: 0 0 0 6px rgba(255,255,255,.25), 0 8px 40px rgba(0,0,0,.22); }

.block-type-1 .slide {
    position: relative;
    color: #fff;
    padding: 20rem 0 10rem;
    min-height: 70vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
@media (min-width: 768px) {
    .block-type-1 .slide { min-height: 85vh; padding: 25rem 0 15rem; }
}
@media (min-width: 992px) {
    .block-type-1 .slide { min-height: 100vh; padding: 30rem 0 15rem; }
}

.block-type-1 .slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(33,33,34,.8) 0%, rgba(33,33,34,.3) 100%);
    z-index: 1;
}

.block-type-1 .container { position: relative; z-index: 10; }

.block-type-1 .heading {
    color: #fff;
    font-size: 3.6rem;
    margin-bottom: 2rem;
}
@media (min-width: 768px) { .block-type-1 .heading { font-size: 4.5rem; } }
@media (min-width: 992px) { .block-type-1 .heading { font-size: 5.5rem; max-width: 70%; } }

.block-type-1 p {
    font-size: 1.8rem;
    line-height: 3rem;
    max-width: 60rem;
    opacity: .9;
    margin-bottom: 4rem;
}

.block-type-1 .buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: center;
}

/* Slider arrows */
.block-type-1 .slider-wrap { position: relative; }
.block-type-1 .arrow-prev,
.block-type-1 .arrow-next {
    width: 6rem;
    height: 6rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: 3rem;
    background: rgba(33,33,34,.5);
    z-index: 20;
    border: none;
}
.block-type-1 .arrow-prev { left: 0; padding-right: .2rem; }
.block-type-1 .arrow-next { left: 6.5rem; padding-left: .2rem; }
@media (min-width: 992px) {
    .block-type-1 .arrow-prev { left: 2rem; top: 50%; bottom: auto; margin-top: -3rem; }
    .block-type-1 .arrow-next { right: 2rem; left: auto; top: 50%; bottom: auto; margin-top: -3rem; }
}
.block-type-1 .arrow-prev:hover,
.block-type-1 .arrow-next:hover { background: rgba(33,33,34,1); }
.block-type-1 .arrow-prev svg path,
.block-type-1 .arrow-next svg path { fill: #fff; opacity: .6; }

/* Slider dots */
.block-type-1 .slider-dots {
    position: absolute;
    bottom: 4rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 20;
}
.block-type-1 .dot {
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    background: rgba(255,255,255,.4);
    cursor: pointer;
    transition: var(--transition);
}
.block-type-1 .dot.active { background: var(--orange); }

/* ============================================
   BLOCK TYPE 2 – STATS BAR
   ============================================ */
.block-type-2 {
    background: url('/assets/images/bg-1.svg') center center no-repeat;
    background-size: cover;
    color: #fff;
    padding: 4.5rem;
    position: relative;
    margin-bottom: 0 !important;
}
.block-type-2::before {
    content: '';
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(255,111,77,1) 0%, rgba(255,255,255,0) 100%);
    position: absolute;
    top: 0;
    left: 0;
}
.block-type-2 .container { position: relative; z-index: 10; }
.block-type-2 .row {
    align-items: center;
    text-align: center;
}
@media (min-width: 992px) { .block-type-2 .row { text-align: left; } }
.block-type-2 .row > div {
    margin-bottom: 4rem;
    position: relative;
}
@media (min-width: 992px) {
    .block-type-2 .row > div { margin-bottom: 0; }
    .block-type-2 .row > div:not(:last-child) .box::after {
        content: '';
        width: .1rem;
        height: 100%;
        background: #fff;
        position: absolute;
        top: 0;
        right: 2rem;
        transform: rotate(30deg);
    }
}
.block-type-2 .number {
    font-size: 3.6rem;
    font-family: 'Krona One', sans-serif;
    margin-bottom: .5rem;
    color: #fff;
}
.block-type-2 .text { margin: 0; font-weight: 500; color: #fff; }

/* ============================================
   BLOCK TYPE 3 – TWO COLUMN ABOUT
   ============================================ */
.block-type-3 { padding: 10rem 0; }
.block-type-3 .heading { margin-bottom: 6rem; }
.block-type-3 .column-1 img {
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 5rem;
    width: 100%;
}
.block-type-3 .column-2 { padding-top: 3rem; padding-bottom: 3rem; }
.block-type-3 .text-block { margin-bottom: 4rem; }
.block-type-3 .text-block *:last-child { margin-bottom: 0; }
.block-type-3 h4 { font-size: 2rem; margin-bottom: 2rem; }

/* ============================================
   BLOCK TYPE 4 – BENEFITS GRID
   ============================================ */
.block-type-4 { padding: 10rem 0; background: var(--bg-light); }
.block-type-4 .heading { text-align: center; margin-bottom: 7rem; }
.block-type-4 .boxes > div { margin-bottom: 6rem; }
.block-type-4 .icon {
    height: 6rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 3rem;
}
.block-type-4 .icon img { height: 6rem; width: auto; }
.block-type-4 .title {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}
.block-type-4 .text *:last-child { margin-bottom: 0; }
.block-type-4 .text p { color: var(--gray-60); }

/* ============================================
   BLOCK TYPE 5 – SERVICES CARDS
   ============================================ */
.block-type-5 { padding: 10rem 0; }
.block-type-5 .heading { margin-bottom: 6rem; }
.block-type-5 .service-cards { display: grid; gap: 3rem; }
@media (min-width: 768px) { .block-type-5 .service-cards { grid-template-columns: 1fr 1fr; } }
@media (min-width: 992px) { .block-type-5 .service-cards { grid-template-columns: 1fr 1fr 1fr; } }

.block-type-5 .service-card {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 3.5rem;
    text-decoration: none;
    color: var(--dark);
    transition: var(--transition);
    display: block;
}
.block-type-5 .service-card:hover {
    box-shadow: var(--shadow-orange);
    border-color: var(--orange);
    transform: translateY(-4px);
}
.block-type-5 .service-card .icon { height: 5rem; margin-bottom: 2.5rem; }
.block-type-5 .service-card .icon img { height: 5rem; width: auto; }
.block-type-5 .service-card h3 { font-size: 1.8rem; font-family: 'Inter', sans-serif; font-weight: 700; margin-bottom: 1.5rem; }
.block-type-5 .service-card p { font-size: 1.6rem; color: var(--gray-60); margin: 0; }

/* ============================================
   BLOCK TYPE 6 – BRANDS CAROUSEL
   ============================================ */
.block-type-6 { padding: 10rem 0; background: var(--bg-light); }
.block-type-6 .heading { text-align: center; margin-bottom: 6rem; }
.block-type-6 .brands-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    align-items: center;
}
.block-type-6 .brand-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 2.5rem;
    background: #fff;
    border-radius: 8px;
    border: 1px solid var(--border);
    transition: var(--transition);
}
.block-type-6 .brand-item:hover { border-color: var(--orange); box-shadow: var(--shadow-card); }
.block-type-6 .brand-item img { height: 4rem; width: auto; filter: grayscale(100%); transition: var(--transition); }
.block-type-6 .brand-item:hover img { filter: grayscale(0%); }

/* Client logos grid */
.client-logos-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    justify-content: center;
    align-items: center;
}
.client-logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.2rem 2.5rem;
    background: #fff;
    border-radius: .8rem;
    border: 1px solid var(--border);
}
.client-logo-item img { height: 3.2rem; width: auto; filter: grayscale(100%) opacity(.6); transition: filter .2s; }
.client-logo-item:hover img { filter: grayscale(0%) opacity(1); }

/* ============================================
   BLOCK TYPE 7 – CTA SECTION
   ============================================ */
.block-type-7 {
    background: var(--dark);
    color: #fff;
    padding: 10rem 0;
    text-align: center;
}
.block-type-7 .heading { color: #fff; margin-bottom: 3rem; }
.block-type-7 p { color: rgba(255,255,255,.7); max-width: 70rem; margin: 0 auto 4rem; }
.block-type-7 .buttons,
.block-type-7 .buttons-col {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 1.5rem;
}
.block-type-7 .inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}
@media (min-width: 768px) {
    .block-type-7 .inner {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
        align-items: center;
    }
    .block-type-7 .inner .text-col { flex: 1; }
    .block-type-7 .inner .text-col .heading,
    .block-type-7 .inner .text-col h2 { margin-bottom: 1rem; }
    .block-type-7 .inner .text-col p { margin: 0; max-width: none; }
    .block-type-7 .inner .buttons-col { flex-shrink: 0; flex-direction: column; justify-content: flex-end; }
}

/* ============================================
   BLOCK TYPE 8 – ABOUT COMPANY
   ============================================ */
.block-type-8 { padding: 10rem 0; }
.block-type-8 .heading { margin-bottom: 3rem; }
.block-type-8 .column-1 img {
    border-radius: 10px;
    width: 100%;
    object-fit: cover;
    margin-bottom: 5rem;
}
.block-type-8 .column-2 { padding-top: 3rem; }
.block-type-8 .buttons { display: flex; flex-wrap: wrap; gap: 1.5rem; margin-top: 4rem; }

/* ============================================
   BREADCRUMBS
   ============================================ */
.breadcrumbs { margin-bottom: 3rem; font-size: 1.3rem; }
.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem 1rem;
    list-style: none;
    padding: 0;
    margin: 0;
    align-items: center;
}
.breadcrumbs li { display: flex; align-items: center; gap: .5rem; color: var(--gray-60); }
.breadcrumbs li + li::before { content: '/'; color: var(--gray-20); margin-right: .5rem; }
.breadcrumbs a { color: var(--gray-60); text-decoration: none; transition: color .2s; }
.breadcrumbs a:hover { color: var(--orange); }
.breadcrumbs [aria-current="page"] { color: var(--dark); font-weight: 500; }

/* ============================================
   PAGE INNER (subpages)
   ============================================ */
.page-inner-hero {
    background: var(--bg-light);
    padding: 8rem 0 6rem;
    margin-bottom: 8rem;
}
.page-inner-hero .breadcrumbs { margin-bottom: 2rem; }
.page-inner-hero h1 { margin-bottom: 2rem; }
.page-inner-hero p.lead {
    font-size: 1.8rem;
    line-height: 3rem;
    color: var(--gray-60);
    max-width: 70rem;
}
.page-inner-hero .hero-cta { margin-top: 4rem; display: flex; gap: 1.5rem; flex-wrap: wrap; }

/* Hero with background image */
.page-hero-img {
    position: relative;
    min-height: 50rem;
    display: flex;
    align-items: center;
    padding: 8rem 0;
    color: #fff;
    margin-bottom: 0;
    background-size: cover;
    background-position: center;
}
.page-hero-img::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(33,33,34,.85) 0%, rgba(33,33,34,.4) 100%);
}
.page-hero-img .container { position: relative; z-index: 1; }
.page-hero-img h1 { color: #fff; margin-bottom: 2rem; }
.page-hero-img p { opacity: .85; max-width: 65rem; margin-bottom: 4rem; }
.page-hero-img .breadcrumbs a,
.page-hero-img .breadcrumbs li { color: rgba(255,255,255,.7); }
.page-hero-img .breadcrumbs li:last-child a { color: #fff; }

/* ============================================
   BLOG / ARTICLES
   ============================================ */

/* Single Post */
.single-post { padding: 0 0 10rem; }
.single-post-top { text-align: center; margin-bottom: 5rem; }
.single-post-top .breadcrumbs { justify-content: center; }
.single-post-top h1 { font-size: 3.2rem; margin-bottom: 3rem; }
@media (min-width: 992px) { .single-post-top h1 { font-size: 4.8rem; } }

.single-post-top .post-meta {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
}
.single-post-top .post-meta p {
    color: var(--orange);
    font-size: 1.4rem;
    font-family: 'Krona One', sans-serif;
    position: relative;
    padding: 0 4rem;
    margin: 0;
    line-height: 3rem;
}
.single-post-top .post-meta p span {
    display: block;
    color: var(--dark);
    text-transform: uppercase;
    font-size: 1.1rem;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
}
@media (min-width: 992px) {
    .single-post-top .post-meta p:not(:last-child)::after {
        content: '';
        width: .1rem;
        height: 100%;
        background: var(--gray-20);
        position: absolute;
        top: -.3rem;
        right: 0;
        transform: rotate(-15deg);
    }
}

.post-image {
    height: 55rem;
    width: 100%;
    object-fit: cover;
    object-position: center;
    margin-bottom: 10rem;
    border-radius: 8px;
}

/* Post content (article body) */
.post-body { max-width: 780px; margin: 0 auto; }
.post-body h2 { font-size: 2.6rem; margin-bottom: 2rem; margin-top: 5rem; }
.post-body h3 { font-size: 2.2rem; margin-bottom: 2rem; margin-top: 4rem; }
.post-body h4 { font-size: 1.8rem; margin-bottom: 1.5rem; margin-top: 3rem; }
.post-body p { font-size: 1.6rem; line-height: 2.8rem; color: var(--gray-70); }
.post-body ul li { font-size: 1.6rem; line-height: 2.6rem; color: var(--gray-70); }
.post-body table { width: 100%; border-collapse: collapse; margin-bottom: 4rem; font-size: 1.5rem; }
.post-body table th { background: var(--dark); color: #fff; padding: 1.5rem; text-align: left; }
.post-body table td { padding: 1.2rem 1.5rem; border-bottom: 1px solid var(--border); }
.post-body table tr:nth-child(even) td { background: var(--bg-light); }
.post-body blockquote {
    background: var(--bg-alt);
    padding: 6rem 5rem 5rem;
    border-bottom: 2px solid var(--orange);
    margin-bottom: 7rem;
    position: relative;
}
.post-body blockquote::before {
    content: '';
    width: 5.9rem;
    height: 4.5rem;
    background: url('/assets/images/icon-quote.svg') no-repeat;
    background-size: contain;
    position: absolute;
    left: 5rem;
    top: -2rem;
}
.post-body blockquote p { font-size: 2rem; }

/* Sidebar */

/* ============================================
   CATEGORIES GRID
   ============================================ */

/* ============================================
   BRANDS PAGE
   ============================================ */
.brands-logo-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 768px) { .brands-logo-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 992px) { .brands-logo-grid { grid-template-columns: repeat(4, 1fr); } }

.brand-logo-card {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 3rem 2.5rem;
    text-align: center;
    text-decoration: none;
    color: var(--dark);
    transition: var(--transition);
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}
.brand-logo-card:hover {
    box-shadow: var(--shadow-orange);
    border-color: var(--orange);
    transform: translateY(-3px);
}
.brand-logo-card img { height: 5rem; width: auto; max-width: 14rem; object-fit: contain; }
.brand-logo-card .brand-name { font-size: 1.4rem; font-weight: 600; }
.brand-logo-card.own-brand { border-color: var(--orange); background: rgba(255,111,77,.04); }
.brand-logo-card .own-badge {
    background: var(--orange);
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    padding: .3rem 1rem;
    border-radius: 10rem;
    text-transform: uppercase;
    letter-spacing: .05em;
}

/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq-list { margin-bottom: 4rem; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 2.5rem 4rem 2.5rem 0;
    font-size: 1.8rem;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    color: var(--dark);
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: var(--transition);
}
.faq-question::after {
    content: '+';
    font-size: 2.4rem;
    color: var(--orange);
    font-weight: 300;
    flex-shrink: 0;
}
.faq-item.open .faq-question::after { content: '−'; }
.faq-answer { display: none; padding: 0 0 2.5rem; color: var(--gray-60); line-height: 2.8rem; }
.faq-item.open .faq-answer { display: block; }

/* ============================================
   CONTACT FORM
   ============================================ */
.contact-section { padding: 8rem 0; }
.contact-grid {
    display: grid;
    gap: 6rem;
}
@media (min-width: 992px) { .contact-grid { grid-template-columns: 5fr 4fr; } }

.contact-info h2 { margin-bottom: 3rem; }
.contact-info p { color: var(--gray-60); }
.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 3rem;
}
.contact-detail .icon-wrap {
    width: 5rem;
    height: 5rem;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.contact-detail .icon-wrap svg { width: 2rem; height: 2rem; fill: var(--orange); }
.contact-detail strong { display: block; font-size: 1.4rem; margin-bottom: .5rem; }
.contact-detail span { font-size: 1.5rem; color: var(--gray-60); }

/* Alert classes (flash messages) */
.alert { padding: 1.5rem 2rem; border-radius: 8px; font-size: 1.45rem; margin-bottom: 2rem; }
.alert-success { background: #d4edda; color: #155724; }
.alert-error { background: #f8d7da; color: #721c24; }

/* ============================================
   PAGE FOOTER
   ============================================ */
.page-footer {
    background: #1C1B1B;
    color: rgba(255,255,255,.6);
    padding: 8rem 0 4rem;
    font-size: 1.5rem;
}
.page-footer .footer-grid {
    display: grid;
    gap: 5rem;
    margin-bottom: 6rem;
}
@media (min-width: 768px) { .page-footer .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 992px) { .page-footer .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }

.page-footer .footer-brand { max-width: 34rem; }
.page-footer .footer-logo { margin-bottom: 2.5rem; }
.page-footer .footer-logo img { height: 4.5rem; width: auto; }
.page-footer .footer-brand p { line-height: 2.6rem; color: rgba(255,255,255,.5); }

.page-footer .footer-col h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-bottom: 2.5rem;
    font-family: 'Inter', sans-serif;
}
.page-footer .footer-col ul { margin: 0; }
.page-footer .footer-col li { margin-bottom: 1.2rem; padding: 0; }
.page-footer .footer-col li::before { display: none; }
.page-footer .footer-col a {
    color: rgba(255,255,255,.5);
    text-decoration: none;
    transition: var(--transition);
    font-size: 1.5rem;
}
.page-footer .footer-col a:hover { color: var(--orange); }

.page-footer .footer-bottom {
    border-top: 1px solid rgba(255,255,255,.1);
    padding-top: 3rem;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: space-between;
    align-items: center;
    font-size: 1.3rem;
    color: rgba(255,255,255,.35);
}
.page-footer .footer-bottom a { color: rgba(255,255,255,.35); text-decoration: none; }
.page-footer .footer-bottom a:hover { color: var(--orange); }
.page-footer .footer-social { display: flex; gap: 1.5rem; align-items: center; }
.page-footer .footer-social a {
    width: 3.6rem;
    height: 3.6rem;
    background: rgba(255,255,255,.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.page-footer .footer-social a:hover { background: var(--orange); }
.page-footer .footer-social svg { fill: #fff; height: 1.6rem; width: auto; }

/* ============================================
   SECTION UTILITIES
   ============================================ */
.section { padding: 8rem 0; }
.section-py { padding: 8rem 0; }
.section-py-sm { padding: 5rem 0; }
.section.bg-light, .section-py.bg-light { background: var(--bg-light); }
.bg-light { background: var(--bg-light); }
.bg-dark { background: var(--dark); color: #fff; }
.bg-orange { background: var(--orange); color: #fff; }

.section-head { margin-bottom: 5rem; }
.section-head .eyebrow {
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .14em;
    color: var(--orange);
    font-family: 'Krona One', sans-serif;
    display: block;
    margin-bottom: 1.5rem;
}
.section-head h2 { margin-bottom: 1.5rem; }
.section-head p.lead { font-size: 1.7rem; color: var(--gray-60); line-height: 2.8rem; max-width: 70rem; }

/* Globalny .lead — działa w każdym kontekście (nie tylko w section-head / page-hero) */
p.lead, .lead {
    font-size: 1.8rem;
    line-height: 3rem;
    color: var(--gray-60);
    font-weight: 400;
}

/* ============================================
   CATEGORY INDEX — nawigacja + karty
   ============================================ */
.cat-quick-nav {
    background: #fff;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 50;
    padding: 1.2rem 0;
}
.cat-nav-grid {
    display: flex;
    flex-wrap: wrap;
    gap: .6rem;
    padding: .4rem 0;
}
.cat-nav-pill {
    display: inline-block;
    padding: .6rem 1.4rem;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gray-60);
    background: var(--bg-light);
    border: 1.5px solid var(--border);
    border-radius: 10rem;
    text-decoration: none;
    transition: color .2s, border-color .2s, background .2s;
    white-space: nowrap;
}
.cat-nav-pill:hover {
    color: var(--orange);
    border-color: var(--orange);
    background: #fff3ef;
}

/* Prawa kolumna w sekcji kategorii */
.cat-index-right { min-height: 16rem; }

.cat-sub-list { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: 1fr 1fr; gap: .7rem; }
.cat-sub-link {
    display: flex; align-items: center; gap: .8rem;
    padding: 1rem 1.4rem;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: .8rem;
    font-size: 1.35rem; font-weight: 500;
    color: var(--dark); text-decoration: none;
    transition: border-color .2s, color .2s;
}
.cat-sub-link:hover { border-color: var(--orange); color: var(--orange); }
.cat-sub-dot { width: .55rem; height: .55rem; background: var(--orange); border-radius: 50%; flex-shrink: 0; }

/* Karta wizualna (gdy brak obrazka i podkategorii) */
.cat-visual-card {
    background: linear-gradient(135deg, var(--dark) 0%, #2d2d2f 100%);
    border-radius: 1.6rem;
    padding: 4rem 3.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 2.5rem;
    height: 100%;
    min-height: 22rem;
    box-sizing: border-box;
}
.cat-visual-name { font-size: 2.2rem; font-weight: 800; color: #fff; line-height: 1.3; }
.cat-visual-stats { display: flex; gap: 3rem; flex-wrap: wrap; justify-content: center; }
.cvs-item { display: flex; flex-direction: column; gap: .3rem; align-items: center; }
.cvs-val { font-size: 2.6rem; font-weight: 900; color: var(--orange); line-height: 1; }
.cvs-lbl { font-size: 1.2rem; color: rgba(255,255,255,.5); }
.cat-visual-cta {
    display: inline-block;
    padding: 1.1rem 2.4rem;
    background: var(--orange);
    color: #fff;
    border-radius: var(--radius);
    font-size: 1.4rem;
    font-weight: 700;
    text-decoration: none;
    transition: opacity .2s;
}
.cat-visual-cta:hover { opacity: .88; }

/* Przyciski w kartach automatów — linia z PDF jako małe CTA */
.vm-actions {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    flex-wrap: wrap;
    margin-top: auto;
    padding-top: 2.5rem;
}
.vm-actions .button { flex: 1; text-align: center; min-width: 0; }
.vm-actions .vm-pdf-link {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--gray-60);
    text-decoration: none;
    white-space: nowrap;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    padding: .9rem 1.6rem;
    transition: var(--transition);
}
.vm-actions .vm-pdf-link:hover { color: var(--orange); border-color: var(--orange); }

/* ============================================
   VENDING PAGE SPECIFIC
   ============================================ */
.vending-models {
    display: grid;
    gap: 3rem;
}
@media (min-width: 768px) { .vending-models { grid-template-columns: 1fr 1fr; } }
@media (min-width: 992px) { .vending-models { grid-template-columns: 1fr 1fr 1fr; } }

.vending-model-card {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    background: #fff;
    transition: var(--transition);
}
.vending-model-card:hover { box-shadow: var(--shadow-orange); border-color: var(--orange); }
.vending-model-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.vending-model-card .body { padding: 3rem; }
.vending-model-card h3 { font-size: 2rem; font-family: 'Krona One', sans-serif; margin-bottom: 1.5rem; color: var(--orange); }
.vending-model-card p { font-size: 1.6rem; color: var(--gray-60); line-height: 2.7rem; margin: 0; }

/* .vending-model (article variant used in vending.php) */
.vending-model {
    position: relative;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    background: #fff;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}
.vending-model:hover { box-shadow: var(--shadow-orange); border-color: var(--orange); }
.vm-badge {
    position: absolute; top: 1.5rem; left: 1.5rem;
    background: var(--orange); color: #fff;
    font-size: 1.2rem; font-weight: 700;
    padding: .4rem 1.2rem; border-radius: 10rem;
    text-transform: uppercase; letter-spacing: .05em;
    z-index: 2;
}
.vm-img { width: 100%; aspect-ratio: 4/3; overflow: hidden; background: var(--bg-light); }
.vm-img picture { display: block; width: 100%; height: 100%; }
.vm-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.vm-img-placeholder {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem; color: var(--gray-60); font-style: italic;
}
.vm-body { padding: 3rem; flex: 1; display: flex; flex-direction: column; }
.vm-name { font-size: 2.2rem; font-family: 'Krona One', sans-serif; color: var(--orange); margin-bottom: .5rem; }
.vm-sub { font-size: 1.3rem; color: var(--gray-60); text-transform: uppercase; letter-spacing: .05em; margin-bottom: 1.5rem; font-weight: 600; }
.vm-body > p { font-size: 1.6rem; color: var(--gray-60); line-height: 2.7rem; margin-bottom: 2rem; }
.vm-specs { list-style: none; padding: 0; margin: 0; }
.vm-specs li {
    font-size: 1.6rem; color: var(--dark);
    padding: .6rem 0 .6rem 2.4rem;
    border-bottom: 1px solid var(--border);
    position: relative;
    margin-bottom: 0;
}
.vm-specs li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: .6rem;
    color: var(--orange);
    font-weight: 700;
    width: auto;
    height: auto;
    border-radius: 0;
    background: none;
    font-size: 1.4rem;
    line-height: 1.6;
}

.vending-steps {
    counter-reset: step;
    display: grid;
    gap: 3rem;
}
@media (min-width: 768px) { .vending-steps { grid-template-columns: 1fr 1fr; } }
@media (min-width: 992px) { .vending-steps { grid-template-columns: 1fr 1fr 1fr 1fr; } }

.vending-step {
    position: relative;
    padding-top: 6rem;
}
.vending-step::before {
    counter-increment: step;
    content: counter(step);
    position: absolute;
    top: 0;
    left: 0;
    width: 5rem;
    height: 5rem;
    background: var(--orange);
    border-radius: 50%;
    color: #fff;
    font-size: 2rem;
    font-family: 'Krona One', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
}
.vending-step h3 { font-size: 1.8rem; font-family: 'Inter', sans-serif; font-weight: 700; margin-bottom: 1rem; }
.vending-step p { font-size: 1.6rem; color: var(--gray-60); margin: 0; }

/* Aliases: process-steps / process-step / step-num */
.process-steps { counter-reset: step; display: grid; gap: 3rem; margin-top: 4rem; }
@media (min-width: 768px) { .process-steps { grid-template-columns: 1fr 1fr; } }
@media (min-width: 992px) { .process-steps { grid-template-columns: 1fr 1fr 1fr 1fr; } }
.process-step { position: relative; padding-top: 6rem; }
.process-step::before {
    counter-increment: step;
    content: counter(step);
    position: absolute; top: 0; left: 0;
    width: 5rem; height: 5rem;
    background: var(--orange); border-radius: 50%;
    color: #fff; font-size: 2rem; font-family: 'Krona One', sans-serif;
    display: flex; align-items: center; justify-content: center;
}
.step-num { display: none; } /* visually replaced by ::before counter */
.process-step h3 { font-size: 1.8rem; font-weight: 700; margin-bottom: 1rem; }
.process-step p { font-size: 1.6rem; color: var(--gray-60); margin: 0; line-height: 2.6rem; }

/* section-header alias */
.section-header { text-align: center; margin-bottom: 5rem; }
.section-header h2 { margin-bottom: 1.5rem; }
.section-header p { font-size: 1.7rem; color: var(--gray-60); max-width: 70rem; margin: 0 auto; }

/* vstat: allow both .num/.lbl span and <strong> */
.vstat strong { display: block; font-size: 3.2rem; font-family: 'Krona One', sans-serif; color: var(--orange); line-height: 1; margin-bottom: .5rem; }
.vstat span { display: block; font-size: 1.2rem; color: rgba(255,255,255,.7); text-transform: uppercase; letter-spacing: .05em; }

/* Kompaktowy pasek key-stats dla podstron automatów (nad tabelą danych) */
.vm-key-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    margin: 0 0 4rem;
    background: #fff;
}
.vm-key-stats .vks-item {
    padding: 2rem 1.5rem;
    text-align: center;
    border-right: 1.5px solid var(--border);
}
.vm-key-stats .vks-item:last-child { border-right: none; }
.vm-key-stats .vks-val {
    display: block;
    font-size: 2.4rem;
    font-weight: 900;
    color: var(--orange);
    font-family: 'Krona One', sans-serif;
    line-height: 1;
    margin-bottom: .4rem;
}
.vm-key-stats .vks-lbl {
    display: block;
    font-size: 1.2rem;
    color: var(--gray-60);
    text-transform: uppercase;
    letter-spacing: .06em;
    font-weight: 600;
}
@media (max-width: 640px) {
    .vm-key-stats { grid-template-columns: 1fr 1fr; }
    .vm-key-stats .vks-item:nth-child(2) { border-right: none; }
    .vm-key-stats .vks-item:nth-child(1),
    .vm-key-stats .vks-item:nth-child(2) { border-bottom: 1.5px solid var(--border); }
}

/* Vending stats bar */
.vending-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    background: var(--dark);
    border-radius: var(--radius);
    overflow: hidden;
    margin-top: 4rem;
}
.vstat {
    flex: 1 1 140px;
    padding: 2.5rem 3rem;
    text-align: center;
    border-right: 1px solid rgba(255,255,255,.1);
}
.vstat:last-child { border-right: none; }
.vstat .num {
    display: block;
    font-size: 3.2rem;
    font-family: 'Krona One', sans-serif;
    color: var(--orange);
    line-height: 1;
    margin-bottom: .5rem;
}
.vstat .lbl {
    display: block;
    font-size: 1.2rem;
    color: rgba(255,255,255,.7);
    text-transform: uppercase;
    letter-spacing: .05em;
}

/* Vending benefits grid */
.vending-benefits-grid {
    display: grid;
    gap: 3rem;
    grid-template-columns: 1fr;
}
@media (min-width: 600px) { .vending-benefits-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 992px) { .vending-benefits-grid { grid-template-columns: 1fr 1fr 1fr; } }

.vbenefit {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}
.vb-icon { display: none; }
.vbenefit h3, .vbenefit h4 { font-size: 1.6rem; font-weight: 700; margin-bottom: .5rem; }
.vbenefit p { font-size: 1.6rem; color: var(--gray-60); margin: 0; line-height: 2.6rem; }

/* Industry grid */
.industry-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr 1fr;
}
@media (min-width: 600px) { .industry-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 992px) { .industry-grid { grid-template-columns: repeat(6, 1fr); } }

.industry-item {
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2.5rem;
    text-align: center;
    transition: var(--transition);
}
.industry-item:hover { background: rgba(255,111,77,.08); border-color: var(--orange); }
.industry-item .icon { font-size: 3rem; margin-bottom: 1rem; display: block; }
.industry-item span { font-size: 1.4rem; color: var(--gray-60); display: block; }
.industry-item h3 { font-size: 1.7rem; font-weight: 700; margin-bottom: 1rem; }
.industry-item p { font-size: 1.5rem; color: var(--gray-60); margin: 0; line-height: 2.4rem; }

/* Dark bg variant */
.dark-bg .industry-item {
    background: rgba(255,255,255,.07);
    border-color: rgba(255,255,255,.1);
}
.dark-bg .industry-item h3 { color: #fff; }
.dark-bg .industry-item p, .dark-bg .industry-item span { color: rgba(255,255,255,.7); }

/* Two-column text layout */
.two-col-text {
    display: grid;
    gap: 4rem;
}
@media (min-width: 768px) { .two-col-text { grid-template-columns: 1fr 1fr; } }

/* Vending CTA box */
.vending-cta-box {
    background: var(--orange);
    color: #fff;
    padding: 6rem 4rem;
    border-radius: var(--radius);
    text-align: center;
}
.vending-cta-box h2 { color: #fff; font-size: 3.2rem; margin-bottom: 1.5rem; }
.vending-cta-box p { font-size: 1.7rem; opacity: .9; margin-bottom: 3rem; }
.vending-cta-box .btn-white {
    display: inline-block;
    background: #fff;
    color: var(--orange);
    padding: 1.6rem 4rem;
    border-radius: 10rem;
    font-weight: 700;
    text-decoration: none;
    font-size: 1.6rem;
    transition: var(--transition);
    margin: .5rem;
}
.vending-cta-box .btn-white:hover { background: var(--dark); color: #fff; }
.vending-cta-box .btn-outline-white {
    display: inline-block;
    border: 2px solid rgba(255,255,255,.6);
    color: #fff;
    padding: 1.4rem 4rem;
    border-radius: 10rem;
    font-weight: 600;
    text-decoration: none;
    font-size: 1.6rem;
    transition: var(--transition);
    margin: .5rem;
}
.vending-cta-box .btn-outline-white:hover { border-color: #fff; background: rgba(255,255,255,.1); }

/* ============================================
   SZWALNIA PAGE
   ============================================ */
/* Prevent 3-col grid when szwalnia-features is inside a two-col-text column */
.two-col-text .szwalnia-features { grid-template-columns: 1fr !important; }
@media (min-width: 1400px) { .two-col-text .szwalnia-features { grid-template-columns: 1fr 1fr !important; } }

.szwalnia-features {
    display: grid;
    gap: 3rem;
}
@media (min-width: 768px) { .szwalnia-features { grid-template-columns: 1fr 1fr; } }
@media (min-width: 992px) { .szwalnia-features { grid-template-columns: 1fr 1fr 1fr; } }

.szwalnia-feature {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 3rem;
    transition: var(--transition);
}
.szwalnia-feature:hover { box-shadow: var(--shadow-orange); border-color: var(--orange); }
.szwalnia-feature .feat-icon { display: none; }
.szwalnia-feature h3 { font-size: 1.8rem; font-weight: 700; margin-bottom: 1rem; }
.szwalnia-feature p { font-size: 1.6rem; color: var(--gray-60); margin: 0; line-height: 2.6rem; }

.reloslash-hero {
    background: linear-gradient(135deg, var(--dark) 0%, #2a2a2b 100%);
    padding: 8rem 0;
    color: #fff;
}
.reloslash-hero h2 { color: #fff; }
.reloslash-badge {
    display: inline-block;
    background: var(--orange);
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    padding: .5rem 1.5rem;
    border-radius: 10rem;
    margin-bottom: 2rem;
}

/* ============================================
   SERVICES INDEX PAGE
   ============================================ */
.services-grid {
    display: grid;
    gap: 3rem;
}
@media (min-width: 768px) { .services-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 992px) { .services-grid { grid-template-columns: 1fr 1fr 1fr; } }

.service-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    text-decoration: none;
    color: var(--dark);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}
.service-card:hover { box-shadow: var(--shadow-orange); border-color: var(--orange); transform: translateY(-4px); }
.service-card .sc-icon {
    height: 18rem;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
}
.service-card .sc-icon:empty { display: none; }
.service-card .sc-body { padding: 3rem; flex: 1; display: flex; flex-direction: column; }
.service-card h3 { font-size: 2rem; font-weight: 700; margin-bottom: 1rem; font-family: 'Inter', sans-serif; }
.service-card p { font-size: 1.6rem; color: var(--gray-60); line-height: 2.6rem; margin: 0 0 2rem; flex: 1; }
.service-card .sc-link {
    color: var(--orange);
    font-size: 1.4rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: .5rem;
}

/* ============================================
   EVENTS
   ============================================ */
.events-grid { display: grid; gap: 3rem; }
@media (min-width: 768px) { .events-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 992px) { .events-grid { grid-template-columns: 1fr 1fr 1fr; } }

.event-card {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 3rem;
    background: #fff;
    text-decoration: none;
    color: var(--dark);
    transition: var(--transition);
    display: block;
}
.event-card:hover { box-shadow: var(--shadow-orange); border-color: var(--orange); transform: translateY(-3px); }
.event-card .event-date {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.3rem;
    color: var(--orange);
    font-family: 'Krona One', sans-serif;
    margin-bottom: 1.5rem;
}
.event-card h3 { font-size: 1.8rem; font-family: 'Inter', sans-serif; font-weight: 700; margin-bottom: 1rem; }
.event-card p { font-size: 1.6rem; color: var(--gray-60); margin: 0; line-height: 2.5rem; }
.event-card .status-badge {
    display: inline-block;
    padding: .4rem 1.5rem;
    border-radius: 10rem;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}
.event-card .status-upcoming { background: rgba(255,111,77,.1); color: var(--orange); }
.event-card .status-past { background: var(--bg-light); color: var(--gray-60); }

/* ============================================
   PAGINATION
   ============================================ */
.pagination {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: .8rem;
    margin-top: 6rem;
}
.pagination a,
.pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 4rem;
    height: 4rem;
    padding: 0 1.2rem;
    border-radius: 8px;
    font-size: 1.5rem;
    font-weight: 500;
    border: 1.5px solid var(--border);
    text-decoration: none;
    color: var(--dark);
    white-space: nowrap;
    transition: var(--transition);
}
.pagination a:hover { border-color: var(--orange); color: var(--orange); }
.pagination .current { background: var(--orange); border-color: var(--orange); color: #fff; }

/* ============================================
   FLASH MESSAGES (frontend)
   ============================================ */
.alert { padding: 1.5rem 2.5rem; border-radius: 8px; font-size: 1.5rem; margin-bottom: 2rem; }
.alert-success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.alert-error { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }

/* ============================================
   ANIMATE ON SCROLL
   ============================================ */
.animate-block {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .6s ease, transform .6s ease;
}
.animate-block.animated {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   HERO SLIDER TRANSITIONS
   ============================================ */
.block-type-1 .slider-wrap {
    position: relative;
    overflow: hidden;
}
.block-type-1 .slide {
    display: none;
    animation: none;
}
.block-type-1 .slide.active {
    display: block;
    animation: fadeSlide .7s ease;
}
@keyframes fadeSlide {
    from { opacity: 0; transform: scale(1.03); }
    to   { opacity: 1; transform: scale(1); }
}

/* ============================================
   MOBILE MENU OVERLAY — JS toggle
   ============================================ */
#menu-overlay.open {
    display: block !important;
}
body.menu-open {
    overflow: hidden;
}

/* ============================================
   PAGE HERO (subpages)
   ============================================ */
.page-hero {
    padding: 18rem 0 8rem;
    background: var(--dark);
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(255,111,77,.12) 0%, transparent 70%);
    pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero__sub {
    font-size: 1.8rem;
    line-height: 1.7;
    color: rgba(255,255,255,.65);
    max-width: 70rem;
    margin-top: 2rem;
}
@media (min-width: 768px) { .page-hero { padding: 20rem 0 10rem; } }
@media (min-width: 992px) { .page-hero { padding: 22rem 0 12rem; } }

.page-hero h1 { color: #fff; font-size: 4.8rem; margin-bottom: 2rem; }
@media (min-width: 992px) { .page-hero h1 { font-size: 5.6rem; } }
.page-hero .lead { color: rgba(255,255,255,.75); font-size: 1.8rem; line-height: 2.8rem; max-width: 72rem; margin-bottom: 0; }
.page-hero__inner { }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 1.5rem; margin-top: 3.5rem; }

/* Light text variant (default since bg is dark) */
.page-hero--dark { background: var(--dark); }

/* btn-outline — orange border on light backgrounds */
.btn-outline, .button--outline {
    border-color: var(--orange);
    color: var(--orange);
    background: transparent;
}
.btn-outline:hover, .button--outline:hover { background: var(--orange); color: #fff; border-color: var(--orange); }

/* btn-outline-light — for dark backgrounds (alias for btn-outline-white) */
.btn-outline-light {
    border-color: rgba(255,255,255,.5);
    color: #fff;
    background: transparent;
}
.btn-outline-light:hover { border-color: #fff; background: rgba(255,255,255,.1); color: #fff; }

/* Eyebrow label */
.eyebrow {
    display: block;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 1.5rem;
}

/* Breadcrumbs — dark hero contexts (white text) */
.page-hero .breadcrumbs li,
.dark-bg .breadcrumbs li,
.service-hero .breadcrumbs li,
.post-hero .breadcrumbs li { color: rgba(255,255,255,.4); }
.page-hero .breadcrumbs li + li::before,
.dark-bg .breadcrumbs li + li::before,
.service-hero .breadcrumbs li + li::before,
.post-hero .breadcrumbs li + li::before { content: '/'; opacity: .4; }
.page-hero .breadcrumbs a,
.dark-bg .breadcrumbs a,
.service-hero .breadcrumbs a,
.post-hero .breadcrumbs a { color: rgba(255,255,255,.6); }
.page-hero .breadcrumbs a:hover,
.dark-bg .breadcrumbs a:hover,
.service-hero .breadcrumbs a:hover,
.post-hero .breadcrumbs a:hover { color: var(--orange); }
.page-hero .breadcrumbs [aria-current="page"],
.dark-bg .breadcrumbs [aria-current="page"],
.service-hero .breadcrumbs [aria-current="page"],
.post-hero .breadcrumbs [aria-current="page"] { color: rgba(255,255,255,.85); }

/* ============================================
   CONTENT + SIDEBAR LAYOUT
   ============================================ */
.content-with-sidebar {
    display: grid;
    grid-template-columns: 1fr;
    gap: 5rem;
}
@media (min-width: 992px) {
    .content-with-sidebar { grid-template-columns: 1fr 32rem; }
    .content-sidebar {
        align-self: start;
        position: sticky;
        top: 10rem; /* zostawia miejsce na sticky header */
    }
}

/* Sidebar */
.sidebar-box {
    background: var(--bg-light);
    border-radius: 1.2rem;
    padding: 3rem;
    margin-bottom: 3rem;
}
.sidebar-title {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1.8rem;
    color: var(--dark);
}
.sidebar-links { list-style: none; padding: 0; margin: 0; }
.sidebar-links li { border-bottom: 1px solid var(--border); }
.sidebar-links li:last-child { border-bottom: none; }
.sidebar-links a {
    display: block;
    padding: 1rem 0;
    font-size: 1.6rem;
    color: var(--dark);
    text-decoration: none;
    transition: color .2s;
}
.sidebar-links a:hover,
.sidebar-links li.active a { color: var(--orange); }
.sidebar-links .more-link { color: var(--orange); font-weight: 600; }
.sidebar-cta { background: var(--dark); color: #fff; }
.sidebar-cta .sidebar-title { color: #fff; }
.sidebar-cta p { color: rgba(255,255,255,.7); font-size: 1.6rem; line-height: 1.75; }

/* Brand pills (sidebar) */
.brand-pills { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: .4rem; }
.brand-pill {
    display: inline-block;
    padding: .5rem 1.2rem;
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--dark);
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 10rem;
    text-decoration: none;
    transition: border-color .2s, color .2s, background .2s;
    white-space: nowrap;
}
.brand-pill:hover { border-color: var(--orange); color: var(--orange); background: #fff8f5; }

/* Sidebar categories mini-grid */
.sidebar-cats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .7rem;
    margin-top: .4rem;
}
.sidebar-cat-link {
    display: block;
    padding: .7rem 1rem;
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--dark);
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: .8rem;
    text-decoration: none;
    text-align: center;
    line-height: 1.35;
    transition: border-color .2s, color .2s, background .2s;
}
.sidebar-cat-link:hover { border-color: var(--orange); color: var(--orange); background: #fff8f5; }
.sidebar-cat-link--active { background: var(--orange); color: #fff !important; border-color: var(--orange); font-weight: 700; pointer-events: none; }

/* Category chips grid (full-width section below sidebar layout) */
.cat-chips-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 4rem;
}
.cat-chip {
    display: inline-block;
    padding: .9rem 2rem;
    font-size: 1.45rem;
    font-weight: 500;
    color: var(--dark);
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 10rem;
    text-decoration: none;
    transition: border-color .2s, color .2s, background .2s, box-shadow .2s;
}
.cat-chip:hover { border-color: var(--orange); color: var(--orange); background: #fff8f5; box-shadow: 0 2px 8px rgba(230,80,0,.08); }
.cat-chip--active { background: var(--orange); color: #fff; border-color: var(--orange); font-weight: 700; pointer-events: none; }

/* ============================================
   ARTICLE CARDS (blog grid)
   ============================================ */
.articles-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}
@media (min-width: 640px) {
    .articles-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 992px) {
    .articles-grid { grid-template-columns: repeat(3, 1fr); }
}
.article-card {
    background: #fff;
    border-radius: 1.2rem;
    overflow: hidden;
    box-shadow: 0 2px 20px rgba(0,0,0,.06);
    transition: transform .3s, box-shadow .3s;
    display: flex;
    flex-direction: column;
}
.article-card:hover { transform: translateY(-4px); box-shadow: 0 8px 40px rgba(0,0,0,.1); }
.article-card__img-wrap { display: block; overflow: hidden; height: 22rem; }
.article-card__img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.article-card:hover .article-card__img-wrap img { transform: scale(1.04); }
.article-card__body { padding: 2.5rem; flex: 1; display: flex; flex-direction: column; }
.article-card__cat {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 1rem;
    display: block;
}
.article-card__title {
    font-size: 1.7rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 1rem;
    flex: 1;
}
.article-card__title a { color: var(--dark); text-decoration: none; }
.article-card__title a:hover { color: var(--orange); }
.article-card__excerpt { font-size: 1.6rem; color: var(--gray-50); line-height: 1.7; margin-bottom: 1.5rem; }
.article-card__meta {
    display: flex;
    gap: 1.5rem;
    font-size: 1.2rem;
    color: var(--gray-50);
    margin-top: auto;
}
.article-card__date { font-size: 1.2rem; color: var(--gray-50); display: block; margin-top: .5rem; }

/* Blog cards without thumbnails */
.article-card--text {
    border-top: 3px solid var(--orange);
    padding: 0;
    background: #fff;
    border-radius: 0 0 1.2rem 1.2rem;
}
.article-card--text .article-card__body {
    padding: 2.8rem 3rem;
}
.article-card--text:hover { transform: translateY(-4px); box-shadow: 0 8px 40px rgba(0,0,0,.1); }
.article-card__more {
    display: inline-block;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--orange);
    margin-top: 1.5rem;
}
.articles-grid--no-img .article-card__title { font-size: 1.8rem; }
.articles-grid--no-img .article-card__excerpt { font-size: 1.5rem; }

/* Filter tabs */
.filter-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}
.filter-tab {
    display: inline-block;
    padding: .8rem 2rem;
    border-radius: 100px;
    border: 1.5px solid var(--border);
    font-size: 1.4rem;
    color: var(--dark);
    text-decoration: none;
    transition: var(--transition);
    background: #fff;
}
.filter-tab:hover { border-color: var(--orange); color: var(--orange); }
.filter-tab.active { background: var(--orange); border-color: var(--orange); color: #fff; }

/* ============================================
   POST LAYOUT
   ============================================ */
.post-hero { padding: 18rem 0 8rem; background: var(--dark); position: relative; }
@media (min-width: 992px) { .post-hero { padding: 22rem 0 10rem; } }
.post-cat-badge {
    display: inline-block;
    padding: .5rem 1.5rem;
    background: var(--orange);
    color: #fff;
    border-radius: 100px;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 2rem;
}
.post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 1.4rem;
    color: rgba(255,255,255,.5);
    margin-top: 1.5rem;
}
.post-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 5rem;
}
@media (min-width: 992px) {
    .post-layout { grid-template-columns: 1fr 32rem; }
}
.post-content { min-width: 0; }
.post-featured-img { margin: 0 0 4rem; border-radius: 1.2rem; overflow: hidden; }
.post-featured-img img { width: 100%; height: auto; display: block; }
.post-share {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid var(--border);
    font-size: 1.4rem;
    color: var(--gray-50);
}
.share-btn {
    display: inline-block;
    padding: .7rem 1.8rem;
    border-radius: 6px;
    font-size: 1.3rem;
    font-weight: 600;
    text-decoration: none;
    color: #fff;
}
.share-btn--fb { background: #1877f2; }
.share-btn--li { background: #0a66c2; }

/* ============================================
   EVENT CARDS
   ============================================ */
.events-list { display: flex; flex-direction: column; gap: 3rem; }
.event-card {
    background: #fff;
    border-radius: 1.2rem;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(0,0,0,.06);
    display: flex;
    flex-direction: column;
}
@media (min-width: 768px) {
    .event-card { flex-direction: row; }
    .event-card__img { width: 32rem; flex-shrink: 0; }
}
.event-card__img { overflow: hidden; height: 22rem; }
.event-card__img img { width: 100%; height: 100%; object-fit: cover; }
.event-card__body { display: flex; padding: 3rem; gap: 2.5rem; align-items: flex-start; flex: 1; }
.event-card__date-box {
    flex-shrink: 0;
    background: var(--orange);
    color: #fff;
    border-radius: 1rem;
    padding: 1.5rem 2rem;
    text-align: center;
    min-width: 7rem;
}
.event-card__date-box .day { display: block; font-size: 3rem; font-weight: 700; line-height: 1; }
.event-card__date-box .month { display: block; font-size: 1.2rem; text-transform: uppercase; font-weight: 600; letter-spacing: .05em; }
.event-card__title { font-size: 2rem; font-weight: 700; margin-bottom: 1rem; }
.event-card__title a { color: var(--dark); text-decoration: none; }
.event-card__title a:hover { color: var(--orange); }
.event-card__location { font-size: 1.4rem; color: var(--orange); margin-bottom: 1rem; }
.event-card__excerpt { font-size: 1.5rem; color: var(--gray-50); line-height: 1.6; margin-bottom: 1.5rem; }

.event-details-box {
    background: var(--bg-light);
    border-radius: 1rem;
    padding: 2.5rem;
    margin-bottom: 3rem;
}
.detail-row {
    display: flex;
    gap: 1.5rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
    font-size: 1.5rem;
}
.detail-row:last-child { border-bottom: none; }
.detail-row strong { flex-shrink: 0; min-width: 14rem; color: var(--dark); font-weight: 600; }

/* ============================================
   SERVICE HERO (full-bleed image)
   ============================================ */
.service-hero {
    position: relative;
    padding: 22rem 0 12rem;
    background-size: cover;
    background-position: center;
    min-height: 70vh;
}
.service-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(33,33,34,.85) 0%, rgba(33,33,34,.4) 100%);
}
.service-hero .container { position: relative; z-index: 1; }

/* ============================================
   CATEGORY INDEX — sekcje
   ============================================ */
/* Układ dwukolumnowy sekcji kategorii — responsywność */
@media (max-width: 768px) {
    #kategorie ul { flex-wrap: wrap; }
    #kategorie li a { padding: 1rem 1.2rem; font-size: 1.2rem; }
}
@media (max-width: 991px) {
    /* Sekcja kategorii: jeden pod drugim na mobile */
    section[id^="kat-"] .animate-block > div[style*="grid-template-columns:1fr 1fr"] {
        grid-template-columns: 1fr !important;
    }
    section[id^="kat-"] .animate-block > div[style*="grid-template-columns:1fr auto"] {
        grid-template-columns: 1fr !important;
    }
    section[id^="kat-"] .animate-block ul[style*="grid-template-columns:1fr 1fr"] {
        grid-template-columns: 1fr !important;
    }
    section[id^="kat-"] .animate-block > div[style*="display:flex"][style*="gap:3rem"] {
        gap: 2rem;
    }
}

/* ============================================
   CATEGORIES GRID (produkty-bhp-mro)
   ============================================ */
.categories-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}
@media (min-width: 640px) {
    .categories-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 992px) {
    .categories-grid { grid-template-columns: repeat(3, 1fr); }
}
.category-card {
    background: #fff;
    border-radius: 1.2rem;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(0,0,0,.06);
    transition: transform .3s, box-shadow .3s;
}
.category-card:hover { transform: translateY(-4px); box-shadow: 0 8px 40px rgba(0,0,0,.1); }
.category-card__img-wrap { display: block; height: 22rem; overflow: hidden; }
.category-card__img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.category-card:hover .category-card__img-wrap img { transform: scale(1.05); }
.category-card__body { padding: 2.5rem 3rem; }
.category-card__title { font-size: 2rem; font-weight: 700; margin-bottom: 1rem; }
.category-card__title a { color: var(--dark); text-decoration: none; }
.category-card__title a:hover { color: var(--orange); }
.category-card__desc { font-size: 1.4rem; color: var(--gray-50); line-height: 1.6; margin-bottom: 1.5rem; }
.category-card__subs {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: .6rem;
}
.category-card__subs li a {
    display: inline-block;
    padding: .4rem 1.2rem;
    background: var(--bg-light);
    border-radius: 100px;
    font-size: 1.2rem;
    color: var(--dark);
    text-decoration: none;
    transition: var(--transition);
}
.category-card__subs li a:hover { background: var(--orange); color: #fff; }

/* Subcategories inside category-single */
.subcategories-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}
@media (min-width: 640px) {
    .subcategories-grid { grid-template-columns: repeat(3, 1fr); }
}
.subcat-card {
    background: var(--bg-light);
    border-radius: 1rem;
    padding: 2rem;
    text-decoration: none;
    color: var(--dark);
    font-weight: 600;
    font-size: 1.5rem;
    text-align: center;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}
.subcat-card:hover { background: var(--orange); color: #fff; }
.subcat-card img { width: 5rem; height: 5rem; object-fit: contain; }

/* ============================================
   BRANDS GRID (marki/)
   ============================================ */
.brands-grid--featured {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}
@media (min-width: 768px) {
    .brands-grid--featured { grid-template-columns: repeat(3, 1fr); }
}
.brand-card--featured {
    background: #fff;
    border-radius: 1.2rem;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 2px 16px rgba(0,0,0,.06);
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}
.brand-card--featured:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(0,0,0,.1); }
.brand-card--featured img { max-height: 7rem; max-width: 100%; object-fit: contain; }
.brand-card__name { font-size: 2rem; font-weight: 700; color: var(--dark); }
.brand-card__desc { font-size: 1.4rem; color: var(--gray-50); line-height: 1.6; }

.brand-hero-inner { display: grid; grid-template-columns: 1fr; gap: 4rem; }
@media (min-width: 768px) { .brand-hero-inner { grid-template-columns: 1fr auto; align-items: center; } }
.brand-hero-logo { background: rgba(255,255,255,.1); border-radius: 1.2rem; padding: 3rem; max-width: 22rem; }
.brand-hero-logo img { max-width: 100%; max-height: 10rem; object-fit: contain; }
.brand-meta { font-size: 1.5rem; color: var(--gray-50); margin-bottom: 2rem; }

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-form { display: flex; flex-direction: column; gap: 2rem; }
.form-row--2col { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
@media (max-width: 640px) { .form-row--2col { grid-template-columns: 1fr; } }
.form-group { display: flex; flex-direction: column; gap: .8rem; }
.form-group label { font-size: 1.4rem; font-weight: 600; color: var(--dark); }
.form-group .req { color: var(--orange); }
.form-group input,
.form-group textarea,
.form-group select {
    padding: 1.3rem 1.8rem;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    font-size: 1.5rem;
    font-family: inherit;
    color: var(--dark);
    background: #fff;
    transition: border-color .2s;
    width: 100%;
    outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--orange); }
.form-group textarea { min-height: 14rem; resize: vertical; }
.form-group--checkbox { flex-direction: row; align-items: flex-start; gap: 1.2rem; }
.form-group--checkbox input { width: auto; flex-shrink: 0; margin-top: .3rem; accent-color: var(--orange); }
.form-group--checkbox label { font-size: 1.3rem; font-weight: 400; line-height: 1.6; }
.form-message {
    padding: 1.2rem 2rem;
    border-radius: 8px;
    font-size: 1.4rem;
    display: none;
}
.form-message:not(:empty) { display: block; }
.form-message--ok { background: #d4edda; color: #155724; }
.form-message--err { background: #f8d7da; color: #721c24; }

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-intro { display: grid; grid-template-columns: 1fr; gap: 5rem; margin-bottom: 5rem; }
@media (min-width: 768px) { .about-intro { grid-template-columns: 1fr 1fr; align-items: center; } }
.about-intro__img img { width: 100%; border-radius: 1.2rem; display: block; }
.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    background: var(--dark);
    border-radius: 1.6rem;
    padding: 4rem;
}
@media (min-width: 768px) {
    .about-stats { grid-template-columns: repeat(4, 1fr); }
}
.stat-item { text-align: center; }
.stat-number { display: block; font-size: 4rem; font-weight: 700; color: var(--orange); font-family: 'Krona One', serif; }
.stat-label { display: block; font-size: 1.5rem; color: rgba(255,255,255,.6); margin-top: .5rem; }
.values-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 3rem; }
@media (min-width: 768px) { .values-grid { grid-template-columns: repeat(4, 1fr); } }
.value-item { padding: 2.5rem; background: var(--bg-light); border-radius: 1rem; }
.value-item h3 { font-size: 1.8rem; font-weight: 700; margin-bottom: 1rem; color: var(--dark); }
.value-item p { font-size: 1.6rem; color: var(--gray-50); line-height: 1.6; }

/* ============================================
   CAREER PAGE
   ============================================ */
.job-card { background: var(--bg-light); border-radius: 1.2rem; padding: 3rem; }
.job-card h3 { font-size: 2rem; font-weight: 700; margin-bottom: 1.5rem; }

/* Empty state */
.empty-state {
    text-align: center;
    padding: 8rem 2rem;
}
.empty-state h2 { font-size: 2.8rem; margin-bottom: 2rem; }
.empty-state p { font-size: 1.6rem; color: var(--gray-50); margin-bottom: 3rem; }

/* ============================================
   ABOUT SECTION — RICH O NAS PAGE
   ============================================ */

/* Intro two-col */
.about-intro__inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 6rem;
    align-items: center;
}
@media (min-width: 992px) {
    .about-intro__inner { grid-template-columns: 1fr 1fr; }
}
.about-intro__text h2 { font-size: 3.8rem; margin-bottom: 2rem; }
.about-intro__img-wrap {
    border-radius: 2rem;
    overflow: hidden;
    background: var(--dark);
    min-height: 38rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.about-intro__img-placeholder {
    text-align: center;
    padding: 4rem;
}
.about-badges {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 3rem;
}
.about-badge {
    display: inline-block;
    background: var(--bg-light);
    border-radius: 4rem;
    padding: .8rem 1.8rem;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark);
}

/* Stats band */
.about-stats-section {
    background: var(--dark);
    padding: 5rem 0;
}
.about-stat-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}
@media (min-width: 640px) { .about-stat-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 992px) { .about-stat-grid { grid-template-columns: repeat(6, 1fr); } }
.astat { text-align: center; }
.astat strong {
    display: block;
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--orange);
    font-family: 'Krona One', serif;
    line-height: 1.1;
}
.astat span {
    display: block;
    font-size: 1.3rem;
    color: rgba(255,255,255,.55);
    margin-top: .5rem;
}

/* Philosophy dark section */
.about-philosophy {
    background: var(--dark);
}
.about-pillars {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-top: 5rem;
}
@media (min-width: 640px) { .about-pillars { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 992px) { .about-pillars { grid-template-columns: repeat(4, 1fr); } }
.about-pillar {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 1.6rem;
    padding: 3rem;
}
.about-pillar .ap-icon { display: none; }
.about-pillar h3 { font-size: 1.9rem; font-weight: 700; color: #fff; margin-bottom: 1rem; }
.about-pillar p { font-size: 1.6rem; color: rgba(255,255,255,.65); line-height: 1.7; }

/* Timeline */
.timeline {
    position: relative;
    max-width: 90rem;
    margin: 5rem auto 0;
    padding-left: 0;
}
.timeline::before {
    content: '';
    position: absolute;
    left: 11rem;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--orange), transparent);
}
.tl-item {
    display: flex;
    gap: 4rem;
    margin-bottom: 4rem;
    position: relative;
}
.tl-item::before {
    content: '';
    position: absolute;
    left: 10.3rem;
    top: .8rem;
    width: 1.6rem;
    height: 1.6rem;
    background: var(--orange);
    border-radius: 50%;
    border: 3px solid #fff;
    box-shadow: 0 0 0 3px var(--orange);
    z-index: 1;
}
.tl-item--current::before {
    background: #fff;
    border-color: var(--orange);
    box-shadow: 0 0 0 3px var(--orange), 0 0 20px rgba(255,111,77,.5);
}
.tl-year {
    flex-shrink: 0;
    width: 10rem;
    text-align: right;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--orange);
    font-family: 'Krona One', serif;
    padding-top: .4rem;
}
.tl-content {
    flex: 1;
    background: var(--bg-light);
    border-radius: 1.2rem;
    padding: 2.5rem 3rem;
    margin-left: 2rem;
}
.tl-content h3 { font-size: 1.8rem; font-weight: 700; margin-bottom: .8rem; color: var(--dark); }
.tl-content p { font-size: 1.6rem; color: var(--gray-50); line-height: 1.7; }
.tl-item--current .tl-content {
    border: 2px solid var(--orange);
    background: #fff8f5;
}
@media (max-width: 640px) {
    .timeline::before { left: 7rem; }
    .tl-item::before { left: 6.3rem; }
    .tl-year { width: 6rem; font-size: 1.3rem; }
    .tl-content { margin-left: 1rem; }
}

/* Team grid */
/* Team — vertical roster layout */
.team-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 5rem;
}
.team-card {
    background: #fff;
    border-radius: 1.6rem;
    padding: 3rem;
    display: flex;
    gap: 3rem;
    align-items: flex-start;
    box-shadow: 0 2px 16px rgba(0,0,0,.06);
    transition: box-shadow .3s;
    border-left: 4px solid transparent;
}
.team-card:hover { box-shadow: 0 6px 32px rgba(0,0,0,.1); border-left-color: var(--orange); }
.team-card__avatar-col { flex-shrink: 0; }
.team-card__body { flex: 1; min-width: 0; }
.team-avatar {
    width: 8rem;
    height: 8rem;
    background: var(--dark);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    font-weight: 700;
    font-family: 'Krona One', serif;
    flex-shrink: 0;
}
.team-avatar--founder { background: var(--orange); }
.team-avatar--manager { background: #2c5f8a; }
.team-card h3 { font-size: 2rem; font-weight: 700; color: var(--dark); margin-bottom: .4rem; }
.team-card h3 small { font-size: 1.2rem; font-weight: 500; color: var(--gray-50); }
.team-role {
    display: inline-block;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--orange);
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: 1rem;
}
.team-dept {
    display: inline-block;
    font-size: 1.2rem;
    color: var(--gray-50);
    margin-left: 1.2rem;
}
.team-card p { font-size: 1.6rem; color: var(--gray-50); line-height: 1.7; margin-bottom: 0; }
@media (max-width: 640px) {
    .team-card { flex-direction: column; gap: 2rem; }
    .team-avatar { width: 6rem; height: 6rem; font-size: 1.8rem; }
}

/* ESG Section */
.about-esg { background: #f0f7f4; }
.esg-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 6rem;
    align-items: center;
    margin-bottom: 6rem;
}
@media (min-width: 992px) { .esg-inner { grid-template-columns: 1fr auto; } }
.esg-text h2 { font-size: 3.2rem; margin-bottom: 2rem; }
.ecovadis-badge {
    background: var(--dark);
    border-radius: 2rem;
    padding: 4rem 3rem;
    text-align: center;
    min-width: 22rem;
    color: #fff;
    flex-shrink: 0;
}
.ecovadis-badge__medal { width: 7rem; height: 7rem; border-radius: 50%; background: linear-gradient(135deg, #d0d0d0 0%, #a8a8a8 50%, #c8c8c8 100%); border: 3px solid rgba(255,255,255,.2); margin: 0 auto 1.5rem; display: flex; align-items: center; justify-content: center; font-size: 2rem; font-weight: 700; color: #fff; font-family: 'Krona One', serif; }
.ecovadis-badge__medal::after { content: 'S'; }
.ecovadis-badge__title { font-size: 1.2rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.5); }
.ecovadis-badge__level { font-size: 2.4rem; font-weight: 700; font-family: 'Krona One', serif; color: #C0C0C0; margin: .5rem 0; }
.ecovadis-badge__years { font-size: 1.2rem; color: rgba(255,255,255,.4); margin-bottom: 1.5rem; }
.ecovadis-badge__note {
    background: var(--orange);
    border-radius: 4rem;
    padding: .6rem 1.5rem;
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
}
.esg-pillars {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}
@media (min-width: 640px) { .esg-pillars { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 992px) { .esg-pillars { grid-template-columns: repeat(4, 1fr); } }
.esg-pillar {
    background: #fff;
    border-radius: 1.2rem;
    padding: 2.5rem;
    border-top: 4px solid var(--orange);
}
.esg-pillar__icon { display: none; }
.esg-pillar h3 { font-size: 1.7rem; font-weight: 700; margin-bottom: .8rem; }
.esg-pillar p { font-size: 1.35rem; color: var(--gray-50); line-height: 1.65; }

/* CSR Section */
.csr-actions { display: flex; flex-direction: column; gap: 5rem; margin-top: 4rem; }
.csr-action {
    display: block;
}
.csr-action__icon { display: none; }
.csr-action__body h3 { font-size: 2rem; font-weight: 700; margin-bottom: 1rem; }
.csr-action__body p { font-size: 1.5rem; color: var(--gray-50); line-height: 1.7; margin-bottom: 1.5rem; }
.csr-photos {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}
.csr-photo {
    width: 18rem;
    height: 13rem;
    border-radius: 1rem;
    overflow: hidden;
    background: var(--bg-light);
}
.csr-photo img { width: 100%; height: 100%; object-fit: cover; }

/* Events presence */
.events-presence {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-top: 5rem;
}
@media (min-width: 640px) { .events-presence { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 992px) { .events-presence { grid-template-columns: repeat(3, 1fr); } }
.event-presence-card {
    background: #fff;
    border-radius: 1.4rem;
    padding: 2.5rem;
    box-shadow: 0 2px 12px rgba(0,0,0,.06);
    position: relative;
}
.event-presence-card--upcoming { border: 2px solid var(--orange); }
.event-presence-card--award { background: #fffdf5; border: 2px solid #f0c040; }
.epc-date { font-size: 1.2rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--orange); margin-bottom: .8rem; }
.event-presence-card h3 { font-size: 1.8rem; font-weight: 700; margin-bottom: .8rem; color: var(--dark); }
.event-presence-card p { font-size: 1.6rem; color: var(--gray-50); line-height: 1.6; }
.epc-badge {
    display: inline-block;
    background: var(--orange);
    color: #fff;
    border-radius: 4rem;
    padding: .4rem 1.2rem;
    font-size: 1.1rem;
    font-weight: 700;
    margin-top: 1.5rem;
}
.epc-badge--gold { background: #f0c040; color: var(--dark); }

/* Values grid (about page variant) */
.about-values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-top: 5rem;
}
@media (min-width: 640px) { .about-values-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 992px) { .about-values-grid { grid-template-columns: repeat(3, 1fr); } }
.about-value-card {
    background: #fff;
    border-radius: 1.4rem;
    padding: 3rem;
    box-shadow: 0 2px 12px rgba(0,0,0,.06);
    transition: transform .3s;
}
.about-value-card:hover { transform: translateY(-3px); }
.avc-icon { display: none; }
.about-value-card h3 { font-size: 1.8rem; font-weight: 700; margin-bottom: 1rem; color: var(--dark); }
.about-value-card p { font-size: 1.6rem; color: var(--gray-50); line-height: 1.75; }

/* About CTA override */
.about-cta { margin-top: 0; }

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-intro-section { padding: 5rem 0 2rem; }
.contact-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    background: #fff;
    border-radius: 1.6rem;
    padding: 3rem;
    box-shadow: 0 2px 16px rgba(0,0,0,.06);
}
@media (min-width: 640px) { .contact-stats { grid-template-columns: repeat(4, 1fr); } }
.cstat { text-align: center; padding: 1.5rem 0; }
.cstat strong { display: block; font-size: 3.2rem; font-weight: 800; color: var(--orange); font-family: 'Krona One', serif; line-height: 1; }
.cstat span { display: block; font-size: 1.3rem; color: var(--gray-50); margin-top: .6rem; line-height: 1.4; }

.contact-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 6rem;
    max-width: 120rem;
    margin: 0 auto;
    padding: 4rem 2rem 6rem;
}
@media (min-width: 992px) {
    .contact-layout { grid-template-columns: 1.2fr 1fr; padding: 4rem 4rem 8rem; align-items: start; }
    .contact-form-col { position: sticky; top: 10rem; }
}

.contact-info-block {
    padding: 1.8rem 0;
    border-bottom: 1px solid var(--border);
    margin-bottom: 0;
}
.contact-info-block:last-of-type { border-bottom: none; }
.contact-info-block h3 { font-size: 1.3rem; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: var(--gray-50); margin-bottom: .6rem; }
.contact-info-block p { font-size: 1.5rem; color: var(--dark); line-height: 1.6; margin: 0; }
.contact-link { font-size: 1.8rem; font-weight: 700; color: var(--orange); text-decoration: none; display: inline-block; }
.contact-link:hover { text-decoration: underline; }

.contact-social-btn {
    display: inline-flex;
    align-items: center;
    gap: .8rem;
    padding: 1rem 2rem;
    border-radius: 4rem;
    font-size: 1.4rem;
    font-weight: 600;
    text-decoration: none;
    transition: opacity .2s;
}
.contact-social-btn:hover { opacity: .85; }
.contact-social-btn--fb { background: #1877F2; color: #fff; }
.contact-social-btn--li { background: #0A66C2; color: #fff; }

.contact-persons { margin-top: 3rem; }
.contact-person {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.8rem 0;
    border-bottom: 1px solid var(--border);
}
.contact-person:last-child { border-bottom: none; }
.cp-avatar {
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    background: var(--orange);
    color: #fff;
    font-weight: 700;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    object-fit: cover; /* gdy element to <img> */
}
.cp-avatar--blue { background: #2563EB; }
.contact-person strong { display: block; font-size: 1.6rem; font-weight: 700; color: var(--dark); }
.contact-person span { display: block; font-size: 1.3rem; color: var(--orange); margin: .2rem 0 .6rem; font-weight: 600; }
.contact-person p { font-size: 1.35rem; color: var(--gray-50); line-height: 1.5; margin: 0; }

/* ============================================
   BRAND SINGLE PAGE
   ============================================ */
.brand-hero-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}
@media (min-width: 768px) { .brand-hero-inner { grid-template-columns: auto 1fr; } }
.brand-logo-card {
    background: #fff;
    border-radius: 1.6rem;
    padding: 3rem 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 20rem;
    min-height: 12rem;
}
.brand-logo-card img { max-height: 8rem; max-width: 18rem; object-fit: contain; }
.brand-logo-placeholder { font-size: 3rem; font-weight: 800; color: var(--dark); }

.brand-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    background: var(--bg-light);
    border-radius: 1.6rem;
    padding: 3rem;
    margin: 5rem 0;
}
@media (min-width: 640px) { .brand-stats { grid-template-columns: repeat(4, 1fr); } }
.bstat { text-align: center; }
.bstat strong { display: block; font-size: 2.8rem; font-weight: 800; color: var(--orange); font-family: 'Krona One', serif; line-height: 1.1; }
.bstat span { display: block; font-size: 1.3rem; color: var(--gray-50); margin-top: .5rem; }

.brand-highlights {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}
.brand-highlights li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    font-size: 1.5rem;
    color: var(--dark);
    line-height: 1.5;
}
.brand-highlights li::before {
    content: '✓';
    color: var(--orange);
    font-weight: 800;
    font-size: 1.6rem;
    flex-shrink: 0;
    margin-top: .1rem;
}

.brand-product-lines {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}
@media (min-width: 640px) { .brand-product-lines { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 992px) { .brand-product-lines { grid-template-columns: repeat(3, 1fr); } }
.brand-product-line {
    background: #fff;
    border-radius: 1.2rem;
    padding: 2rem;
    border-left: 4px solid var(--orange);
    box-shadow: 0 2px 10px rgba(0,0,0,.05);
}
.brand-product-line h4 { font-size: 1.6rem; font-weight: 700; margin-bottom: .6rem; color: var(--dark); }
.brand-product-line p { font-size: 1.35rem; color: var(--gray-50); line-height: 1.55; margin: 0; }

.brand-norms-box {
    background: #fff7f3;
    border: 2px solid var(--orange);
    border-radius: 1.4rem;
    padding: 2.5rem;
    margin: 3rem 0;
}
.brand-norms-box h4 { font-size: 1.6rem; font-weight: 700; margin-bottom: 1rem; color: var(--dark); }
.brand-norms-box p { font-size: 1.6rem; color: var(--gray-50); line-height: 1.6; margin: 0; }

/* ============================================
   CATEGORY SINGLE PAGE
   ============================================ */
.cat-guide {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 3rem 0;
}
.cat-guide-item {
    background: #fff;
    border-radius: 1.2rem;
    padding: 2.5rem;
    border-left: 4px solid var(--orange);
    box-shadow: 0 2px 10px rgba(0,0,0,.04);
}
.cat-guide-item__scenario {
    font-size: 1.3rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: var(--orange);
    margin-bottom: .8rem;
}
.cat-guide-item h4 { font-size: 1.6rem; font-weight: 700; margin-bottom: .6rem; color: var(--dark); }
.cat-guide-item p { font-size: 1.6rem; color: var(--gray-50); line-height: 1.6; margin: 0; }

/* ============================================
   KNOWLEDGE INDEX — FEATURED POST CARD
   ============================================ */
.featured-post-card { transition: box-shadow .3s; }
.featured-post-card:hover { box-shadow: 0 8px 40px rgba(0,0,0,.13) !important; }
@media (max-width: 767px) {
    .featured-post-card { grid-template-columns: 1fr !important; }
    .featured-post-card > div:first-child { height: 24rem !important; }
    .featured-post-card > div:last-child { padding: 3rem !important; }
}

/* ============================================
   POST SINGLE — AUTHOR BIO + EXPERT CTA
   ============================================ */
.post-author-bio {
    display: flex;
    gap: 2.5rem;
    align-items: flex-start;
    background: var(--bg-light);
    border-radius: 1.6rem;
    padding: 3rem;
    margin: 5rem 0 3rem;
    border-left: 4px solid var(--orange);
}
.author-avatar {
    width: 7rem;
    height: 7rem;
    border-radius: 50%;
    background: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.4rem;
    flex-shrink: 0;
    color: #fff;
    font-weight: 700;
}
.post-author-bio__body strong { display: block; font-size: 1.7rem; font-weight: 700; margin-bottom: .3rem; color: var(--dark); }
.post-author-bio__body .author-title { font-size: 1.3rem; color: var(--orange); font-weight: 600; margin-bottom: 1rem; display: block; }
.post-author-bio__body p { font-size: 1.45rem; color: var(--gray-50); line-height: 1.65; margin: 0; }

.post-expert-cta {
    background: var(--dark);
    border-radius: 2rem;
    padding: 4rem;
    margin: 4rem 0;
    text-align: center;
}
.post-expert-cta h3 { font-size: 2.4rem; font-weight: 700; color: #fff; margin-bottom: 1.2rem; }
.post-expert-cta p { font-size: 1.55rem; color: rgba(255,255,255,.75); margin-bottom: 2.5rem; line-height: 1.6; }

/* ============================================
   EVENT SINGLE PAGE
   ============================================ */
.event-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}
.event-hero-meta__item {
    display: flex;
    align-items: center;
    gap: .8rem;
    background: rgba(255,255,255,.12);
    border-radius: 4rem;
    padding: .8rem 1.8rem;
    font-size: 1.4rem;
    color: rgba(255,255,255,.9);
}
.event-body-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 6rem;
    margin-top: 5rem;
}
@media (min-width: 992px) { .event-body-grid { grid-template-columns: 1fr 36rem; } }
.event-details-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    font-size: 1.5rem;
}
.event-details-table tr { border-bottom: 1px solid var(--border); }
.event-details-table td { padding: 1.2rem 0; vertical-align: top; }
.event-details-table td:first-child { font-weight: 700; color: var(--dark); width: 14rem; }
.event-details-table td:last-child { color: var(--gray-50); }
.event-booth-card {
    background: var(--orange);
    border-radius: 2rem;
    padding: 3.5rem;
    color: #fff;
    text-align: center;
    margin-bottom: 3rem;
}
.event-booth-card__number {
    font-size: 2.2rem;
    font-weight: 800;
    font-family: 'Krona One', serif;
    line-height: 1.2;
    margin-bottom: .6rem;
    color: #fff;
}
.event-booth-card__label {
    font-size: 1.1rem;
    opacity: .75;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: .5rem;
    display: block;
}
.event-what-find {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    margin: 2rem 0;
}
@media (min-width: 640px) { .event-what-find { grid-template-columns: repeat(2, 1fr); gap: 0 3rem; } }
.ewf-item {
    padding: 1.8rem 0;
    border-bottom: 1px solid var(--border);
}
.ewf-item h4 { font-size: 1.55rem; font-weight: 700; margin-bottom: .4rem; color: var(--dark); }
.ewf-item p { font-size: 1.6rem; color: var(--gray-50); line-height: 1.6; margin: 0; }

/* ============================================
   BRAND INDEX — ENHANCED
   ============================================ */
.brand-index-trust {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin: 5rem 0;
}
@media (min-width: 640px) { .brand-index-trust { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 992px) { .brand-index-trust { grid-template-columns: repeat(4, 1fr); } }
.bit-card {
    background: #fff;
    border-radius: 1.4rem;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0,0,0,.05);
    transition: transform .3s;
}
.bit-card:hover { transform: translateY(-3px); }
.bit-card__icon { display: none; }
.bit-card h3 { font-size: 1.7rem; font-weight: 700; margin-bottom: .8rem; color: var(--dark); }
.bit-card p { font-size: 1.35rem; color: var(--gray-50); line-height: 1.55; }
.brand-featured-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin: 4rem 0;
}
@media (min-width: 640px) { .brand-featured-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 992px) { .brand-featured-grid { grid-template-columns: repeat(4, 1fr); } }
.brand-feat-card {
    background: #fff;
    border-radius: 1.6rem;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 2px 12px rgba(0,0,0,.05);
    transition: box-shadow .3s, transform .3s;
    border: 2px solid transparent;
}
.brand-feat-card:hover { box-shadow: 0 6px 30px rgba(0,0,0,.1); transform: translateY(-3px); border-color: var(--orange); }
.brand-feat-card img { max-height: 6rem; max-width: 14rem; object-fit: contain; margin-bottom: 1.2rem; }
.brand-feat-card__name { font-size: 1.6rem; font-weight: 700; color: var(--dark); margin-bottom: .4rem; }
.brand-feat-card__country { font-size: 1.25rem; color: var(--gray-50); margin-bottom: .8rem; }
.brand-feat-card__desc { font-size: 1.3rem; color: var(--gray-50); line-height: 1.5; }

/* ============================================
   OWN BRANDS (brand-index)
   ============================================ */
.own-brands-section { background: #fff9f7; border-top: 3px solid var(--orange); }
.own-brands-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-top: 4rem;
}
@media (min-width: 640px) { .own-brands-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 992px) { .own-brands-grid { grid-template-columns: repeat(3, 1fr); } }
.own-brand-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 2px solid var(--orange);
    border-radius: 1.6rem;
    padding: 3rem 2.5rem 2.5rem;
    text-decoration: none;
    transition: box-shadow .25s, transform .25s;
    overflow: hidden;
}
.own-brand-card:hover { box-shadow: 0 8px 36px rgba(255,111,77,.18); transform: translateY(-4px); }
.own-brand-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--orange), #ff9b7d);
}
.own-brand-card__badge {
    display: inline-block;
    background: var(--orange);
    color: #fff;
    font-size: 1.15rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    padding: .35rem 1rem;
    border-radius: 10rem;
    margin-bottom: 2rem;
    width: fit-content;
}
.own-brand-card__logo { margin-bottom: 1.5rem; }
.own-brand-card__logo img { max-height: 6rem; max-width: 16rem; object-fit: contain; }
.own-brand-card__name-big {
    font-size: 3.6rem;
    font-weight: 800;
    color: var(--orange);
    letter-spacing: -.02em;
    margin-bottom: 1.5rem;
    font-family: 'Krona One', sans-serif;
}
.own-brand-card__title { font-size: 2rem; font-weight: 700; color: var(--dark); margin-bottom: 1rem; }
.own-brand-card__desc { font-size: 1.45rem; color: var(--gray-50); line-height: 1.65; flex: 1; }
.own-brand-card__cta {
    display: inline-block;
    margin-top: 2rem;
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--orange);
    text-decoration: none;
}

/* ============================================
   BRAND LOGO SLIDER
   ============================================ */
.brand-slider-section {}
.brand-logo-slider {
    position: relative;
    margin-top: 4rem;
}
.bls-track-wrap {
    overflow: hidden;
    border-radius: 1.2rem;
}
.bls-track {
    display: flex;
    gap: 2rem;
    transition: transform .4s ease;
    will-change: transform;
}
.bls-slide {
    flex: 0 0 calc(25% - 1.5rem);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 2.5rem 1.5rem;
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 1.2rem;
    text-decoration: none;
    transition: border-color .2s, box-shadow .2s, transform .2s;
    min-width: 0;
}
.bls-slide:hover { border-color: var(--orange); box-shadow: 0 4px 18px rgba(255,111,77,.12); transform: translateY(-2px); }
.bls-slide img { max-height: 5.5rem; max-width: 12rem; object-fit: contain; }
.bls-slide__name { font-size: 1.3rem; font-weight: 600; color: var(--dark); text-align: center; }
@media (max-width: 991px) { .bls-slide { flex: 0 0 calc(33.33% - 1.34rem); } }
@media (max-width: 639px) { .bls-slide { flex: 0 0 calc(50% - 1rem); } }
.bls-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 4.4rem;
    height: 4.4rem;
    border-radius: 50%;
    border: 2px solid var(--border);
    background: #fff;
    color: var(--dark);
    font-size: 2.4rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color .2s, color .2s, box-shadow .2s;
    box-shadow: 0 2px 10px rgba(0,0,0,.08);
}
.bls-arrow:hover { border-color: var(--orange); color: var(--orange); box-shadow: 0 4px 16px rgba(255,111,77,.15); }
.bls-arrow--prev { left: -2.2rem; }
.bls-arrow--next { right: -2.2rem; }
@media (max-width: 639px) { .bls-arrow--prev { left: -.8rem; } .bls-arrow--next { right: -.8rem; } }
.bls-dots {
    display: flex;
    gap: .8rem;
    justify-content: center;
    margin-top: 2rem;
}
.bls-dot {
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    background: var(--border);
    border: none;
    cursor: pointer;
    transition: background .2s, transform .2s;
    padding: 0;
}
.bls-dot.active { background: var(--orange); transform: scale(1.25); }

/* ============================================
   BRANDS TEXT GRID (no-logo brands)
   ============================================ */
.brands-text-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
    justify-content: center;
    margin-top: 3rem;
}
.brand-text-pill {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.2rem 2rem;
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 1.2rem;
    text-decoration: none;
    min-width: 12rem;
    transition: border-color .2s, box-shadow .2s;
}
.brand-text-pill:hover { border-color: var(--orange); box-shadow: 0 2px 10px rgba(255,111,77,.1); }
.btp-name { font-size: 1.5rem; font-weight: 700; color: var(--dark); }
.btp-country { font-size: 1.15rem; color: var(--gray-50); margin-top: .3rem; }

/* ============================================
   VIDEO SECTIONS
   ============================================ */
.vending-video-section { background: var(--bg-light); }
.vending-video-wrap video { background: var(--dark); }
.home-vending-video { padding: 8rem 0; }

/* ============================================
   VBENEFIT — updated layout (icon hidden)
   ============================================ */
.vbenefit {
    display: block;
}
.vbenefit h3, .vbenefit h4 {
    font-size: 1.7rem;
    font-weight: 700;
    margin-bottom: .8rem;
}
/* dark bg context — white text */
[style*="background:var(--dark)"] .vbenefit h3,
[style*="background:var(--dark)"] .vbenefit h4 { color: #fff; }
[style*="background:var(--dark)"] .vbenefit p { color: rgba(255,255,255,.7); }

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-orange { color: var(--orange); }
.text-white  { color: #fff; }
.text-muted  { color: var(--gray-50); }
.fw-bold     { font-weight: 700; }

/* ============================================
   ACCORDION
   ============================================ */
.accordion { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.accordion__item { border-bottom: 1px solid var(--border); }
.accordion__item:last-child { border-bottom: none; }
.accordion__header {
    width: 100%;
    background: none;
    border: none;
    padding: 2rem 2.5rem;
    text-align: left;
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--dark);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    font-family: 'Inter', sans-serif;
    transition: background .2s, color .2s;
    line-height: 1.4;
}
.accordion__header:hover { background: var(--bg-light); color: var(--orange); }
.accordion__header.is-open { background: var(--bg-light); color: var(--orange); }
.accordion__header::after {
    content: '+';
    font-size: 2.4rem;
    font-weight: 300;
    flex-shrink: 0;
    line-height: 1;
    color: var(--orange);
    transition: transform .3s;
}
.accordion__header.is-open::after { transform: rotate(45deg); }
.accordion__body {
    display: none;
    padding: 0 2.5rem 2.5rem;
    font-size: 1.5rem;
    color: var(--gray-60);
    line-height: 1.75;
}
.accordion__body.is-open { display: block; }
.accordion__body p { margin-bottom: 1.5rem; }
.accordion__body p:last-child { margin-bottom: 0; }
.accordion__body .buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
    margin-top: 2rem;
}

/* Dark variant */
.accordion--dark { border-color: rgba(255,255,255,.15); }
.accordion--dark .accordion__item { border-color: rgba(255,255,255,.1); }
.accordion--dark .accordion__header { color: #fff; }
.accordion--dark .accordion__header:hover { background: rgba(255,255,255,.06); }
.accordion--dark .accordion__header.is-open { background: rgba(255,255,255,.06); }
.accordion--dark .accordion__body { color: rgba(255,255,255,.7); }

/* ============================================
   RESPONSIVE UTILITIES
   ============================================ */
@media (max-width: 991px) {
    .hide-mobile { display: none !important; }
    h1 { font-size: 3.2rem; }
    h2 { font-size: 2.8rem; }
    .block-type-1 .slide { min-height: 80vh; }
}
@media (min-width: 992px) {
    .hide-desktop { display: none !important; }
}
