/*
 Theme Name:   Czystość Child
 Description:  Divi Child Theme for Czystość Sp. Jawna
 Template:     Divi
 Version:      1.0.7
 Text Domain:  czystosc-child
*/

/* =============================================
   THEME COLORS
   ============================================= */
:root {
    --cz-white: #ffffff;
    --cz-black: #111111;
    --cz-black-soft: #1a1a1a;
    --cz-red-dark: #EE1D23;
    --cz-red: #EE1D23;
    --cz-red-hover: #850b13;
    --cz-red-soft: #f0c7cb;
    --cz-red-pale: #fcf3f4;
    --cz-gray-light: #f7f7f7;
    --cz-gray-mid: #e5e5e5;
    --cz-gray-border: #e8e8e8;
    --cz-text: #2b2b2b;
    --cz-text-soft: #666666;
}

/* =============================================
   RESET & BASE
   ============================================= */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: 'Readex Pro', sans-serif;
    font-weight: 300;
    color: var(--cz-text);
    background: var(--cz-white);
    overflow-x: hidden;
}
a {
    text-decoration: none;
    color: inherit;
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}
ul, ol {
    list-style: none;
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'Readex Pro', sans-serif;
    color: var(--cz-black-soft);
}

/* =============================================
   COOKIES BANNER
   ============================================= */
.cookies-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(17, 17, 17, 0.97);
    color: var(--cz-white);
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    z-index: 9999;
    font-size: 13px;
    line-height: 1.5;
    flex-wrap: wrap;
}
.cookies-banner.hidden {
    display: none;
}
.cookies-banner p {
    flex: 1;
    min-width: 200px;
}
.cookies-button {
    background: var(--cz-red-dark);
    color: var(--cz-white);
    border: none;
    padding: 8px 24px;
    cursor: pointer;
    font-size: 13px;
    font-family: 'Readex Pro', sans-serif;
    white-space: nowrap;
    transition: background 0.2s ease;
}
.cookies-button:hover {
    background: var(--cz-red-hover);
}

/* =============================================
   HEADER
   ============================================= */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    padding: 0 40px;
    height: 70px;
    display: flex;
    align-items: center;
}
.header-inner {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.site-logo img {
    height: 44px;
    width: auto;
}
.main-nav {
    display: flex;
    align-items: center;
}
.main-nav a {
    display: block;
    padding: 8px 18px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.06em;
    color: var(--cz-black-soft);
    transition: color 0.2s ease;
    position: relative;
}
.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 18px;
    right: 18px;
    height: 2px;
    background: var(--cz-red-dark);
    transform: scaleX(0);
    transition: transform 0.2s ease;
}
.main-nav a:hover,
.main-nav a.current-menu-item {
    color: var(--cz-red-dark);
}
.main-nav a:hover::after,
.main-nav a.current-menu-item::after {
    transform: scaleX(1);
}
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    flex-direction: column;
    gap: 5px;
}
.menu-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--cz-black-soft);
    transition: all 0.3s ease;
}
.mobile-nav {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--cz-white);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    z-index: 999;
    padding: 20px 0;
}
.mobile-nav.open {
    display: block;
}
.mobile-nav a {
    display: block;
    padding: 12px 40px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.06em;
    color: var(--cz-black-soft);
    border-bottom: 1px solid #f0f0f0;
    transition: color 0.2s ease, background 0.2s ease;
}
.mobile-nav a:hover {
    color: var(--cz-red-dark);
    background: #fafafa;
}

/* =============================================
   HOME HERO
   ============================================= */
.home-hero {
    min-height: 100vh;
    background-color: var(--cz-black);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    padding: 120px 40px 80px;
    position: relative;
    overflow: hidden;
}
.home-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.50);
    z-index: 0;
}
.home-hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
}
.home-hero .eyebrow {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--cz-red-soft);
    margin-bottom: 20px;
}
.home-hero h1 {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 700;
    line-height: 1.05;
    color: var(--cz-white);
    margin-bottom: 8px;
}
.home-hero h1 .accent {
    color: var(--cz-red);
}
.home-hero .hero-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin: 24px 0 36px;
    max-width: 560px;
}
.home-hero .hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* =============================================
   PAGE HERO
   ============================================= */
