/* =============================================
   ROOT — CSS Variables
============================================= */
:root {
    --szz-primary:     #1C2B3A;
    --szz-primary-rgb: 28,43,58;
    --szz-accent:      #C41E3A;
    --szz-accent-dark: #9E1830;
    --szz-green:       #4E7A5C;
    --szz-cream:       #F5F0E8;
    --szz-light:       #FAFAF8;
    --szz-dark:        #111820;
    --szz-text:        #2D2D2D;
    --szz-text-light:  #6B7280;
    --szz-muted:       #9CA3AF;
    --szz-white:       #FFFFFF;
    --szz-border:      #E5E0D8;
    --szz-radius:      8px;
    --szz-radius-lg:   16px;
    --szz-shadow:      0 4px 24px rgba(0,0,0,0.10);
    --szz-shadow-lg:   0 12px 48px rgba(0,0,0,0.16);
    --szz-transition:  all 0.3s ease;
    --szz-font-head:   'Montserrat', sans-serif;
    --szz-font-body:   'Inter', sans-serif;
    --szz-max:         1200px;
    --szz-h:           90px;
    --szz-h-sm:        70px;
    --szz-sec:         100px;
}

/* =============================================
   GOOGLE FONTS
============================================= */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&family=Inter:wght@300;400;500;600&display=swap');

/* =============================================
   RESET & BASE
============================================= */
/* Smooth scroll + scroll offset for sticky header */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--szz-h-sm); overflow-x: hidden; }
body { margin: 0; padding: 0; overflow-x: hidden; background: var(--szz-cream); color: var(--szz-primary); font-family: var(--szz-font-body); -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

.szz-hero, .szz-trust, .szz-about, .szz-params,
.szz-counters, .szz-gallery, .szz-location, .szz-standard,
.szz-developer, .szz-cta-banner, .szz-contact,
.szz-footer, .szz-preloader, .szz-header,
.szz-mobile-nav, .szz-floating, .szz-lightbox,
.szz-oferta, .szz-realizacje {
    box-sizing: border-box;
    font-family: var(--szz-font-body);
    color: var(--szz-text);
}
*, *::before, *::after { box-sizing: border-box; }

/* =============================================
   CONTAINER
============================================= */
.szz-container {
    max-width: var(--szz-max);
    margin: 0 auto;
    padding: 0 40px;
}

/* =============================================
   TYPOGRAPHY HELPERS
============================================= */
.szz-section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--szz-font-head);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--szz-accent);
    margin-bottom: 14px;
}
.szz-section-label::before {
    content: '';
    display: block;
    width: 28px;
    height: 2px;
    background: var(--szz-accent);
    border-radius: 1px;
    flex-shrink: 0;
}
.szz-section-title {
    font-family: var(--szz-font-head);
    font-size: clamp(26px, 3.5vw, 42px);
    font-weight: 800;
    color: var(--szz-primary);
    line-height: 1.12;
    margin: 0 0 18px;
    letter-spacing: -0.5px;
    position: relative;
}
.szz-section-header .szz-section-title::after {
    content: '';
    display: block;
    width: 48px;
    height: 3px;
    background: var(--szz-green);
    border-radius: 2px;
    margin: 16px auto 0;
}
.szz-section-desc {
    font-size: 16px;
    color: var(--szz-text-light);
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.75;
}
.szz-section-header {
    text-align: center;
    margin-bottom: 60px;
}
.szz-section-header .szz-section-label {
    justify-content: center;
}
.szz-section-header--light .szz-section-title,
.szz-section-header--light .szz-section-desc { color: var(--szz-white); }
.szz-section-header--light .szz-section-desc { opacity: 0.70; }
.szz-section-header--light .szz-section-label { color: rgba(196,30,58,0.85); }
.szz-section-header--light .szz-section-label::before { background: rgba(196,30,58,0.85); }

/* =============================================
   BUTTONS
============================================= */
.szz-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    border-radius: var(--szz-radius);
    font-family: var(--szz-font-head);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--szz-transition);
    white-space: nowrap;
}
.szz-btn-lg { padding: 16px 36px; font-size: 15px; }
.szz-btn-full { width: 100%; justify-content: center; }
.szz-btn-accent {
    background: var(--szz-accent);
    color: var(--szz-white);
    border-color: var(--szz-accent);
}
.szz-btn-accent:hover {
    background: var(--szz-accent-dark);
    border-color: var(--szz-accent-dark);
    color: var(--szz-white);
    box-shadow: 0 8px 24px rgba(196,30,58,0.30);
}
.szz-btn-outline {
    background: transparent;
    color: var(--szz-white);
    border-color: rgba(255,255,255,0.6);
}
.szz-btn-outline:hover {
    background: rgba(255,255,255,0.12);
    border-color: var(--szz-white);
    color: var(--szz-white);
}

/* =============================================
   PRELOADER
============================================= */
.szz-preloader {
    position: fixed;
    inset: 0;
    background: var(--szz-dark);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}
.szz-preloader.hidden { opacity: 0; visibility: hidden; }
.szz-preloader-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}
.szz-preloader-logo {
    width: 180px;
    height: auto;
    animation: szzLogoFade 0.8s ease;
    background: var(--szz-white);
    padding: 18px 28px;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.15);
}
.szz-preloader-bar {
    width: 200px;
    height: 3px;
    background: rgba(255,255,255,0.15);
    border-radius: 2px;
    overflow: hidden;
}
.szz-preloader-fill {
    height: 100%;
    background: var(--szz-accent);
    border-radius: 2px;
    animation: szzBarFill 1.2s ease-out forwards;
}
@keyframes szzLogoFade { from { opacity:0; transform:translateY(16px); } to { opacity:1; transform:none; } }
@keyframes szzBarFill { from { width:0; } to { width:100%; } }

/* =============================================
   HEADER
============================================= */
.szz-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    height: var(--szz-h);
    display: flex;
    align-items: center;
    background: var(--szz-white);
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
    transition: height 0.3s ease, box-shadow 0.3s ease;
}
.szz-header.scrolled {
    height: var(--szz-h-sm);
    box-shadow: 0 2px 20px rgba(0,0,0,0.10);
}
.szz-scroll-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: linear-gradient(90deg, var(--szz-green), var(--szz-accent));
    transition: width 0.1s linear;
    z-index: 1001;
    opacity: 0;
}
.szz-header.scrolled .szz-scroll-progress { opacity: 1; }
.szz-header-inner {
    max-width: var(--szz-max);
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 40px;
}
.szz-header-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    text-decoration: none;
}
.szz-header-logo img {
    height: 52px;
    width: auto;
    transition: var(--szz-transition);
}
.szz-header.scrolled .szz-header-logo img {
    height: 42px;
}
.szz-nav {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-left: auto;
}
.szz-nav-link {
    font-family: var(--szz-font-head);
    font-size: 14px;
    font-weight: 600;
    color: var(--szz-text);
    text-decoration: none;
    transition: var(--szz-transition);
    letter-spacing: 0.3px;
}
.szz-nav-link:hover { color: var(--szz-accent); }
.szz-nav-link.active { color: var(--szz-accent); }
.szz-nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0; right: 0;
    height: 2px;
    background: var(--szz-accent);
    border-radius: 2px;
}
.szz-nav-link {
    position: relative;
}
/* scrolled nav — same since header always white */
.szz-header-cta { margin-left: 16px; font-size: 13px; padding: 11px 22px; }
.szz-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    margin-left: auto;
}
.szz-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--szz-primary);
    transition: var(--szz-transition);
    border-radius: 2px;
}
.szz-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.szz-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.szz-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* MOBILE NAV */
.szz-mobile-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 999;
    background: var(--szz-dark);
    padding: 100px 40px 40px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transform: translateY(-110%);
    transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}