.page-hero {
    padding: 140px 40px 80px;
    background-color: var(--cz-black-soft);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    color: var(--cz-white);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.52);
    z-index: 0;
}
.page-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}
.page-hero .page-label {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.2em;
    color: var(--cz-red-soft);
    margin-bottom: 16px;
    text-transform: uppercase;
}
.page-hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
    color: var(--cz-white);
}
.page-hero .hero-subtitle {
    font-size: 1.1rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.85);
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
    display: inline-block;
    padding: 12px 32px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    font-family: 'Readex Pro', sans-serif;
}
.btn-success {
    background: var(--cz-red-dark);
    color: var(--cz-white);
}
.btn-success:hover {
    background: var(--cz-red-hover);
    color: var(--cz-white);
}
.btn-outline {
    background: transparent;
    color: var(--cz-red-dark);
    border: 2px solid var(--cz-red-dark);
}
.btn-outline:hover {
    background: var(--cz-red-dark);
    color: var(--cz-white);
}

/* =============================================
   SECTION LAYOUT
   ============================================= */
.section {
    padding: 80px 40px;
}
.container {
    max-width: 1400px;
    margin: 0 auto;
}
.section-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--cz-red-dark);
    margin-bottom: 12px;
}
.section-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--cz-black-soft);
}
.section-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--cz-text-soft);
    max-width: 700px;
}

/* =============================================
   ABOUT STRIP
   ============================================= */
.about-strip {
    background: var(--cz-gray-light);
    padding: 80px 40px;
}
.about-strip-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.about-strip .badges {
    display: flex;
    gap: 20px;
    margin-top: 32px;
    flex-wrap: wrap;
}
.about-strip .badges img {
    height: 60px;
    width: auto;
}

/* =============================================
   TECHNOLOGY SECTION
   ============================================= */
.technology-section {
    padding: 80px 40px;
    background: var(--cz-black-soft);
    color: var(--cz-white);
}
.technology-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 80px;
    align-items: center;
}

.technology-section .section-title {
    color: var(--cz-white);
}
.technology-section .section-text {
    color: rgba(255, 255, 255, 0.78);
}

/* =============================================
   SERVICES GRID
   ============================================= */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    margin-top: 50px;
    background: var(--cz-gray-mid);
}
.service-card {
    background: var(--cz-white);
    padding: 50px 36px;
    transition: background 0.3s ease;
}
.service-card:hover {
    background: var(--cz-red-pale);
}
.service-card .service-icon {
    width: 50px;
    height: 4px;
    background: var(--cz-red-dark);
    margin-bottom: 24px;
}
.service-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--cz-black-soft);
    text-transform: uppercase;
}

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials-section {
    padding: 80px 40px;
    background: var(--cz-gray-light);
}
.testimonials-inner {
    max-width: 1400px;
    margin: 0 auto;
}
.testimonials-header {
    text-align: center;
    margin-bottom: 60px;
}
.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}
.testimonial-card {
    background: var(--cz-white);
    padding: 48px 40px;
    border-left: 4px solid var(--cz-red-dark);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}
.testimonial-card .quote {
    font-size: 1rem;
    line-height: 1.8;
    color: #444444;
    margin-bottom: 28px;
    font-style: italic;
}
.testimonial-card .author-name {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--cz-black-soft);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.testimonial-card .author-title {
    font-size: 0.8rem;
    color: #777777;
    margin-top: 4px;
    line-height: 1.5;
}
.testimonials-cta {
    text-align: center;
    margin-top: 48px;
}

/* =============================================
   CTA BAND
   ============================================= */
.cta-band {
    padding: 100px 40px;
    background: linear-gradient(135deg, #111111 0%, #8b0d16 100%);
    color: var(--cz-white);
}
.cta-band-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.cta-band .cta-title {
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 700;
    color: var(--cz-white);
    line-height: 1.2;
}
.cta-band .cta-title span {
    color: var(--cz-red-soft);
}
.cta-band .cta-text {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.82);
    margin: 16px 0 28px;
}
.cta-band .cta-link {
    color: #ffd7db;
    font-weight: 500;
    transition: color 0.2s ease;
}
.cta-band .cta-link:hover {
    color: var(--cz-white);
}

/* =============================================
   O NAS PAGE
   ============================================= */
.onas-intro {
    padding: 100px 40px;
    background: var(--cz-gray-light);
}
.onas-intro-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.founded-badge {
    display: inline-block;
    background: var(--cz-red-dark);
    color: var(--cz-white);
    padding: 6px 18px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.onas-team {
    padding: 80px 40px;
    background: var(--cz-white);
}
.onas-team-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.onas-development {
    padding: 80px 40px;
    background: var(--cz-black-soft);
    color: var(--cz-white);
}
.onas-development-inner {
    max-width: 1400px;
    margin: 0 auto;
}
.onas-development .section-title {
    color: var(--cz-white);
}
.onas-development .section-text {
    color: rgba(255, 255, 255, 0.78);
}
.onas-environment {
    padding: 100px 40px;
    background: var(--cz-gray-light);
}
.onas-environment-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.onas-environment h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--cz-black-soft);
    margin-bottom: 28px;
}
.onas-environment h2 em {
    display: block;
    color: var(--cz-red-dark);
    font-style: normal;
}
.onas-research {
    padding: 80px 40px;
    background: var(--cz-white);
}
.onas-research-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* =============================================
   REFERENCJE PAGE
   ============================================= */
.referencje-section {
    padding: 80px 40px;
    background: var(--cz-white);
}
.referencje-inner {
    max-width: 1200px;
    margin: 0 auto;
}
.year-group {
    margin-bottom: 60px;
}
.year-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--cz-gray-mid);
}
.year-dot {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background: var(--cz-red-dark);
}
.year-dot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.year-label {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--cz-black-soft);
    letter-spacing: 0.05em;
}
.pdf-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 16px;
}
.pdf-thumb {
    display: block;
    position: relative;
    background: #f5f5f5;
    border: 2px solid #e0e0e0;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.pdf-thumb:hover {
    border-color: var(--cz-red-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(139, 13, 22, 0.18);
}
.pdf-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.pdf-thumb .pdf-overlay {
    position: absolute;
    inset: 0;
    background: rgba(139, 13, 22, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}
.pdf-thumb:hover .pdf-overlay {
    background: rgba(139, 13, 22, 0.14);
}
.pdf-thumb .pdf-icon {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.92);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.2s ease;
}
.pdf-thumb:hover .pdf-icon {
    opacity: 1;
}
.pdf-thumb .pdf-icon::after {
    content: '↗';
    font-size: 18px;
    color: var(--cz-red-dark);
}
.referencje-cta {
    text-align: center;
    padding: 60px 40px;
    background: var(--cz-gray-light);
    border-top: 1px solid var(--cz-gray-mid);
}
.referencje-cta h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--cz-black-soft);
    margin-bottom: 12px;
}
.referencje-cta p {
    color: var(--cz-text-soft);
    margin-bottom: 28px;
}

/* =============================================
   REALIZACJE PAGE
   ============================================= */
.realizacje-section {
    padding: 90px 0;
    background: var(--cz-white);
}
.realizacje-inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
}
.realizacje-header {
    text-align: center;
    margin-bottom: 42px;
}
.realizacje-header .section-label {
    margin-bottom: 10px;
}
.realizacje-header .section-title {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 700;
    letter-spacing: 0.01em;
    color: var(--cz-black-soft);
    margin-bottom: 0;
}
.realizacje-section .czystosc-gallery-grid {
    gap: 16px;
    margin: 0;
}
.realizacje-section .czystosc-gallery-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}
.realizacje-section .czystosc-gallery-item {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 3px;
    background: #f4f4f4;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
}
.realizacje-section .czystosc-gallery-bg {
    width: 100%;
    padding-top: 72%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    transition: transform 0.35s ease;
}
.realizacje-section .czystosc-gallery-item:hover .czystosc-gallery-bg {
    transform: scale(1.04);
}
.realizacje-section .czystosc-gallery-zoom {
    position: absolute;
    inset: 0;
    background: rgba(17, 17, 17, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.28s ease;
}
.realizacje-section .czystosc-gallery-item:hover .czystosc-gallery-zoom {
    background: rgba(139, 13, 22, 0.22);
}
.realizacje-section .czystosc-gallery-zoom::after {
    content: '+';
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.94);
    color: var(--cz-red-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 300;
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.25s ease, transform 0.25s ease;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.14);
}
.realizacje-section .czystosc-gallery-item:hover .czystosc-gallery-zoom::after {
    opacity: 1;
    transform: scale(1);
}
.realizacje-cta {
    text-align: center;
    margin-top: 52px;
}

/* =============================================
   OFERTA PAGE
   ============================================= */