.szz-mobile-nav.open { transform: none; }
.szz-mobile-link {
    font-family: var(--szz-font-head);
    font-size: 20px;
    font-weight: 600;
    color: var(--szz-white);
    text-decoration: none;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.szz-mobile-link:last-of-type { border-bottom: none; }
.szz-mobile-cta { margin-top: 8px; }

/* =============================================
   COUNTERS
============================================= */
.szz-counters {
    background: var(--szz-cream);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
.szz-counters::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(78,122,92,0.06) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(196,30,58,0.04) 0%, transparent 50%);
    pointer-events: none;
}
.szz-counters-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px 48px;
    position: relative;
    z-index: 1;
}
.szz-counter-item {
    text-align: center;
    padding: 36px 24px;
    border-radius: var(--szz-radius-lg);
    background: var(--szz-white);
    border: 1px solid var(--szz-border);
    box-shadow: 0 2px 16px rgba(0,0,0,0.04);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}
.szz-counter-item:hover {
    border-color: var(--szz-green);
    box-shadow: 0 8px 32px rgba(78,122,92,0.12);
}
.szz-counter-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 20px;
    background: rgba(78,122,92,0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--szz-green);
    transition: var(--szz-transition);
}
.szz-counter-item:hover .szz-counter-icon {
    background: var(--szz-green);
    color: var(--szz-white);
    transform: scale(1.08);
}
.szz-counter-num {
    font-family: var(--szz-font-head);
    font-size: clamp(36px, 4vw, 48px);
    font-weight: 800;
    color: var(--szz-primary);
    line-height: 1;
    margin-bottom: 12px;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 6px;
}
.szz-counter-num small {
    font-size: 16px;
    font-weight: 600;
    color: var(--szz-text-light);
    letter-spacing: 0.5px;
}
.szz-counter-item p {
    font-size: 13px;
    color: var(--szz-text-light);
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

/* =============================================
   HERO
============================================= */
.szz-hero {
    position: relative;
    min-height: 100vh;
    background-size: cover;
    background-position: center top;
    background-attachment: scroll; /* fixed crashes iOS Safari */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--szz-h) 40px 100px;
}
.szz-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
        rgba(17,24,32,0.72) 0%,
        rgba(17,24,32,0.55) 50%,
        rgba(17,24,32,0.80) 100%);
}
.szz-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    width: 100%;
}
/* Hero entrance animations */
.szz-hero-badge,
.szz-hero-title,
.szz-hero-subtitle,
.szz-hero-stats,
.szz-hero-btns {
    opacity: 0;
    transform: translateY(30px);
}
.szz-hero.loaded .szz-hero-badge   { animation: szzHeroIn 0.8s ease forwards 0.3s; }
.szz-hero.loaded .szz-hero-title   { animation: szzHeroIn 0.8s ease forwards 0.5s; }
.szz-hero.loaded .szz-hero-subtitle { animation: szzHeroIn 0.8s ease forwards 0.7s; }
.szz-hero.loaded .szz-hero-stats   { animation: szzHeroIn 0.8s ease forwards 0.9s; }
.szz-hero.loaded .szz-hero-btns    { animation: szzHeroIn 0.8s ease forwards 1.1s; }
@keyframes szzHeroIn {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

.szz-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.25);
    color: rgba(255,255,255,0.9);
    font-family: var(--szz-font-head);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 8px 18px;
    border-radius: 100px;
    margin-bottom: 28px;
}
.szz-hero-title {
    font-family: var(--szz-font-head);
    font-size: clamp(48px, 8vw, 88px);
    font-weight: 800;
    color: var(--szz-white);
    line-height: 1.0;
    margin: 0 0 24px;
    letter-spacing: -1px;
}
.szz-hero-title span {
    color: var(--szz-accent);
    display: inline-block;
    position: relative;
}
.szz-hero-subtitle {
    font-size: 20px;
    color: rgba(255,255,255,0.82);
    margin: 0 0 40px;
    line-height: 1.6;
    font-weight: 300;
}
.szz-hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--szz-radius-lg);
    padding: 20px 40px;
    margin-bottom: 40px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}
.szz-hero-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 32px;
}
.szz-hero-stat strong {
    font-family: var(--szz-font-head);
    font-size: 22px;
    font-weight: 700;
    color: var(--szz-white);
    display: block;
}
.szz-hero-stat span {
    font-size: 12px;
    color: rgba(255,255,255,0.65);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
    display: block;
}
.szz-hero-stat-divider {
    width: 1px;
    height: 48px;
    background: rgba(255,255,255,0.2);
}
.szz-hero-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}
.szz-hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    background: none;
    border: 2px solid rgba(255,255,255,0.4);
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    cursor: pointer;
    animation: szzBounce 2s infinite;
    z-index: 2;
    transition: var(--szz-transition);
}
.szz-hero-scroll:hover { border-color: var(--szz-white); color: var(--szz-white); }
@keyframes szzBounce {
    0%,100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(6px); }
}

/* =============================================
   TRUST BAR
============================================= */
.szz-trust {
    background: var(--szz-white);
    padding: 0;
    position: relative;
    z-index: 2;
    margin-top: -48px;
}
.szz-trust-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 0;
    background: var(--szz-white);
    border-radius: var(--szz-radius-lg);
    box-shadow: 0 8px 40px rgba(0,0,0,0.10);
    overflow: hidden;
}
.szz-trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 28px 16px;
    border-right: 1px solid var(--szz-border);
    transition: var(--szz-transition);
    gap: 4px;
}
.szz-trust-item:hover { background: var(--szz-cream); }
.szz-trust-item:last-child { border-right: none; }
.szz-trust-item strong {
    font-family: var(--szz-font-head);
    font-size: 20px;
    font-weight: 800;
    color: var(--szz-primary);
    line-height: 1.2;
}
.szz-trust-item span {
    font-size: 12px;
    color: var(--szz-text-light);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    line-height: 1.3;
}

/* =============================================
   O INWESTYCJI
============================================= */
.szz-about {
    padding: var(--szz-sec) 0;
    padding-top: calc(var(--szz-sec) + 32px);
    background: var(--szz-cream);
}
.szz-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.szz-about-lead {
    font-size: 19px;
    font-weight: 500;
    color: var(--szz-primary);
    line-height: 1.7;
    margin-bottom: 20px;
}
.szz-about-text {
    font-size: 16px;
    color: var(--szz-text);
    line-height: 1.8;
    margin-bottom: 16px;
}
.szz-about-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 28px;
}
.szz-tag {
    background: var(--szz-white);
    border: 1px solid var(--szz-border);
    color: var(--szz-primary);
    font-family: var(--szz-font-head);
    font-size: 12px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 100px;
    letter-spacing: 0.5px;
}
.szz-about-image {
    position: relative;
    border-radius: var(--szz-radius-lg);
    overflow: visible;
}
.szz-about-image::before {
    content: '';
    position: absolute;
    top: -16px;
    right: -16px;
    width: 120px;
    height: 120px;
    background-image: radial-gradient(var(--szz-green) 1.5px, transparent 1.5px);
    background-size: 12px 12px;
    opacity: 0.25;
    border-radius: var(--szz-radius);
    z-index: -1;
    pointer-events: none;
}
.szz-about-image img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: var(--szz-radius-lg);
    box-shadow: var(--szz-shadow-lg);
    display: block;
}
.szz-about-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--szz-white);
    border-radius: var(--szz-radius);
    padding: 16px 24px;
    box-shadow: var(--szz-shadow);
    animation: szzBadgeFloat 3.5s ease-in-out infinite;
}
@keyframes szzBadgeFloat {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-8px); }
}
.szz-about-badge strong {
    display: block;
    font-family: var(--szz-font-head);
    font-size: 16px;
    font-weight: 700;
    color: var(--szz-primary);
}
.szz-about-badge span {
    font-size: 13px;
    color: var(--szz-text-light);
}