.oferta-services {
    padding: 80px 0 60px;
    background: var(--cz-white);
}
.oferta-services-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}
.oferta-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px 24px;
}
.oferta-service-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
}
.oferta-service-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.oferta-service-icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
.oferta-service-label {
    font-size: 0.92rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--cz-black-soft);
    line-height: 1.5;
}
.oferta-quality-band {
    background: var(--cz-red-dark);
    color: var(--cz-white);
    padding: 48px 24px;
    text-align: center;
}
.oferta-quality-band p {
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.7;
    margin: 0;
    color: var(--cz-white);
}
.oferta-equipment {
    padding: 80px 0;
    background: var(--cz-white);
}
.oferta-equipment-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}
.oferta-equipment-header {
    margin-bottom: 48px;
}
.oferta-equipment-header .section-title {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: var(--cz-black-soft);
    border-left: 4px solid var(--cz-red-dark);
    padding-left: 16px;
}
.oferta-equipment-cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}
.oferta-equipment-col-title {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--cz-red-dark);
    text-transform: uppercase;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid #e0e0e0;
}
.oferta-equipment-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.oferta-equipment-col ul li {
    padding: 8px 0 8px 16px;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.95rem;
    color: #444444;
    position: relative;
}
.oferta-equipment-col ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--cz-red-dark);
    border-radius: 50%;
}
.oferta-cta {
    text-align: center;
    margin-top: 56px;
}

/* =============================================
   KONTAKT PAGE
   ============================================= */
.kontakt-section {
    padding: 80px 40px 20px;
    background: var(--cz-white);
}
.kontakt-inner {
    max-width: 1200px;
    margin: 0 auto;
}
.kontakt-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}
.kontakt-card {
    border: 1px solid var(--cz-gray-border);
    padding: 40px 32px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.kontakt-card:hover {
    border-color: var(--cz-red-dark);
    box-shadow: 0 8px 32px rgba(139, 13, 22, 0.10);
}
.kontakt-card .card-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 24px;
}
.kontakt-card .card-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.kontakt-card .card-title {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--cz-red-dark);
    margin-bottom: 16px;
}
.kontakt-card p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #444444;
}
.kontakt-card .card-name {
    font-weight: 600;
    color: var(--cz-black-soft);
    margin-bottom: 4px;
}
.kontakt-map {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: block;
    border: 1px solid var(--cz-gray-border);
}

/* =============================================
   GALLERY SHORTCODE
   ============================================= */
.czystosc-gallery-grid {
    display: grid;
    gap: 8px;
    margin: 32px 0;
}
.czystosc-gallery-cols-4 {
    grid-template-columns: repeat(4, 1fr);
}
.czystosc-gallery-cols-3 {
    grid-template-columns: repeat(3, 1fr);
}
.czystosc-gallery-cols-2 {
    grid-template-columns: repeat(2, 1fr);
}
.czystosc-gallery-item {
    display: block;
    position: relative;
    overflow: hidden;
}
.czystosc-gallery-bg {
    width: 100%;
    padding-top: 75%;
    background-size: cover;
    background-position: center;
    position: relative;
    transition: transform 0.3s ease;
}
.czystosc-gallery-item:hover .czystosc-gallery-bg {
    transform: scale(1.05);
}
.czystosc-gallery-zoom {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
    font-size: 2rem;
    color: var(--cz-white);
}
.czystosc-gallery-item:hover .czystosc-gallery-zoom {
    background: rgba(139, 13, 22, 0.25);
}
.czystosc-gallery-zoom::after {
    content: '+';
}

/* =============================================
   REFERENCJE SHORTCODE
   ============================================= */
.czystosc-year-group {
    margin-bottom: 48px;
}
.czystosc-year-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}
.czystosc-year-dot {
    width: 40px;
    height: 40px;
    background: var(--cz-red-dark);
    border-radius: 50%;
}
.czystosc-year-label {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--cz-black-soft);
}
.czystosc-pdf-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 12px;
}
.czystosc-pdf-thumb {
    display: block;
    position: relative;
    overflow: hidden;
    border: 1px solid #e0e0e0;
    border-radius: 2px;
    aspect-ratio: 3 / 4;
    background: #f5f5f5;
    transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.czystosc-pdf-thumb:hover {
    border-color: var(--cz-red-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(139, 13, 22, 0.18);
}
.czystosc-pdf-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.czystosc-pdf-overlay {
    position: absolute;
    inset: 0;
    background: rgba(139, 13, 22, 0);
    transition: background 0.3s ease;
}
.czystosc-pdf-thumb:hover .czystosc-pdf-overlay {
    background: rgba(139, 13, 22, 0.18);
}
.czystosc-pdf-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    font-size: 2.5rem;
    color: #aaaaaa;
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
    background: var(--cz-black);
    color: var(--cz-white);
    padding: 0 40px 40px;
}

.footer-inner {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-funding {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    background: #ffffff;
    margin-bottom: 60px;
    padding: 0 40px;
}

.footer-funding-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 26px 0 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-funding-image {
    width: 100%;
    margin-bottom: 18px;
    display: flex;
    justify-content: center;
}

.footer-funding-image img {
    display: block;
    width: 100%;
    max-width: 1080px;
    height: auto;
    margin: 0 auto;
}

.footer-funding-text {
    width: 100%;
    max-width: 1080px;
    margin: 0 auto;
}

.footer-funding-text p {
    font-size: 12px;
    line-height: 1.7;
    color: #222222;
    margin: 0;
    text-align: center;
}

.footer-columns {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.footer-col-title {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--cz-red-soft);
    margin-bottom: 20px;
}

.footer-col-title-secondary {
    margin-top: 32px;
}

.footer-col p,
.footer-col a {
    font-size: 0.9rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.72);
    display: block;
}

.footer-col a:hover {
    color: var(--cz-white);
}

.footer-company-name {
    color: #ffffff;
    font-weight: 700;
}

.footer-contact-line {
    margin-top: 16px;
}

.footer-email-link {
    color: var(--cz-red) !important;
    font-weight: 700;
    transition: color 0.2s ease;
}

.footer-email-link:hover {
    color: var(--cz-red-hover) !important;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 30px;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-brand {
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--cz-white);
}

.footer-copy {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.45);
}

.footer-credit {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.45);
}

.footer-credit img {
    height: 24px;
    width: auto;
    filter: brightness(0) invert(0.5);
    transition: filter 0.2s ease;
}

.footer-credit a:hover img {
    filter: brightness(0) invert(1);
}

/* =============================================
   SITE CREDIT BAR  — absolute last element
   Professional, centered, text-primary design
   ============================================= */
.site-credit-bar {
    background: #060606;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    padding: 0 40px;
}

.site-credit-bar-inner {
    max-width: 1400px;
    margin: 0 auto;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.site-credit-bar-label {
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.28);
    white-space: nowrap;
}

.site-credit-bar-divider {
    display: block;
    width: 1px;
    height: 12px;
    background: rgba(255, 255, 255, 0.15);
    flex-shrink: 0;
}

.site-credit-bar-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: opacity 0.2s ease;
    opacity: 0.6;
}

.site-credit-bar-link:hover {
    opacity: 1;
}

/* Logo image — inverted to appear white */
.site-credit-bar-logo {
    height: 17px;
    width: auto;
    display: block;
    /* filter: brightness(0) invert(1); */
}

/* Text name shown always — fallback if logo fails */
.site-credit-bar-name {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.70);
    white-space: nowrap;
}

.site-credit-bar-link:hover .site-credit-bar-name {
    color: #ffffff;
}

@media (max-width: 600px) {
    .site-credit-bar {
        padding: 0 24px;
    }
    .site-credit-bar-inner {
        height: 44px;
        gap: 10px;
    }
}

/* =============================================
   GALLERY SHORTCODE
   ============================================= */
.czystosc-gallery-grid {
    display: grid;
    gap: 8px;
    margin: 32px 0;
}

/* =============================================
   REFERENCES CAROUSEL (front page)
   ============================================= */
.ref-carousel-wrap {
    position: relative;
}
.ref-carousel-outer {
    overflow: hidden;
}
.ref-carousel-track {
    display: flex;
    gap: 16px;
    transition: transform .38s cubic-bezier(.4,0,.2,1);
}
.ref-carousel-card {
    flex: 0 0 calc(20% - 13px);
    min-width: 100px;
    position: relative;
    border: 1.5px solid var(--cz-gray-border);
    overflow: hidden;
    aspect-ratio: 3 / 4;
    background: var(--cz-gray-light);
    transition: border-color .2s, transform .2s, box-shadow .2s;
    text-decoration: none;
    display: block;
}
.ref-carousel-card:hover {
    border-color: var(--cz-red-dark);
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(139,13,22,.18);
}
.ref-carousel-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.ref-carousel-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #aaa;
    background: #f5f5f5;
}
.ref-carousel-overlay {
    position: absolute;
    inset: 0;
    background: rgba(139,13,22,0);
    transition: background .2s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ref-carousel-card:hover .ref-carousel-overlay {
    background: rgba(139,13,22,.13);
}
.ref-carousel-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,.92);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--cz-red-dark);
    opacity: 0;
    transition: opacity .2s;
}
.ref-carousel-card:hover .ref-carousel-icon {
    opacity: 1;
}
.ref-year-tag {
    position: absolute;
    top: 8px;
    left: 8px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .08em;
    background: rgba(17,17,17,.72);
    color: #fff;
    padding: 2px 7px;
}
.ref-carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 28px;
}
.ref-carousel-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1.5px solid var(--cz-gray-mid);
    background: var(--cz-white);
    cursor: pointer;
    font-size: 18px;
    color: var(--cz-black-soft);
    transition: background .2s, border-color .2s, color .2s;
}
.ref-carousel-btn:hover {
    background: var(--cz-red-dark);
    border-color: var(--cz-red-dark);
    color: var(--cz-white);
}
.ref-carousel-btn:disabled {
    opacity: .3;
    cursor: not-allowed;
}
.ref-carousel-dots {
    display: flex;
    gap: 8px;
    align-items: center;
}
.ref-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: var(--cz-gray-mid);
    cursor: pointer;
    padding: 0;
    transition: background .2s, transform .2s;
}
.ref-dot.active {
    background: var(--cz-red-dark);
    transform: scale(1.35);
}