/* =============================================
   PARAMETRY
============================================= */
.szz-params {
    padding: var(--szz-sec) 0;
    background: var(--szz-light);
}
.szz-params-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 28px;
    margin-bottom: 48px;
}
.szz-param-card {
    background: var(--szz-white);
    border-radius: var(--szz-radius-lg);
    padding: 36px 32px;
    border: 2px solid var(--szz-border);
    transition: var(--szz-transition);
}
.szz-param-card:hover { border-color: var(--szz-green); box-shadow: 0 12px 40px rgba(0,0,0,0.10); }
.szz-param-card--featured {
    background: var(--szz-primary);
    border-color: var(--szz-primary);
    color: var(--szz-white);
    position: relative;
    overflow: hidden;
}
.szz-param-card--featured::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle at 100% 0%, rgba(196,30,58,0.15) 0%, transparent 70%);
    pointer-events: none;
}
.szz-param-card--featured:hover { border-color: var(--szz-accent); box-shadow: 0 16px 48px rgba(28,43,58,0.25); }
.szz-param-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0,0,0,0.08);
}
.szz-param-card--featured .szz-param-header { border-bottom-color: rgba(255,255,255,0.15); }
.szz-param-icon {
    width: 52px;
    height: 52px;
    background: var(--szz-cream);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--szz-primary);
    flex-shrink: 0;
}
.szz-param-card--featured .szz-param-icon {
    background: rgba(255,255,255,0.12);
    color: var(--szz-accent);
}
.szz-param-level {
    font-family: var(--szz-font-head);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--szz-text-light);
}
.szz-param-card--featured .szz-param-level { color: rgba(255,255,255,0.60); }
.szz-param-size {
    font-family: var(--szz-font-head);
    font-size: 26px;
    font-weight: 800;
    color: var(--szz-primary);
}
.szz-param-card--featured .szz-param-size { color: var(--szz-white); }
.szz-param-list {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    display: flex;
    flex-direction: column;
    gap: 11px;
}
.szz-param-list li {
    list-style: none !important;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    line-height: 1.5;
    color: var(--szz-text);
}
.szz-param-card--featured .szz-param-list li { color: rgba(255,255,255,0.85); }
.szz-param-list li svg {
    flex-shrink: 0;
    color: var(--szz-green);
    margin-top: 2px;
}
.szz-param-card--featured .szz-param-list li svg { color: var(--szz-accent); }

/* SUMMARY */
.szz-params-summary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    background: var(--szz-primary);
    border-radius: var(--szz-radius-lg);
    padding: 28px 32px;
}
.szz-summary-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 32px;
    white-space: nowrap;
    flex-shrink: 0;
}
.szz-summary-item strong {
    font-family: var(--szz-font-head);
    font-size: 22px;
    font-weight: 800;
    color: var(--szz-white);
    white-space: nowrap;
}
.szz-summary-item span {
    font-size: 12px;
    color: rgba(255,255,255,0.50);
    margin-top: 4px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}
.szz-summary-divider {
    width: 1px;
    height: 44px;
    background: rgba(255,255,255,0.15);
    flex-shrink: 0;
}

/* =============================================
   OFERTA — WYKAZ LOKALI (premium)
============================================= */
.szz-oferta {
    padding: var(--szz-sec) 0;
    background: var(--szz-white);
}

/* PZT download link */
.szz-pzt-wrap {
    margin-top: 36px;
    text-align: center;
}
.szz-pzt-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--szz-cream) 0%, #eae5db 100%);
    border: 2px solid var(--szz-border);
    border-radius: var(--szz-radius);
    color: var(--szz-primary) !important;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.szz-pzt-link:hover {
    background: var(--szz-green);
    border-color: var(--szz-green);
    color: var(--szz-white) !important;
    box-shadow: 0 6px 20px rgba(78,122,92,0.3);
}
.szz-pzt-link small {
    display: inline-block;
    padding: 3px 10px;
    background: var(--szz-accent);
    color: var(--szz-white);
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.szz-pzt-link:hover small { background: rgba(255,255,255,0.25); }

/* Table container */
.szz-oferta-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-top: 28px;
    border-radius: 12px;
    border: 1px solid var(--szz-border);
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}

/* Table base */
.szz-oferta-table {
    width: 100%;
    border-collapse: collapse;
    font-family: var(--szz-font-body);
    font-size: 15px;
    color: var(--szz-text);
}

/* THEAD — bulletproof Divi override (body prefix + !important) */
body .szz-oferta-table thead,
body #main-content .szz-oferta-table thead {
    background: var(--szz-primary) !important;
    border-bottom: 3px solid var(--szz-accent);
}
body .szz-oferta-table thead th,
body #main-content .szz-oferta-table thead th {
    padding: 18px 22px;
    text-align: left;
    font-family: var(--szz-font-head);
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ffffff !important;
    background: transparent !important;
    border: none !important;
    border-bottom: none !important;
    white-space: nowrap;
}

/* Table body */
body .szz-oferta-table td {
    padding: 18px 22px;
    border-bottom: 1px solid #f0ede8;
    vertical-align: middle;
    color: var(--szz-text) !important;
    background: transparent !important;
}
body .szz-oferta-table tbody tr:last-child td { border-bottom: none; }
body .szz-oferta-table tbody tr {
    transition: background 0.3s ease;
    position: relative;
}
body .szz-oferta-table tbody tr::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--szz-green);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 0 2px 2px 0;
}
body .szz-oferta-table tbody tr:hover {
    background: rgba(78,122,92,0.04) !important;
}
body .szz-oferta-table tbody tr:hover::after {
    opacity: 1;
}

/* Lokal name */
.szz-oferta-table td:first-child strong {
    font-family: var(--szz-font-head);
    font-size: 16px;
    color: var(--szz-primary) !important;
}

/* Price */
.szz-oferta-cena {
    font-family: var(--szz-font-head) !important;
    font-weight: 700 !important;
    font-size: 17px !important;
    color: var(--szz-primary) !important;
    white-space: nowrap;
}

/* Status badges */
.szz-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 16px;
    border-radius: 24px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    white-space: nowrap;
}
.szz-status--wolny {
    background: #dcfce7;
    color: #15803d !important;
}
.szz-status--wolny::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #15803d;
    box-shadow: 0 0 0 0 rgba(21,128,61,0.5);
    animation: szzPulse 2s ease-in-out infinite;
}
@keyframes szzPulse {
    0% { box-shadow: 0 0 0 0 rgba(21,128,61,0.5); }
    50% { box-shadow: 0 0 0 6px rgba(21,128,61,0); }
    100% { box-shadow: 0 0 0 0 rgba(21,128,61,0); }
}
.szz-status--rezerwacja {
    background: #fef3c7;
    color: #b45309 !important;
}
.szz-status--sprzedany {
    background: #fee2e2;
    color: #dc2626 !important;
}