@media (max-width: 900px) {
    .ref-carousel-card {
        flex: 0 0 calc(33.333% - 11px);
    }
}
@media (max-width: 600px) {
    .ref-carousel-card {
        flex: 0 0 calc(50% - 8px);
    }
}

/* =============================================
   SPONSOR HURAGAN (front page)
   ============================================= */
.sponsor-huragan {
    background: var(--cz-gray-light);
    padding: 80px 40px;
    border-top: 1px solid var(--cz-gray-mid);
    border-bottom: 1px solid var(--cz-gray-mid);
}

.sponsor-huragan-inner {
    max-width: 1400px;
    margin: 0 auto;
}

.sponsor-huragan-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--cz-red-dark);
    margin-bottom: 12px;
}

.sponsor-huragan-title {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--cz-black-soft);
    margin-bottom: 32px;
}

.sponsor-huragan-title span {
    color: var(--cz-red-dark);
}

.sponsor-huragan-content {
    max-width: 1100px;
    margin-bottom: 36px;
}

.sponsor-huragan-content p {
    font-size: 1rem;
    line-height: 1.85;
    color: var(--cz-text-soft);
    margin-bottom: 20px;
}

.sponsor-huragan-content p:last-of-type {
    margin-bottom: 24px;
}

.sponsor-huragan-link {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--cz-black-soft);
    text-decoration: none;
    transition: color 0.2s ease;
}

.sponsor-huragan-link:hover {
    color: var(--cz-red-dark);
}

.sponsor-huragan-image-wrap {
    overflow: hidden;
    border: 1px solid var(--cz-gray-border);
}

.sponsor-huragan-image-wrap-full {
    width: 100%;
}

.sponsor-huragan-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}

.sponsor-huragan-image-wrap:hover .sponsor-huragan-img {
    transform: scale(1.02);
}

@media (max-width: 600px) {
    .sponsor-huragan {
        padding: 60px 24px;
    }
}

.site-logo {
    display: inline-flex;
    align-items: center;
}

.site-logo img,
.site-logo .custom-logo {
    display: block;
    width: auto;
    height: 70px;
    max-width: 320px;
}

/* =============================================
   MISC UTILITIES
   ============================================= */
.onas-intro-quote-box {
    background: #f3f3f1;
    padding: 56px 48px;
    border-left: 4px solid var(--cz-red-dark);
    min-height: 194px;
    display: flex;
    align-items: center;
}

.onas-intro-quote-text {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.85;
    color: var(--cz-black-soft);
    max-width: 540px;
}

.section-label-light {
    color: var(--cz-red) !important;
}

.onas-development-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.section-text-spaced {
    margin-top: 20px;
}