/* CTA button */
.szz-oferta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    background: var(--szz-accent);
    color: #ffffff !important;
    border-radius: var(--szz-radius);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none !important;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(196,30,58,0.2);
}
.szz-oferta-btn:hover {
    background: #a31830;
    color: #ffffff !important;
    box-shadow: 0 4px 16px rgba(196,30,58,0.35);
}
.szz-oferta-btn--disabled {
    background: #e5e7eb !important;
    color: #9ca3af !important;
    pointer-events: none;
    box-shadow: none;
}

/* Reservation row */
body .szz-oferta-row--rezerwacja {
    background: #fffbeb !important;
}
body .szz-oferta-row--rezerwacja td {
    opacity: 0.7;
}
body .szz-oferta-row--rezerwacja td .szz-status,
body .szz-oferta-row--rezerwacja td .szz-pdf-link,
body .szz-oferta-row--rezerwacja td .szz-oferta-btn--disabled { opacity: 1; }
body .szz-oferta-row--rezerwacja::after {
    background: #f59e0b;
}

/* PDF download link — prominent pill button */
body .szz-pdf-link,
body a.szz-pdf-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    min-height: 38px;
    background: rgba(78,122,92,0.1);
    border: 1.5px solid rgba(78,122,92,0.25) !important;
    border-radius: 8px;
    color: var(--szz-green) !important;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    cursor: pointer;
}
body .szz-pdf-link:hover,
body a.szz-pdf-link:hover {
    background: var(--szz-green) !important;
    border-color: var(--szz-green) !important;
    color: #ffffff !important;
    box-shadow: 0 4px 16px rgba(78,122,92,0.25);
}
body .szz-pdf-link:hover svg { stroke: #ffffff; }
.szz-pdf-link svg { flex-shrink: 0; transition: stroke 0.3s ease; }

/* Note */
.szz-oferta-note {
    margin-top: 24px;
    font-size: 13px;
    color: var(--szz-muted);
    text-align: center;
    line-height: 1.6;
}

/* =============================================
   REALIZACJE — GRID SZACHOWNICA
============================================= */
.szz-realizacje {
    padding: var(--szz-sec) 0;
    background: var(--szz-cream);
}
.szz-realizacje-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}
.szz-realizacja-item {
    border-radius: var(--szz-radius);
    overflow: hidden;
    background: var(--szz-white);
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
    transition: box-shadow 0.3s ease;
    cursor: zoom-in;
}
.szz-realizacja-item:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}
.szz-realizacja-img {
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
}
.szz-realizacja-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.szz-realizacja-item:hover .szz-realizacja-img img {
    transform: scale(1.05);
}
.szz-realizacja-info {
    padding: 16px 20px;
}
.szz-realizacja-info strong {
    display: block;
    font-family: var(--szz-font-head);
    font-size: 15px;
    font-weight: 600;
    color: var(--szz-primary);
}
.szz-realizacja-info span {
    display: block;
    font-size: 13px;
    color: var(--szz-muted);
    margin-top: 2px;
}

/* =============================================
   GALERIA
============================================= */
.szz-gallery {
    padding: var(--szz-sec) 0;
    background: var(--szz-dark);
}
.szz-gallery .szz-section-label { color: rgba(196,30,58,0.9); }
.szz-gallery .szz-section-title { color: var(--szz-white); }
.szz-gallery-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 16px;
}
.szz-gallery-item {
    position: relative;
    border-radius: var(--szz-radius);
    overflow: hidden;
    cursor: zoom-in;
}
.szz-gallery-item:focus-within { outline: 3px solid var(--szz-accent); outline-offset: 3px; }
.szz-gallery-item--wide {
    grid-column: span 2;
}
.szz-gallery-item img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}
.szz-gallery-item--wide img { height: 440px; }
.szz-gallery-item:hover img { transform: scale(1.04); }
.szz-gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(17,24,32,0.7) 0%, rgba(17,24,32,0.1) 50%, transparent 100%);
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 20px;
    opacity: 0;
    transition: var(--szz-transition);
}
.szz-gallery-item:hover .szz-gallery-overlay { opacity: 1; }
.szz-gallery-btn {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 8px;
    color: var(--szz-white);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--szz-transition);
}
.szz-gallery-btn:hover { background: var(--szz-accent); border-color: var(--szz-accent); }
.szz-gallery-caption {
    font-family: var(--szz-font-head);
    font-size: 14px;
    font-weight: 600;
    color: var(--szz-white);
    line-height: 1.4;
    text-shadow: 0 1px 4px rgba(0,0,0,0.4);
    transform: translateY(8px);
    transition: transform 0.35s ease, opacity 0.35s ease;
    opacity: 0;
    flex: 1;
}
.szz-gallery-item:hover .szz-gallery-caption {
    opacity: 1;
    transform: translateY(0);
}

/* LIGHTBOX */
.szz-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.95);
    z-index: 9000;
    display: none;
    align-items: center;
    justify-content: center;
}
.szz-lightbox.active { display: flex; }
.szz-lightbox-img-wrap {
    max-width: 90vw;
    max-height: 85vh;
}
.szz-lightbox-img-wrap img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 4px;
    display: block;
}
.szz-lightbox-close {
    position: fixed;
    top: 20px; right: 24px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 8px;
    color: white;
    width: 44px; height: 44px;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    transition: var(--szz-transition);
    z-index: 9001;
}
.szz-lightbox-close:hover { background: var(--szz-accent); }
.szz-lightbox-prev, .szz-lightbox-next {
    position: fixed;
    top: 50%; transform: translateY(-50%);
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 8px;
    color: white;
    width: 52px; height: 52px;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    transition: var(--szz-transition);
    z-index: 9001;
}
.szz-lightbox-prev { left: 20px; }
.szz-lightbox-next { right: 20px; }
.szz-lightbox-prev:hover, .szz-lightbox-next:hover { background: var(--szz-accent); }
.szz-lightbox-bottom {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    z-index: 9001;
    max-width: 80%;
}
.szz-lightbox-caption {
    color: var(--szz-white);
    font-family: var(--szz-font-head);
    font-size: 15px;
    font-weight: 600;
    text-align: center;
    text-shadow: 0 1px 4px rgba(0,0,0,0.5);
    line-height: 1.4;
}
.szz-lightbox-caption:empty { display: none; }
.szz-lightbox-counter {
    color: rgba(255,255,255,0.6);
    font-family: var(--szz-font-head);
    font-size: 13px;
}

/* =============================================
   LOKALIZACJA
============================================= */
.szz-location {
    padding: var(--szz-sec) 0;
    background: var(--szz-cream);
}
.szz-location-grid {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 72px;
    align-items: stretch;
}
.szz-location-desc {
    font-size: 16px;
    color: var(--szz-text);
    line-height: 1.8;
    margin-bottom: 36px;
}
.szz-location-items {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.szz-location-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 10px;
    margin: -10px;
    border-radius: var(--szz-radius);
    transition: var(--szz-transition);
}
.szz-location-item:hover {
    background: rgba(78,122,92,0.05);
}
.szz-location-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--szz-transition);
}
.szz-location-item:hover .szz-location-icon {
    transform: scale(1.1);
}
.szz-location-icon--primary { background: rgba(28,43,58,0.08); color: var(--szz-primary); }
.szz-location-icon--green { background: rgba(78,122,92,0.10); color: var(--szz-green); }
.szz-location-item strong {
    display: block;
    font-family: var(--szz-font-head);
    font-size: 16px;
    font-weight: 700;
    color: var(--szz-primary);
    margin-bottom: 3px;
}
.szz-location-item span {
    font-size: 14px;
    color: var(--szz-text-light);
    line-height: 1.4;
}
.szz-location-map {
    min-height: 580px;
    height: 100%;
    border-radius: var(--szz-radius-lg);
    overflow: hidden;
    box-shadow: var(--szz-shadow-lg);
    position: relative;
}
.szz-location-map iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 580px;
    position: absolute;
    inset: 0;
}