@media (max-width: 900px) {
    .onas-development-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.kontakt-meta-label {
    color: #888888;
    font-size: 0.85rem;
    margin-bottom: 4px;
    line-height: 1.5;
}

.kontakt-meta-label-spaced {
    margin-top: 16px;
}

.kontakt-value-link {
    color: var(--cz-red);
    font-weight: 600;
    transition: color 0.2s ease;
}

.kontakt-value-link:hover {
    color: var(--cz-red-hover);
}

.kontakt-nip-line {
    margin-top: 12px;
}

.kontakt-map-btn {
    margin-top: 24px;
    display: inline-block;
}

.btn-outline-light {
    background: transparent;
    color: var(--cz-white) !important;
    border: 2px solid var(--cz-red-dark);
}

.btn-outline-light:hover {
    background: var(--cz-red-dark);
    color: var(--cz-white);
    border-color: var(--cz-red-dark);
}

.about-strip-cta,
.technology-cta {
    margin-top: 32px;
}

.services-tiles {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2px;
    margin-top: 50px;
    background: #1f1f1f;
}

.service-tile {
    background: #000000;
    min-height: 138px;
    padding: 28px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    text-align: left;
}

.service-tile-icon {
    width: 26px;
    height: 26px;
    object-fit: contain;
    flex-shrink: 0;
}

.service-tile h3 {
    margin: 0;
    color: var(--cz-white);
    font-size: 0.82rem;
    font-weight: 600;
    line-height: 1.35;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-align: left;
    white-space: normal;
    word-break: keep-all;
    overflow-wrap: break-word;
    hyphens: none;
}

/* force stacked layout on tablet + smaller desktop */
@media (max-width: 1180px) {
    .services-tiles {
        grid-template-columns: 1fr !important;
    }

    .service-tile {
        min-height: 110px;
        justify-content: flex-start;
        padding: 30px 40px;
    }

    .service-tile h3 {
        max-width: none;
    }
}

/* mobile */
@media (max-width: 600px) {
    .service-tile {
        min-height: 96px;
        padding: 22px 20px;
    }

    .service-tile h3 {
        font-size: 0.78rem;
        line-height: 1.3;
    }
}

.kontakt-map-embed {
    margin-top: 40px;
    border: 1px solid var(--cz-gray-border);
    overflow: hidden;
}

.kontakt-map-embed iframe {
    display: block;
    width: 100%;
    max-width: 100%;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1100px) {
    .czystosc-gallery-cols-4 {
        grid-template-columns: repeat(3, 1fr);
    }
    .footer-columns {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }
    .footer-funding-inner {
        max-width: 100%;
    }
    .footer-funding-image img,
    .footer-funding-text {
        max-width: 100%;
    }
}

@media (max-width: 900px) {
    .main-nav {
        display: none;
    }
    .menu-toggle {
        display: flex;
    }
    .about-strip-inner,
    .technology-inner,
    .cta-band-inner,
    .onas-intro-inner,
    .onas-team-inner,
    .onas-environment-inner,
    .onas-research-inner,
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .services-grid {
        grid-template-columns: 1fr 1fr;
    }
    .kontakt-cards {
        grid-template-columns: 1fr;
    }
    .czystosc-gallery-cols-4,
    .czystosc-gallery-cols-3 {
        grid-template-columns: repeat(2, 1fr);
    }
    .oferta-services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .section {
        padding: 60px 24px;
    }
    .site-header {
        padding: 0 24px;
    }
}

@media (max-width: 768px) {
    .oferta-equipment-cols {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (max-width: 700px) {
    .site-footer {
        padding: 0 24px 32px;
    }
    .footer-funding {
        padding: 0 24px;
        margin-bottom: 40px;
    }
    .footer-funding-inner {
        padding: 18px 0;
    }
    .footer-funding-image {
        margin-bottom: 14px;
    }
    .footer-funding-text p {
        font-size: 11px;
        line-height: 1.6;
        word-break: break-word;
    }
    .footer-columns {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    .czystosc-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3px;
    }
    .footer-columns {
        grid-template-columns: 1fr;
    }
    .czystosc-pdf-grid {
        grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
    }
    .home-hero {
        padding: 100px 24px 60px;
    }
    .page-hero {
        padding: 110px 24px 60px;
    }
    .oferta-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* =============================================
   POLITYKA PRYWATNOŚCI PAGE
   ============================================= */
.privacy-section {
    padding: 80px 40px 100px;
    background: var(--cz-white);
}

.privacy-inner {
    max-width: 900px;
    margin: 0 auto;
}

/* Intro paragraph */
.privacy-intro {
    padding: 40px 48px;
    background: var(--cz-gray-light);
    border-left: 4px solid var(--cz-red-dark);
    margin-bottom: 64px;
}

.privacy-intro p {
    font-size: 1rem;
    line-height: 1.85;
    color: var(--cz-text);
    margin-bottom: 12px;
}

.privacy-intro p:last-child {
    margin-bottom: 0;
}

/* Numbered section blocks */
.privacy-block {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 32px;
    padding: 48px 0;
    border-bottom: 1px solid var(--cz-gray-border);
}

.privacy-block:last-of-type {
    border-bottom: none;
}

.privacy-block-num {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--cz-gray-mid);
    line-height: 1;
    letter-spacing: -0.02em;
    padding-top: 4px;
    user-select: none;
}

.privacy-block-body h2 {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--cz-red-dark);
    margin-bottom: 20px;
}

.privacy-block-body p {
    font-size: 0.97rem;
    line-height: 1.85;
    color: #444444;
    margin-bottom: 16px;
}

.privacy-block-body p:last-child {
    margin-bottom: 0;
}

.privacy-block-body ul {
    list-style: none;
    padding: 0;
    margin: 0 0 16px 0;
}

.privacy-block-body ul li {
    padding: 9px 0 9px 20px;
    border-bottom: 1px solid #f2f2f2;
    font-size: 0.95rem;
    line-height: 1.7;
    color: #444444;
    position: relative;
}

.privacy-block-body ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 18px;
    width: 6px;
    height: 6px;
    background: var(--cz-red-dark);
    border-radius: 50%;
}

.privacy-block-body ul li:last-child {
    border-bottom: none;
}

.privacy-block-body a {
    color: var(--cz-red-dark);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
}

.privacy-block-body a:hover {
    color: var(--cz-red-hover);
}

/* Company card inside block 01 */
.privacy-company-card {
    margin-top: 16px;
    padding: 24px 28px;
    background: var(--cz-gray-light);
    border-left: 3px solid var(--cz-red-dark);
}

.privacy-company-card p {
    font-size: 0.92rem !important;
    line-height: 1.7 !important;
    margin-bottom: 4px !important;
    color: var(--cz-text) !important;
}

.privacy-company-card a {
    color: var(--cz-red-dark);
    font-weight: 600;
    text-decoration: none;
}

/* CTA at the bottom */
.privacy-cta {
    margin-top: 72px;
    padding: 52px 48px;
    background: var(--cz-gray-light);
    text-align: center;
    border-top: 3px solid var(--cz-red-dark);
}

.privacy-cta p {
    font-size: 1rem;
    color: var(--cz-text-soft);
    margin-bottom: 28px;
    line-height: 1.7;
}

.privacy-cta .btn {
    margin: 0 8px;
}

/* Responsive */
@media (max-width: 700px) {
    .privacy-section {
        padding: 60px 24px 80px;
    }

    .privacy-intro {
        padding: 28px 24px;
        margin-bottom: 40px;
    }

    .privacy-block {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 36px 0;
    }

    .privacy-block-num {
        font-size: 1.6rem;
    }

    .privacy-cta {
        padding: 36px 24px;
    }

    .privacy-cta .btn {
        display: block;
        margin: 0 0 12px 0;
        text-align: center;
    }
}

/* Privacy policy link in footer */
.footer-privacy-link {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.8rem !important;
    color: rgba(255, 255, 255, 0.38) !important;
    letter-spacing: 0.04em;
    transition: color 0.2s ease !important;
}
.footer-privacy-link:hover {
    color: rgba(255, 255, 255, 0.72) !important;
}

.footer-socials {
    margin-top: 28px;
}

.footer-social-link {
    display: flex !important;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.72);
    transition: color 0.2s ease, transform 0.2s ease;
}