/* =============================================
   STANDARD WYKOŃCZENIA
============================================= */
.szz-standard {
    padding: var(--szz-sec) 0;
    background: var(--szz-light);
}
.szz-standard-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 32px;
}
.szz-standard-category {
    background: var(--szz-white);
    border-radius: var(--szz-radius-lg);
    padding: 32px;
    border: 1px solid var(--szz-border);
    border-top: 3px solid var(--szz-green);
    transition: var(--szz-transition);
}
.szz-standard-category:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,0.07);
}
.szz-standard-cat-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--szz-font-head);
    font-size: 16px;
    font-weight: 700;
    color: var(--szz-primary);
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--szz-cream);
}
.szz-standard-cat-title svg { color: var(--szz-accent); }
.szz-standard-list {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    display: flex;
    flex-direction: column;
    gap: 9px;
}
.szz-standard-list li {
    list-style: none !important;
    font-size: 14px;
    color: var(--szz-text);
    padding-left: 18px;
    position: relative;
    line-height: 1.55;
}
.szz-standard-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    width: 6px;
    height: 6px;
    background: var(--szz-green);
    border-radius: 50%;
    display: block;
}
.szz-standard-note {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: rgba(28,43,58,0.05);
    border: 1px solid var(--szz-border);
    border-left: 3px solid var(--szz-accent);
    border-radius: 0 var(--szz-radius) var(--szz-radius) 0;
    padding: 16px 20px;
    font-size: 14px;
    color: var(--szz-text-light);
    margin-top: 32px;
}
.szz-standard-note svg { flex-shrink: 0; color: var(--szz-accent); margin-top: 1px; }

/* =============================================
   O DEWELOPERZE
============================================= */
.szz-developer {
    padding: var(--szz-sec) 0;
    background: var(--szz-cream);
}
.szz-developer-inner {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 80px;
    align-items: center;
    background: var(--szz-white);
    border-radius: var(--szz-radius-lg);
    padding: 60px;
    box-shadow: var(--szz-shadow);
}
.szz-developer-logo img {
    width: 200px;
    height: auto;
}
.szz-developer-title {
    font-family: var(--szz-font-head);
    font-size: 32px;
    font-weight: 800;
    color: var(--szz-primary);
    margin: 8px 0 20px;
}
.szz-developer-content p {
    font-size: 16px;
    color: var(--szz-text);
    line-height: 1.8;
    margin-bottom: 14px;
}
.szz-developer-stats {
    display: flex;
    gap: 40px;
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid var(--szz-border);
}
.szz-dev-stat strong {
    display: block;
    font-family: var(--szz-font-head);
    font-size: 16px;
    font-weight: 700;
    color: var(--szz-primary);
    margin-bottom: 4px;
}
.szz-dev-stat span {
    font-size: 13px;
    color: var(--szz-text-light);
}

/* =============================================
   CTA BANNER
============================================= */
.szz-cta-banner {
    background: linear-gradient(135deg, var(--szz-accent) 0%, #A01830 50%, var(--szz-primary) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
.szz-cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M54.627 0l.83.828-1.415 1.415L51.8 0h2.827zM5.373 0l-.83.828L5.96 2.243 8.2 0H5.374zM48.97 0l3.657 3.657-1.414 1.414L46.143 0h2.828zM11.03 0L7.372 3.657 8.787 5.07 13.857 0H11.03zm32.284 0L49.8 6.485 48.384 7.9l-7.9-7.9h2.83zM16.686 0L10.2 6.485 11.616 7.9l7.9-7.9h-2.83zM22.344 0L13.858 8.485 15.272 9.9l9.9-9.9h-2.828zM27.657 0L17.57 10.09l1.414 1.414L29.485 1l-.828-.83L27.657 0z' fill='%23FFFFFF' fill-opacity='0.04' fill-rule='evenodd'/%3E%3C/svg%3E");
    pointer-events: none;
}
.szz-cta-banner-inner {
    text-align: center;
    position: relative;
    z-index: 1;
}
.szz-cta-banner h2 {
    font-family: var(--szz-font-head);
    font-size: 36px;
    font-weight: 800;
    color: var(--szz-white);
    margin-bottom: 16px;
}
.szz-cta-banner p {
    font-size: 18px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 32px;
}
.szz-cta-banner .szz-btn-accent {
    background: var(--szz-white);
    color: var(--szz-accent);
    border-color: var(--szz-white);
}
.szz-cta-banner .szz-btn-accent:hover {
    background: var(--szz-primary);
    color: var(--szz-white);
    border-color: var(--szz-primary);
    box-shadow: none;
}

/* =============================================
   KONTAKT
============================================= */
.szz-contact {
    padding: var(--szz-sec) 0;
    background: var(--szz-dark);
}
.szz-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 80px;
    align-items: start;
}
.szz-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}
.szz-contact-item:last-of-type { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.szz-contact-icon {
    width: 44px; height: 44px;
    background: rgba(255,255,255,0.06);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: var(--szz-accent);
    flex-shrink: 0;
    transition: var(--szz-transition);
}
.szz-contact-item:hover .szz-contact-icon {
    background: var(--szz-accent);
    color: var(--szz-white);
    transform: scale(1.06);
}
.szz-contact-item strong {
    display: block;
    font-family: var(--szz-font-head);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255,255,255,0.45);
    margin-bottom: 4px;
}
.szz-contact-item a, .szz-contact-item span {
    font-size: 16px;
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    line-height: 1.5;
}
.szz-contact-item a:hover { color: var(--szz-accent); }
.szz-contact-website {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--szz-accent) !important;
    font-size: 14px !important;
    font-family: var(--szz-font-head);
    font-weight: 600;
    margin-top: 12px;
    text-decoration: none;
    transition: var(--szz-transition);
}
.szz-contact-website:hover { opacity: 0.8; }

/* FORM */
.szz-contact-form-wrap {
    background: var(--szz-white);
    border-radius: var(--szz-radius-lg);
    padding: 44px;
}
.szz-form-title {
    font-family: var(--szz-font-head);
    font-size: 22px;
    font-weight: 700;
    color: var(--szz-primary);
    margin-bottom: 28px;
}
.szz-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.szz-form-group {
    margin-bottom: 16px;
}
.szz-form-group label {
    display: block;
    font-family: var(--szz-font-head);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--szz-text-light);
    margin-bottom: 8px;
}
.szz-form-group input, .szz-form-group textarea {
    width: 100%;
    padding: 13px 16px;
    border: 1.5px solid var(--szz-border);
    border-radius: var(--szz-radius);
    font-family: var(--szz-font-body);
    font-size: 15px;
    color: var(--szz-text);
    background: var(--szz-light);
    transition: var(--szz-transition);
    outline: none;
}
.szz-form-group input:focus, .szz-form-group textarea:focus {
    border-color: var(--szz-primary);
    background: var(--szz-white);
    box-shadow: 0 0 0 3px rgba(28,43,58,0.08);
}
.szz-form-group textarea { resize: vertical; min-height: 100px; }
.szz-form-group--check label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    text-transform: none;
    letter-spacing: 0;
    font-size: 13px;
    font-weight: 400;
    color: var(--szz-text-light);
    cursor: pointer;
    line-height: 1.5;
}
.szz-form-group--check input[type="checkbox"] {
    width: 18px; height: 18px;
    flex-shrink: 0;
    accent-color: var(--szz-primary);
}
.szz-form-success {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #dcfce7;
    color: #15803d;
    border-radius: var(--szz-radius);
    padding: 16px 20px;
    font-family: var(--szz-font-head);
    font-weight: 600;
    font-size: 15px;
    margin-top: 16px;
}
.szz-form-error {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fef2f2;
    color: #dc2626;
    border-radius: var(--szz-radius);
    padding: 16px 20px;
    font-family: var(--szz-font-head);
    font-weight: 500;
    font-size: 15px;
    margin-top: 8px;
}
.szz-form-error svg { flex-shrink: 0; }

/* =============================================
   FOOTER
============================================= */
.szz-footer {
    background: #0A1018;
    padding: 60px 0 0;
}
.szz-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}
/* footer logo transparent — na bardzo ciemnym tle wystarczy jasność */
.szz-footer-logo {
    height: 44px;
    width: auto;
    margin-bottom: 20px;
    display: block;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}
.szz-footer-brand p {
    font-size: 14px;
    color: rgba(255,255,255,0.45);
    line-height: 1.7;
    max-width: 300px;
}
.szz-footer-col h4 {
    font-family: var(--szz-font-head);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.35);
    margin-bottom: 16px;
}
.szz-footer-col a, .szz-footer-col span {
    display: block;
    font-size: 14px;
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    margin-bottom: 8px;
    transition: var(--szz-transition);
    line-height: 1.5;
}
.szz-footer-col a:hover { color: var(--szz-accent); }
.szz-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    font-size: 13px;
    color: rgba(255,255,255,0.30);
}
.szz-footer-bottom a { color: rgba(255,255,255,0.45); text-decoration: none; }
.szz-footer-bottom a:hover { color: var(--szz-accent); }

/* =============================================
   FLOATING
============================================= */
.szz-floating {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 800;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
}
.szz-float-phone {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--szz-accent);
    color: var(--szz-white);
    text-decoration: none;
    padding: 14px 22px;
    border-radius: 100px;
    font-family: var(--szz-font-head);
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 6px 24px rgba(196,30,58,0.35);
    transition: var(--szz-transition);
}
.szz-float-phone:hover { box-shadow: 0 10px 32px rgba(196,30,58,0.45); background: var(--szz-accent-dark); color: var(--szz-white); animation: none; }
.szz-float-phone { animation: szzPhonePulse 2.5s infinite; }
@keyframes szzPhonePulse {
    0%   { box-shadow: 0 6px 24px rgba(196,30,58,0.35); }
    50%  { box-shadow: 0 6px 24px rgba(196,30,58,0.35), 0 0 0 10px rgba(196,30,58,0.12); }
    100% { box-shadow: 0 6px 24px rgba(196,30,58,0.35), 0 0 0 20px rgba(196,30,58,0); }
}
.szz-float-top {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--szz-primary);
    border: none;
    color: var(--szz-white);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    transition: var(--szz-transition);
    box-shadow: var(--szz-shadow);
}
.szz-float-top:hover { background: var(--szz-accent); box-shadow: 0 4px 16px rgba(196,30,58,0.3); }

/* =============================================
   SCROLL ANIMATIONS
============================================= */
/* Scroll animations — show immediately, animate on scroll-in */
[data-anim] {
    opacity: 1;
    transform: none;
}
/* Only animate if JS has set up observers (adds class to body) */
body.szz-anim-ready [data-anim]:not(.visible) {
    opacity: 0;
    transition: opacity 0.7s ease, transform 0.7s ease;
}
body.szz-anim-ready [data-anim="fade-up"]:not(.visible) { transform: translateY(40px); }
body.szz-anim-ready [data-anim="fade-right"]:not(.visible) { transform: translateX(-40px); }
body.szz-anim-ready [data-anim="fade-left"]:not(.visible) { transform: translateX(40px); }
[data-anim].visible { opacity: 1 !important; transform: none !important; }