.footer-social-link:last-child {
    margin-bottom: 0;
}

.footer-social-link:hover {
    color: var(--cz-white);
    transform: translateX(2px);
}

.footer-social-icon {
    width: 30px;
    height: 30px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    color: var(--cz-white);
    background: rgba(255, 255, 255, 0.04);
    flex-shrink: 0;
}

.footer-socials {
    margin-top: 28px;
}

.footer-social-link {
    display: flex !important;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.72);
    transition: color 0.2s ease, transform 0.2s ease;
}

.footer-social-link:last-child {
    margin-bottom: 0;
}

.footer-social-link:hover {
    color: var(--cz-white);
    transform: translateX(2px);
}

.footer-social-svg {
    width: 18px;
    height: 18px;
    color: var(--cz-white);
    flex-shrink: 0;
}

.onas-socials {
    margin-top: 28px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px 16px;
}

.onas-socials-label {
    width: 100%;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--cz-red-dark);
    margin-bottom: 4px;
}

.onas-social-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border: 1px solid var(--cz-gray-border);
    background: var(--cz-white);
    color: var(--cz-black-soft);
    font-size: 0.92rem;
    font-weight: 500;
    transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.onas-social-link:hover {
    color: var(--cz-red-dark);
    border-color: var(--cz-red-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(139, 13, 22, 0.08);
}

.onas-social-svg {
    width: 18px;
    height: 18px;
    color: currentColor;
    flex-shrink: 0;
}

@media (max-width: 600px) {
    .onas-socials {
        align-items: stretch;
    }

    .onas-social-link {
        width: 100%;
        justify-content: center;
    }
}