/* =============================================
   RESPONSIVE — TABLET (980px)
============================================= */
@media (max-width: 980px) {
    :root { --szz-sec: 80px; }
    .szz-container { padding: 0 24px; }
    .szz-header-inner { padding: 0 24px; }
    .szz-nav, .szz-header-cta { display: none; }
    .szz-hamburger { display: flex; }

    /* Counters: 2 kol na tablecie */
    .szz-counters-grid { grid-template-columns: repeat(2, 1fr); gap: 20px 24px; }
    .szz-counter-item { padding: 28px 20px; }

    .szz-trust { margin-top: -32px; }
    .szz-trust-grid { grid-template-columns: repeat(2,1fr); }
    .szz-trust-item { border-right: none; border-bottom: 1px solid var(--szz-border); padding: 20px 16px; }
    .szz-trust-item:nth-child(odd) { border-right: 1px solid var(--szz-border); }
    .szz-trust-item:nth-last-child(-n+2) { border-bottom: none; }
    .szz-trust-item strong { font-size: 18px; }

    .szz-about-grid { grid-template-columns: 1fr; gap: 40px; }
    .szz-about-image img { height: 380px; }
    .szz-about-badge { bottom: -16px; left: 16px; }

    /* Params: 2 kol + 1 osobno na środku */
    .szz-params-grid { grid-template-columns: 1fr 1fr; }
    .szz-param-card:last-child { grid-column: span 2; max-width: 460px; margin: 0 auto; width: 100%; }
    .szz-params-summary { flex-wrap: wrap; gap: 20px 0; padding: 28px 20px; justify-content: space-around; }
    .szz-summary-divider { display: none; }
    .szz-summary-item { width: 45%; padding: 8px 0; white-space: normal; }
    .szz-summary-item strong { font-size: 20px; }
    .szz-summary-item span { white-space: normal; }

    .szz-gallery-grid { grid-template-columns: 1fr 1fr; }
    .szz-gallery-item--wide { grid-column: span 2; }
    .szz-gallery-item img { height: 280px; }

    .szz-location-grid { grid-template-columns: 1fr; gap: 40px; }
    .szz-location-map { height: 420px; min-height: 420px; }
    .szz-location-map iframe { min-height: 420px; }

    .szz-standard-grid { grid-template-columns: 1fr; }
    .szz-developer-inner { grid-template-columns: 1fr; gap: 40px; padding: 40px; }
    .szz-developer-logo { text-align: center; }
    .szz-contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .szz-footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .szz-footer-brand { grid-column: span 2; }

    .szz-hero-stats {
        flex-wrap: wrap;
        padding: 16px 20px;
        gap: 0;
    }
    .szz-hero-stat { padding: 8px 16px; }
    .szz-hero-stat strong { font-size: 18px; }
    .szz-hero-stat-divider { height: 36px; }

    /* Oferta: tablet */
    body .szz-oferta-table thead th { padding: 14px 14px; font-size: 11px; color: #ffffff !important; }
    body .szz-oferta-table td { padding: 14px 14px; font-size: 14px; }
    body .szz-oferta-table th:nth-child(3), body .szz-oferta-table td:nth-child(3) { display: none; }
    .szz-oferta-cena { font-size: 15px !important; }
    body .szz-pdf-link { padding: 6px 12px; font-size: 11px; }
    .szz-oferta-btn { padding: 8px 16px; font-size: 12px; }
    .szz-pzt-link { font-size: 14px; padding: 12px 22px; }

    /* Realizacje: 2 kolumny na tablecie */
    .szz-realizacje-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}

/* =============================================
   RESPONSIVE — MOBILE (600px)
============================================= */
@media (max-width: 600px) {
    :root {
        --szz-sec: 60px;
        --szz-h: 68px;
        --szz-h-sm: 60px;
    }

    /* Logo mobile */
    .szz-header-logo img { height: 40px; }
    .szz-header.scrolled .szz-header-logo img { height: 34px; }

    /* HERO mobile */
    .szz-hero {
        padding: 100px 20px 80px;
        min-height: 100svh;
        text-align: left;
        align-items: flex-end;
    }
    .szz-hero-badge { font-size: 10px; letter-spacing: 1.5px; }
    .szz-hero-title { font-size: clamp(36px, 10vw, 48px); margin-bottom: 16px; }
    .szz-hero-subtitle { font-size: 15px; margin-bottom: 28px; }
    .szz-hero-stats {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1px;
        padding: 0;
        background: rgba(255,255,255,0.12);
        border-radius: 10px;
        overflow: hidden;
        margin-bottom: 28px;
        border: 1px solid rgba(255,255,255,0.15);
    }
    .szz-hero-stat {
        padding: 14px 16px;
        text-align: center;
        background: rgba(255,255,255,0.06);
    }
    .szz-hero-stat:last-child {
        grid-column: 1 / -1;
    }
    .szz-hero-stat strong { font-size: 16px; }
    .szz-hero-stat span { font-size: 10px; }
    .szz-hero-stat-divider { display: none; }
    .szz-hero-btns { flex-direction: column; align-items: stretch; gap: 10px; }
    .szz-hero-btns .szz-btn { justify-content: center; text-align: center; }
    .szz-hero-scroll { display: none; }

    /* Counters: 2 kol mobile */
    .szz-counters { padding: 48px 0; }
    .szz-counters-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .szz-counter-item { padding: 24px 14px; }
    .szz-counter-icon { width: 40px; height: 40px; margin-bottom: 14px; }
    .szz-counter-num { font-size: clamp(24px, 6vw, 32px); margin-bottom: 8px; }
    .szz-counter-num small { font-size: 13px; }
    .szz-counter-item p { font-size: 11px; letter-spacing: 0.5px; }

    /* Trust bar */
    .szz-trust { margin-top: -24px; }
    .szz-trust-grid { grid-template-columns: repeat(2,1fr); border-radius: var(--szz-radius); }
    .szz-trust-item { border-right: none !important; border-bottom: 1px solid var(--szz-border); padding: 16px 12px; }
    .szz-trust-item:nth-child(odd) { border-right: 1px solid var(--szz-border) !important; }
    .szz-trust-item:nth-last-child(-n+2) { border-bottom: none; }
    .szz-trust-item:last-child { border-bottom: none; }
    .szz-trust-item strong { font-size: 16px; }
    .szz-trust-item span { font-size: 11px; }

    /* About */
    .szz-about-image img { height: 240px; }
    .szz-about-badge { display: none; }
    .szz-about-tags { gap: 6px; }
    .szz-tag { font-size: 11px; padding: 5px 11px; }

    /* Params */
    .szz-params-grid { grid-template-columns: 1fr; }
    .szz-param-card:last-child { grid-column: 1; max-width: none; margin: 0; }
    .szz-params-summary { padding: 20px 12px; gap: 16px 0; }
    .szz-summary-item { width: 48%; align-items: center; padding: 8px 4px; }
    .szz-summary-item strong { font-size: 17px; }
    .szz-summary-item span { font-size: 11px; }

    /* Gallery */
    .szz-gallery-grid { grid-template-columns: 1fr; gap: 10px; }
    .szz-gallery-item--wide { grid-column: span 1; }
    .szz-gallery-item--wide img { height: 240px; }
    .szz-gallery-item img { height: 200px; }

    /* Location */
    .szz-location-map { height: 300px; min-height: 300px; }
    .szz-location-map iframe { min-height: 300px; }

    /* Standard */
    .szz-standard-grid { grid-template-columns: 1fr; gap: 16px; }
    .szz-standard-category { padding: 24px 20px; }

    /* Developer */
    .szz-developer-inner { padding: 28px 20px; gap: 24px; }
    .szz-developer-logo img { width: 140px; }
    .szz-developer-title { font-size: 22px; }
    .szz-developer-stats { flex-direction: column; gap: 12px; }

    /* ── OFERTA: MOBILE CARD LAYOUT ── */
    .szz-pzt-wrap { margin-top: 24px; }
    .szz-pzt-link {
        font-size: 13px;
        padding: 12px 18px;
        gap: 8px;
        width: 100%;
        justify-content: center;
    }
    .szz-pzt-link svg { width: 18px; height: 18px; }

    .szz-oferta-table-wrap {
        border: none !important;
        box-shadow: none !important;
        overflow: visible;
        margin-top: 20px;
    }
    .szz-oferta-table thead { display: none !important; }
    .szz-oferta-table,
    .szz-oferta-table tbody { display: block; }
    .szz-oferta-table tr {
        display: block;
        margin-bottom: 16px;
        border: 1px solid var(--szz-border);
        border-left: 4px solid var(--szz-green);
        border-radius: 12px;
        padding: 20px;
        background: var(--szz-white) !important;
        box-shadow: 0 2px 12px rgba(0,0,0,0.05), 0 0 0 0 rgba(78,122,92,0);
        position: relative;
        transition: box-shadow 0.3s ease;
    }
    .szz-oferta-row--rezerwacja {
        border-left-color: #f59e0b !important;
        background: #fffbeb !important;
    }

    /* Card: status badge top-right */
    .szz-oferta-table td:nth-child(5) {
        position: absolute;
        top: 12px;
        right: 12px;
        padding: 0;
        border: none;
    }
    .szz-oferta-table td:nth-child(5)::before { display: none; }

    /* Card: lokal name as card title */
    .szz-oferta-table td:first-child {
        padding: 0 0 12px 0;
        border-bottom: 1px solid #f0ede8 !important;
        margin-bottom: 12px;
    }
    .szz-oferta-table td:first-child::before { display: none; }
    .szz-oferta-table td:first-child strong {
        font-size: 18px !important;
        color: var(--szz-primary) !important;
    }

    /* Card: data rows */
    .szz-oferta-table td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 6px 0;
        border-bottom: none !important;
        color: var(--szz-text) !important;
        font-size: 14px;
    }
    .szz-oferta-table td::before {
        content: attr(data-label);
        font-weight: 600;
        font-size: 11px;
        text-transform: uppercase;
        letter-spacing: 0.8px;
        color: var(--szz-muted);
        flex-shrink: 0;
        margin-right: 16px;
    }

    /* Card: price highlight */
    .szz-oferta-cena {
        font-size: 17px !important;
        color: var(--szz-primary) !important;
    }

    /* Card: rzut link row */
    .szz-oferta-table td:nth-child(6) { margin-top: 4px; }

    /* Card: CTA button full width */
    .szz-oferta-table td:last-child {
        margin-top: 14px;
        padding-top: 14px;
        border-top: 1px solid #f0ede8 !important;
        justify-content: stretch;
    }
    .szz-oferta-table td:last-child::before { display: none; }
    .szz-oferta-btn {
        width: 100%;
        text-align: center;
        padding: 14px 16px;
        min-height: 48px;
        font-size: 14px;
        border-radius: 8px;
    }

    /* Card: rezerwacja variant */
    .szz-oferta-row--rezerwacja {
        background: #fffbeb !important;
        border-color: #fde68a !important;
    }

    .szz-status { font-size: 10px; padding: 5px 10px; letter-spacing: 0.6px; }
    body .szz-pdf-link,
    body a.szz-pdf-link {
        padding: 10px 16px;
        min-height: 44px;
        font-size: 12px;
        border-radius: 8px;
        width: 100%;
        justify-content: center;
    }

    .szz-oferta-note { font-size: 12px; margin-top: 16px; }

    /* ── REALIZACJE: MOBILE GRID ── */
    .szz-realizacje-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .szz-realizacja-item {
        border-radius: 10px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    }
    .szz-realizacja-img { aspect-ratio: 1/1; }
    .szz-realizacja-info { padding: 10px 12px; }
    .szz-realizacja-info strong { font-size: 12px; line-height: 1.3; }
    .szz-realizacja-info span { font-size: 10px; margin-top: 2px; }

    /* CTA banner */
    .szz-cta-banner { padding: 48px 0; }
    .szz-cta-banner h2 { font-size: 24px; }
    .szz-cta-banner p { font-size: 15px; }

    /* Contact */
    .szz-form-row { grid-template-columns: 1fr; }
    .szz-contact-form-wrap { padding: 24px 18px; }
    .szz-contact-item a, .szz-contact-item span { font-size: 14px; }

    /* Footer */
    .szz-footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .szz-footer-brand { grid-column: span 1; }
    .szz-footer-bottom { flex-direction: column; gap: 6px; text-align: center; font-size: 12px; }

    /* Floating — tylko ikona */
    .szz-floating { bottom: 20px; right: 14px; gap: 10px; }
    .szz-float-phone span { display: none; }
    .szz-float-phone {
        width: 54px; height: 54px;
        padding: 0;
        justify-content: center;
        border-radius: 50%;
        box-shadow: 0 4px 20px rgba(196,30,58,0.4);
    }
    .szz-float-top { width: 40px; height: 40px; }

    /* Lightbox */
    .szz-lightbox-prev { left: 4px; width: 40px; height: 40px; }
    .szz-lightbox-next { right: 4px; width: 40px; height: 40px; }
    .szz-lightbox-close { top: 12px; right: 12px; }

    /* Header mobile */
    .szz-header-inner { padding: 0 16px; }
    .szz-container { padding: 0 16px; }
    .szz-mobile-nav { padding: 88px 24px 36px; }
    .szz-mobile-link { font-size: 22px; padding: 14px 0; }

    /* Section headers */
    .szz-section-header { margin-bottom: 40px; }
}

/* =============================================
   RESPONSIVE — TINY PHONES (380px)
============================================= */
@media (max-width: 380px) {
    .szz-hero-title { font-size: 32px; }
    .szz-hero-stat strong { font-size: 14px; }
    .szz-hero-stat span { font-size: 9px; }

    .szz-oferta-table tr { padding: 16px; }
    .szz-oferta-table td:first-child strong { font-size: 16px !important; }
    .szz-oferta-cena { font-size: 15px !important; }
    .szz-oferta-table td { font-size: 13px; }

    .szz-realizacje-grid { grid-template-columns: 1fr !important; gap: 14px; }
    .szz-counters-grid { grid-template-columns: 1fr; }

    .szz-pzt-link { font-size: 12px; padding: 10px 14px; }
    body .szz-pdf-link { font-size: 11px; padding: 8px 12px; min-height: 40px; }
    .szz-section-header h2 { font-size: 26px; }
    .szz-container { padding: 0 12px; }
}

/* =============================================
   ACCESSIBILITY
============================================= */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
a:focus-visible, button:focus-visible {
    outline: 3px solid var(--szz-accent);
    outline-offset: 3px;
}

/* =============================================
   COOKIES BANNER
============================================= */
.szz-cookies {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 99998;
    width: calc(100% - 40px);
    max-width: 680px;
    background: var(--szz-primary);
    border-radius: 14px;
    padding: 20px 28px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.25), 0 0 0 1px rgba(255,255,255,0.06);
    animation: szzCookiesIn 0.5s ease forwards;
}
@keyframes szzCookiesIn {
    from { opacity: 0; transform: translateX(-50%) translateY(20px); }
    to { opacity: 1; transform: translateX(-50%) translateY(0); }
}
.szz-cookies-inner {
    display: flex;
    align-items: center;
    gap: 20px;
}
.szz-cookies-inner p {
    margin: 0;
    font-family: var(--szz-font-body);
    font-size: 13px;
    color: rgba(255,255,255,0.75);
    line-height: 1.6;
    flex: 1;
}
.szz-cookies-inner p a {
    color: rgba(255,255,255,0.9);
    text-decoration: underline;
    text-underline-offset: 2px;
}
.szz-cookies-inner p a:hover { color: #fff; }
.szz-cookies-btn {
    background: rgba(255,255,255,0.12);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.2);
    padding: 10px 24px;
    border-radius: 8px;
    font-family: var(--szz-font-body);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.25s ease;
    letter-spacing: 0.3px;
}
.szz-cookies-btn:hover {
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.35);
}
@media (max-width: 600px) {
    .szz-cookies { bottom: 12px; width: calc(100% - 24px); padding: 16px 20px; border-radius: 12px; }
    .szz-cookies-inner { flex-direction: column; text-align: center; gap: 14px; }
    .szz-cookies-inner p { font-size: 12px; }
    .szz-cookies-btn { width: 100%; min-height: 44px; padding: 12px 20px; }
}

/* =============================================
   POLITYKA PRYWATNOSCI
============================================= */
.szz-privacy {
    padding: 120px 0 80px;
    background: var(--szz-cream);
    min-height: 100vh;
    font-family: var(--szz-font-body);
    -webkit-font-smoothing: antialiased;
}
.szz-privacy h1 {
    font-family: var(--szz-font-head);
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    color: var(--szz-primary);
    margin: 0 0 8px;
    letter-spacing: -0.3px;
}
.szz-privacy-updated {
    color: var(--szz-muted);
    font-size: 13px;
    margin-bottom: 48px;
    font-family: var(--szz-font-body);
}
.szz-privacy h2 {
    font-family: var(--szz-font-head);
    font-size: 20px;
    font-weight: 700;
    color: var(--szz-primary);
    margin: 40px 0 14px;
    padding-top: 20px;
    border-top: 1px solid rgba(0,0,0,0.06);
    letter-spacing: -0.2px;
}
.szz-privacy h2:first-of-type { border-top: none; padding-top: 0; }
.szz-privacy p, .szz-privacy li {
    font-family: var(--szz-font-body);
    font-size: 15px;
    line-height: 1.8;
    color: #4a4a4a;
    max-width: 680px;
    letter-spacing: 0.01em;
}
.szz-privacy ul {
    padding-left: 22px;
    margin: 10px 0 18px;
    list-style-type: disc;
}
.szz-privacy li {
    margin-bottom: 6px;
    padding-left: 4px;
}
.szz-privacy a {
    color: var(--szz-green);
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 1px;
}
.szz-privacy a:hover { color: var(--szz-primary); }
.szz-privacy-back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 28px;
    font-family: var(--szz-font-body);
    font-size: 14px;
    font-weight: 500;
    color: var(--szz-muted);
    text-decoration: none;
    transition: color 0.2s ease;
}
.szz-privacy-back:hover { color: var(--szz-primary); }
.szz-privacy-back-bottom { margin-top: 56px; }
.szz-privacy-table {
    width: 100%;
    max-width: 520px;
    border-collapse: collapse;
    margin: 14px 0 24px;
    font-family: var(--szz-font-body);
    font-size: 13px;
    border-radius: 8px;
    overflow: hidden;
}
.szz-privacy-table th, .szz-privacy-table td {
    padding: 10px 14px;
    text-align: left;
    border: 1px solid rgba(0,0,0,0.08);
}
.szz-privacy-table th {
    background: var(--szz-primary);
    color: #fff;
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
