/* =========================================================
   STOWARZYSZENIE OLIWSKIE SŁONECZKO
   Design system: bazowany na sosoliwa-theme (zaakceptowanym)
   Wariant E — Żółto-czarny · Raleway + Open Sans
   Wersja: 1.0 · 2026-06-04
   ========================================================= */

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 18px;
    line-height: 1.7;
    color: #333;
    background: #ffffff;
    overflow-x: hidden;
    letter-spacing: 0.3px;
}
img { max-width: 100%; height: auto; display: block; }
h1, h2, h3, h4, h5, h6 {
    font-family: 'Raleway', sans-serif;
    color: #1a1a1a;
    line-height: 1.2;
    margin: 0 0 20px;
    letter-spacing: -0.01em;
}
p { margin: 0 0 16px; }
a { color: #7a5f00; text-decoration: none; transition: color 0.2s; }
a:hover { color: #1a1a1a; }
button { font-family: inherit; cursor: pointer; }

/* === DESIGN TOKENS === */
:root {
    --sos-primary:   #FFD600;       /* żółty - akcent */
    --sos-primary-d: #e6c200;
    --sos-primary-t: #7a5f00;       /* tekst na białym (kontrast 6.1:1) */
    --sos-green:     #72B012;       /* zielony - drugi akcent */
    --sos-green-d:   #5a8c0e;
    --sos-green-t:   #426b00;       /* tekst zieleni na białym */
    --sos-dark:      #1a1a1a;
    --sos-dark-2:    #2d2d2d;
    --sos-text:      #333333;
    --sos-muted:     #555555;
    --sos-light:     #f9f9f9;
    --sos-line:      #e5e7eb;
    --sos-radius:    16px;
    --sos-radius-lg: 24px;
    --sos-shadow:    0 4px 20px rgba(0,0,0,0.07);
    --sos-shadow-lg: 0 16px 48px rgba(0,0,0,0.12);
    --sos-container: 1200px;
    --sos-header:    118px; /* wysokość headera + pas UE */
}

/* === LAYOUT === */
.container {
    max-width: var(--sos-container);
    margin: 0 auto;
    padding: 0 16px;
}
@media (min-width: 1024px) {
    .container { padding: 0 40px; }
}
.section {
    padding: 80px 0;
}
@media (max-width: 600px) {
    .section { padding: 56px 0; }
    .section-head { margin-bottom: 32px; }
}
.section--light { background: var(--sos-light); }
.section--dark {
    background: linear-gradient(135deg, #1f1f1f 0%, #2d2d2d 100%);
    color: #ffffff;
}
.section--dark h1, .section--dark h2, .section--dark h3 { color: #ffffff; }
.section--dark p { color: rgba(255,255,255,0.85); }

/* === TYPOGRAFIA === */
.eyebrow {
    font-family: 'Raleway', sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--sos-green-t);
    margin: 0 0 16px;
}
.eyebrow--on-dark { color: var(--sos-green); }
h1.title-xl, .title-xl {
    font-size: clamp(36px, 6vw, 64px);
    font-weight: 900;
    line-height: 1.1;
}
h2.title-lg, .title-lg {
    font-size: clamp(28px, 4.5vw, 44px);
    font-weight: 900;
}
h3.title-md, .title-md {
    font-size: clamp(22px, 3vw, 30px);
    font-weight: 800;
}
.lead {
    font-size: 19px;
    line-height: 1.8;
    color: var(--sos-muted);
    max-width: 720px;
}

/* === PRZYCISKI === */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 30px;
    border-radius: 30px;
    font-family: 'Raleway', sans-serif;
    font-weight: 800;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.25s ease;
    border: 2px solid transparent;
    cursor: pointer;
    text-decoration: none;
    line-height: 1;
    min-height: 48px;
}
.btn--primary {
    background: var(--sos-primary);
    color: var(--sos-dark);
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}
.btn--primary:hover {
    background: var(--sos-primary-d);
    transform: translateY(-2px);
    color: var(--sos-dark);
}
.btn--green {
    background: var(--sos-green);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(114,176,18,0.25);
}
.btn--green:hover {
    background: var(--sos-green-d);
    transform: translateY(-2px);
    color: #ffffff;
}
.btn--outline {
    border-color: #ffffff;
    color: #ffffff;
    background: transparent;
}
.btn--outline:hover {
    background: #ffffff;
    color: var(--sos-dark);
}
.btn--dark-outline {
    border-color: var(--sos-dark);
    color: var(--sos-dark);
    background: transparent;
}
.btn--dark-outline:hover {
    background: var(--sos-dark);
    color: #ffffff !important;
    border-color: var(--sos-dark);
}
.btn--outline:hover { color: var(--sos-dark) !important; }
.btn--lg { padding: 18px 40px; font-size: 16px; }

/* Visually hidden (accessibility) — chowa wizualnie ale czytniki ekranowe widzą */
.visually-hidden {
    position: absolute;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Hero CTA row (zastępuje inline margin-top:24px) */
.hero-cta-row { margin-top: 24px; }

/* Utility margin-top — TECH-02 refactor */
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-40 { margin-top: 40px; }
.mt-48 { margin-top: 48px; }
.mt-64 { margin-top: 64px; }
.text-center { text-align: center; }

/* === HEADER === */
.skip-link {
    position: absolute;
    left: -10000px;
    top: 0;
    background: var(--sos-dark);
    color: #ffffff;
    padding: 12px 20px;
    z-index: 9999;
    font-weight: 700;
    border-radius: 0 0 8px 0;
}
.skip-link:focus {
    left: 0;
    color: #ffffff;
}
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.eu-strip {
    background: #f8f8f8;
    border-bottom: 1px solid var(--sos-line);
    padding: 4px 16px;
    text-align: center;
}
.eu-strip img {
    max-width: 420px;
    width: 100%;
    max-height: 32px;
    object-fit: contain;
    margin: 0 auto;
}
.nav-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    padding: 0 16px;
    max-width: var(--sos-container);
    margin: 0 auto;
}
@media (min-width: 1024px) {
    .nav-row { padding: 0 40px; }
}
.brand img {
    height: 56px;
    width: auto;
    object-fit: contain;
}
.nav-main {
    display: none;
    gap: 4px;
    align-items: center;
}
@media (min-width: 1024px) {
    .nav-main { display: flex; }
}
.nav-link {
    display: inline-block;
    padding: 12px 14px;
    color: var(--sos-dark);
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    transition: color 0.2s;
}
.nav-link:hover, .nav-link[aria-current="page"] {
    color: var(--sos-green);
}
.nav-link--feat {
    position: relative;
    font-weight: 800;
    color: var(--sos-dark);
}
.nav-link--feat::after {
    content: '';
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 6px;
    height: 3px;
    background: var(--sos-primary);
    border-radius: 2px;
    opacity: 0.55;
}
.nav-link--feat:hover::after { opacity: 1; }
.nav-cta { margin-left: 12px; }
.nav-mobile-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: transparent;
    border: none;
    font-size: 24px;
    color: var(--sos-dark);
}
@media (min-width: 1024px) {
    .nav-mobile-btn { display: none; }
}

/* === MOBILE MENU === */
.mobile-menu {
    position: fixed;
    inset: 0;
    background: #ffffff;
    z-index: 9500;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}
.mobile-menu.is-open { transform: translateX(0); }
.mobile-menu__head {
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 3px solid var(--sos-primary);
}
.mobile-menu__head h2 {
    font-size: 18px;
    font-weight: 900;
    margin: 0;
}
.mobile-menu__close {
    width: 48px;
    height: 48px;
    background: transparent;
    border: none;
    font-size: 28px;
    color: var(--sos-dark);
}
.mobile-menu nav {
    padding: 8px 0;
    flex: 1;
}
.mobile-menu nav a {
    display: block;
    padding: 18px 24px;
    color: var(--sos-dark);
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    border-bottom: 1px solid var(--sos-line);
}
.mobile-menu nav a:hover { color: var(--sos-green); background: var(--sos-light); }
.mobile-menu__foot {
    padding: 24px;
    border-top: 1px solid var(--sos-line);
}

/* === HERO WP (układ jak na starej wersji WordPress) === */
.hero-wp {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    overflow: hidden;
    background: #1a1a1a;
}
.hero-wp__bg {
    display: block;
    position: absolute;
    inset: 0;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.hero-wp__overlay {
    display: block;
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg,
        rgba(26,26,26,0.96) 0%,
        rgba(26,26,26,0.92) 30%,
        rgba(26,26,26,0.65) 55%,
        rgba(26,26,26,0.15) 75%,
        rgba(26,26,26,0) 100%);
}
.hero-wp__figure {
    display: none;
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50%;
    max-width: 700px;
    height: 90%;
    object-fit: contain;
    object-position: bottom right;
    z-index: 2;
    pointer-events: none;
}
@media (min-width: 1024px) {
    .hero-wp__figure { display: block; }
}
@media (min-width: 1440px) {
    .hero-wp__figure { width: 55%; max-width: 850px; }
}
.hero-wp__circles {
    display: block;
    position: absolute;
    top: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    background:
        radial-gradient(circle at center, transparent 80px, rgba(255,214,0,0.15) 80px, rgba(255,214,0,0.15) 85px, transparent 86px),
        radial-gradient(circle at center, transparent 180px, rgba(255,214,0,0.10) 180px, rgba(255,214,0,0.10) 185px, transparent 186px),
        radial-gradient(circle at center, rgba(255,214,0,0.20) 0%, rgba(255,214,0,0.20) 80px, transparent 80px);
    border-radius: 50%;
    pointer-events: none;
    opacity: 0.6;
}
.hero-wp__inner {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    min-height: 100vh;
    min-height: 100dvh;
    padding: 140px 0 60px;
}
@media (max-width: 600px) {
    .hero-wp__inner { padding: 130px 0 40px; }
}
.hero-wp__content {
    width: 100%;
    max-width: var(--sos-container);
    margin: 0 auto;
    padding: 0 16px;
}
@media (min-width: 1024px) {
    .hero-wp__content {
        padding: 0 48px;
        max-width: 60%;
        margin: 0;
        padding-left: max(48px, calc((100vw - var(--sos-container)) / 2 + 16px));
    }
}
.hero-wp__eyebrow {
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    color: var(--sos-primary);
    font-size: clamp(14px, 1.4vw, 18px);
    letter-spacing: 0.05em;
    margin: 0 0 16px;
}
.hero-wp__title {
    font-family: 'Raleway', sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    color: #ffffff;
    line-height: 1.05;
    margin: 0 0 24px;
    font-size: clamp(34px, 7vw, 82px);
    word-break: break-word;
}
.hero-wp__title-accent {
    color: var(--sos-primary);
}
.hero-wp__subtitle {
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    color: rgba(255,255,255,0.92);
    font-size: clamp(18px, 2.2vw, 24px);
    margin: 0 0 32px;
}
.hero-wp__subtitle-accent {
    color: var(--sos-primary);
}
.hero-wp__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 40px;
}
.hero-wp__stats {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px 28px;
    padding-top: 28px;
    border-top: 1px solid rgba(255,255,255,0.14);
    max-width: 600px;
}
@media (max-width: 500px) {
    .hero-wp__stats { gap: 16px 20px; padding-top: 22px; }
    .hero-wp__divider { display: none; }
}
.hero-wp__stat-num {
    font-family: 'Raleway', sans-serif;
    font-weight: 900;
    color: var(--sos-primary);
    font-size: clamp(28px, 3vw, 36px);
    line-height: 1;
    margin: 0 0 4px;
}
.hero-wp__stat-label {
    font-size: 11px;
    color: rgba(255,255,255,0.55);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin: 0;
    max-width: 180px;
}
.hero-wp__divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.18);
}

/* === MARQUEE (taśma informacji) === */
.marquee {
    overflow: hidden;
    white-space: nowrap;
    background: var(--sos-dark);
    color: #ffffff;
    padding: 14px 0;
    border-top: 4px solid var(--sos-primary);
    border-bottom: 4px solid var(--sos-primary);
}
.marquee__track {
    display: inline-block;
    animation: marqueeMove 70s linear infinite;
    padding-left: 100%;
}
@keyframes marqueeMove {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}
.marquee__item {
    display: inline-flex;
    align-items: center;
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.08em;
    margin-right: 32px;
}
.marquee__item a {
    color: #ffffff;
    text-decoration: none;
}
.marquee__item a:hover {
    color: var(--sos-primary);
}
.marquee__dot {
    color: var(--sos-primary);
    margin-right: 32px;
    font-size: 20px;
}
@media (prefers-reduced-motion: reduce) {
    .marquee__track { animation: none; padding-left: 0; }
}
@media (max-width: 600px) {
    .marquee { padding: 10px 0; }
    .marquee__item { font-size: 12px; margin-right: 24px; letter-spacing: 0.06em; }
    .marquee__dot { margin-right: 24px; }
    .marquee__track { animation-duration: 90s; }
}

/* === ŚCIEŻKI POD HERO (light, dwie karty) === */
.hero-paths-outside {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}
@media (min-width: 768px) {
    .hero-paths-outside { grid-template-columns: 1fr 1fr; gap: 32px; }
}
.path-card-light {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: var(--sos-light);
    border-radius: var(--sos-radius-lg);
    padding: 28px 24px;
    border: 2px solid transparent;
    transition: all 0.25s;
    text-decoration: none;
    color: var(--sos-dark);
}
@media (max-width: 500px) {
    .path-card-light { flex-direction: column; gap: 16px; padding: 24px 20px; }
}
.path-card-light:hover {
    border-color: var(--sos-primary);
    transform: translateY(-4px);
    box-shadow: var(--sos-shadow-lg);
    color: var(--sos-dark);
}
.path-card-light__icon {
    width: 56px;
    height: 56px;
    background: var(--sos-primary);
    color: var(--sos-dark);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}
.path-card-light h3 {
    font-size: 19px;
    font-weight: 800;
    margin: 0 0 8px;
}
.path-card-light p {
    font-size: 14px;
    color: var(--sos-muted);
    line-height: 1.6;
    margin: 0 0 12px;
}
.path-card-light__arrow {
    font-family: 'Raleway', sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.1em;
    color: var(--sos-primary-t);
}

/* === HERO (homepage) === */
.hero {
    position: relative;
    padding: 160px 0 100px;
    background: linear-gradient(135deg, #1f1f1f 0%, #2d2d2d 100%);
    color: #ffffff;
    overflow: hidden;
}
.hero__bg {
    display: block;
    position: absolute;
    inset: 0;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0.15;
}
.hero__inner {
    position: relative;
    z-index: 2;
    max-width: var(--sos-container);
    margin: 0 auto;
    padding: 0 16px;
    text-align: center;
}
.hero h1 {
    color: #ffffff;
    font-size: clamp(36px, 7vw, 72px);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}
.hero p.lead {
    color: rgba(255,255,255,0.85);
    font-size: clamp(17px, 2vw, 22px);
    margin: 0 auto 36px;
    max-width: 720px;
}
.hero__cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}
.hero__paths {
    margin-top: 64px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}
@media (min-width: 768px) {
    .hero__paths { grid-template-columns: 1fr 1fr; }
}
.path-card {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--sos-radius-lg);
    padding: 32px;
    text-align: left;
    color: #ffffff;
    transition: all 0.25s;
    display: block;
    text-decoration: none;
}
.path-card:hover {
    background: rgba(255,255,255,0.12);
    transform: translateY(-4px);
    color: #ffffff;
}
.path-card__icon {
    width: 56px;
    height: 56px;
    background: var(--sos-primary);
    color: var(--sos-dark);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 16px;
}
.path-card h3 {
    color: #ffffff;
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 8px;
}
.path-card p {
    color: rgba(255,255,255,0.8);
    font-size: 15px;
    margin: 0 0 16px;
}
.path-card__arrow {
    font-weight: 800;
    font-family: 'Raleway', sans-serif;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.1em;
    color: var(--sos-primary);
}

/* === PAGE HERO (podstrony) === */
.page-hero {
    padding: 150px 0 64px;
    background: linear-gradient(135deg, #1f1f1f 0%, #2d2d2d 100%);
    color: #ffffff;
    position: relative;
    overflow: hidden;
}
.page-hero__bg {
    display: block;
    position: absolute;
    inset: 0;
    background-position: center;
    background-size: cover;
    opacity: 0.12;
}
.page-hero__inner {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 16px;
}
.page-hero h1 {
    color: #ffffff;
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 900;
    margin-bottom: 20px;
}
.page-hero p {
    color: rgba(255,255,255,0.75);
    font-size: 18px;
    line-height: 1.8;
    max-width: 640px;
    margin: 0 auto;
}

/* === SUB NAV (podstrony) === */
.subnav {
    position: sticky;
    top: var(--sos-header);
    z-index: 40;
    background: #ffffff;
    border-bottom: 2px solid var(--sos-light);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
.subnav__inner {
    display: flex;
    gap: 0;
    justify-content: center;
    max-width: var(--sos-container);
    margin: 0 auto;
    padding: 0 16px;
}
.subnav a {
    padding: 16px 18px;
    font-family: 'Raleway', sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--sos-muted);
    white-space: nowrap;
    border-bottom: 3px solid transparent;
    transition: all 0.2s;
}
.subnav a:hover, .subnav a.is-active {
    color: var(--sos-dark);
    border-bottom-color: var(--sos-primary);
}
[id] { scroll-margin-top: 180px; }

/* === GRIDS & CARDS === */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: center;
}
@media (min-width: 600px) and (max-width: 899px) {
    .grid-2 { gap: 40px; }
}
@media (min-width: 900px) {
    .grid-2 { grid-template-columns: 1fr 1fr; gap: 64px; }
    .grid-2.grid-2--image-wide { grid-template-columns: minmax(0, 1fr) minmax(0, 1.35fr); gap: 56px; }
}
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}
.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
@media (max-width: 720px) {
    .grid-4 { grid-template-columns: repeat(2, 1fr); gap: 18px; }
}
@media (max-width: 400px) {
    .grid-3, .grid-4 { grid-template-columns: 1fr; gap: 16px; }
}
.card {
    background: #ffffff;
    border-radius: var(--sos-radius);
    box-shadow: var(--sos-shadow);
    padding: 28px;
    transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--sos-shadow-lg);
}
.card--light {
    background: var(--sos-light);
    box-shadow: none;
}
.card h3 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 12px;
}
.card__icon {
    font-size: 32px;
    color: var(--sos-primary-t);
    margin-bottom: 16px;
    display: inline-block;
}
.card__icon--green { color: var(--sos-green-t); }

.value-card {
    background: var(--sos-light);
    border-radius: var(--sos-radius);
    padding: 28px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}
.value-card__icon {
    font-size: 32px;
    margin-bottom: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    line-height: 1;
}
.value-card h3 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 8px;
}
.value-card p {
    font-size: 14px;
    color: var(--sos-muted);
    margin: 0;
    line-height: 1.7;
}

/* === ZESPÓŁ - PORTRETY === */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 28px;
}
.team-card {
    background: #ffffff;
    border-radius: var(--sos-radius);
    overflow: hidden;
    box-shadow: var(--sos-shadow);
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
}
.team-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--sos-shadow-lg);
}
.team-card__photo {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    object-position: top center;
    background: var(--sos-light);
    max-height: 320px;
}
@media (min-width: 600px) {
    .team-card__photo { max-height: none; }
}
.team-card__body {
    padding: 20px;
}
.team-card h3 {
    font-size: 17px;
    font-weight: 800;
    margin-bottom: 4px;
}
.team-card p {
    font-size: 13px;
    color: var(--sos-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0;
    font-weight: 700;
    font-family: 'Raleway', sans-serif;
}
.team-card p.team-card__bio {
    text-transform: none;
    letter-spacing: 0;
    font-weight: 400;
    font-family: 'Open Sans', sans-serif;
    font-size: 13px;
    color: #777;
    line-height: 1.6;
    margin-top: 12px;
}

/* === STATY === */
.stats {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    margin-top: 32px;
}
.stat {
    text-align: center;
}
.stat__num {
    font-family: 'Raleway', sans-serif;
    font-size: 44px;
    font-weight: 900;
    color: var(--sos-primary);
    line-height: 1;
    -webkit-text-stroke: 1px var(--sos-primary-t); /* lekki obrys dla kontrastu na białym */
}
.stat__label {
    font-size: 13px;
    color: #777;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 6px;
    font-weight: 600;
}

/* === SCHEDULE (plan dnia DDS) === */
.schedule {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.schedule__row {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 20px;
    padding: 18px 20px;
    background: #ffffff;
    border-left: 4px solid var(--sos-primary);
    border-radius: 8px;
    box-shadow: var(--sos-shadow);
    align-items: center;
}
.schedule__time {
    font-family: 'Raleway', sans-serif;
    font-weight: 900;
    font-size: 17px;
    color: var(--sos-primary-t);
}
.schedule__what {
    font-size: 15px;
    line-height: 1.6;
    color: var(--sos-dark);
}
.schedule__what strong { display: block; margin-bottom: 4px; font-size: 16px; }

/* === TIMELINE (nagrody) === */
.timeline {
    position: relative;
    padding-left: 32px;
    border-left: 3px solid var(--sos-primary);
}
.timeline__item {
    position: relative;
    margin-bottom: 32px;
}
.timeline__item::before {
    content: '';
    position: absolute;
    left: -41px;
    top: 8px;
    width: 16px;
    height: 16px;
    background: var(--sos-primary);
    border: 3px solid #ffffff;
    border-radius: 50%;
    box-shadow: 0 0 0 2px var(--sos-primary-t);
}
.timeline__year {
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    font-weight: 800;
    color: var(--sos-green-t);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 6px;
}
.timeline__title {
    font-size: 19px;
    font-weight: 800;
    margin-bottom: 6px;
}
.timeline__org {
    font-size: 14px;
    color: var(--sos-muted);
    font-style: italic;
}

/* === FAQ ACCORDION === */
.faq {
    max-width: 800px;
    margin: 0 auto;
}
.faq-accordion {
    background: #ffffff;
    border-radius: 12px;
    margin-bottom: 12px;
    box-shadow: var(--sos-shadow);
    overflow: hidden;
}
.faq-accordion summary {
    padding: 22px 24px;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    font-size: 17px;
    color: var(--sos-dark);
    gap: 16px;
}
.faq-accordion summary::-webkit-details-marker { display: none; }
.faq-accordion summary::after {
    content: '+';
    font-size: 26px;
    font-weight: 300;
    color: var(--sos-green);
    transition: transform 0.2s;
    flex-shrink: 0;
    line-height: 1;
}
.faq-accordion[open] summary::after { content: '−'; }
.faq-accordion__body {
    padding: 0 24px 22px;
    color: var(--sos-muted);
    line-height: 1.7;
    font-size: 15px;
}
.faq-accordion__body p { margin: 0 0 12px; }
.faq-accordion__body p:last-child { margin-bottom: 0; }

/* === FORM === */
.form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.form__row {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.form label {
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: var(--sos-dark);
}
.form label span.req { color: #c1272d; }
.form input, .form select, .form textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--sos-line);
    border-radius: 10px;
    font-family: inherit;
    font-size: 16px;
    color: var(--sos-dark);
    background: #ffffff;
    transition: border-color 0.2s;
    min-height: 48px;
}
.form input:focus, .form select:focus, .form textarea:focus {
    outline: none;
    border-color: var(--sos-primary);
}
.form textarea { min-height: 140px; resize: vertical; }
.form__consent {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-size: 13px;
    color: var(--sos-muted);
    line-height: 1.6;
}
.form__consent input[type="checkbox"] {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    margin-top: 2px;
    min-height: auto;
}

/* === GALERIA (masonry + lightbox) === */
.gallery {
    columns: 1;
    gap: 16px;
}
@media (min-width: 600px) { .gallery { columns: 2; } }
@media (min-width: 900px) { .gallery { columns: 3; } }
.gallery__item {
    break-inside: avoid;
    margin-bottom: 16px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    display: block;
    border: none;
    background: none;
    padding: 0;
    width: 100%;
}
.gallery__item img {
    width: 100%;
    transition: transform 0.3s, box-shadow 0.3s;
    border-radius: 12px;
    display: block;
}
.gallery__item:hover img {
    transform: scale(1.02);
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.92);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 40px;
}
.lightbox.is-open { display: flex; }
.lightbox img {
    max-width: 92vw;
    max-height: 88vh;
    border-radius: 8px;
    box-shadow: 0 0 80px rgba(0,0,0,0.6);
}
.lightbox__close {
    position: absolute;
    top: 20px;
    right: 24px;
    width: 48px;
    height: 48px;
    background: transparent;
    border: none;
    font-size: 36px;
    color: #ffffff;
    line-height: 1;
}

/* === SALE TEASER (premium na stronie głównej) === */
.sale-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 48px;
}
@media (min-width: 900px) {
    .sale-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
.sale-card {
    background: #ffffff;
    border-radius: var(--sos-radius-lg);
    overflow: hidden;
    box-shadow: var(--sos-shadow);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s, box-shadow 0.3s;
}
.sale-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 56px rgba(0,0,0,0.15);
}
.sale-card__media {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}
.sale-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s;
}
.sale-card:hover .sale-card__img {
    transform: scale(1.05);
}
.sale-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(0,0,0,0.85) 100%);
}
.sale-card__capacity {
    position: absolute;
    bottom: 20px;
    right: 24px;
    display: flex;
    align-items: baseline;
    gap: 8px;
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}
.sale-card__capacity-num {
    font-family: 'Raleway', sans-serif;
    font-weight: 900;
    font-size: clamp(48px, 6vw, 72px);
    line-height: 1;
    color: var(--sos-primary);
}
.sale-card__capacity-label {
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
.sale-card__badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--sos-primary);
    color: var(--sos-dark);
    font-family: 'Raleway', sans-serif;
    font-weight: 800;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 8px 16px;
    border-radius: 30px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}
.sale-card__badge--green {
    background: var(--sos-green);
    color: #ffffff;
}
.sale-card__body {
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
@media (min-width: 600px) {
    .sale-card__body { padding: 32px; }
}
@media (max-width: 450px) {
    .sale-card__features { grid-template-columns: 1fr; }
}
.sale-card__title {
    font-size: 22px;
    font-weight: 900;
    margin: 0 0 12px;
    color: var(--sos-dark);
    line-height: 1.3;
}
.sale-card__desc {
    color: var(--sos-muted);
    line-height: 1.7;
    margin: 0 0 24px;
    flex-shrink: 0;
}
.sale-card__features-label {
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--sos-green-t);
    margin: 0 0 12px;
}
.sale-card__features {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 16px;
    flex: 1;
}
.sale-card__features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--sos-text);
    line-height: 1.4;
    min-height: 24px;
}
.sale-card__features i {
    color: var(--sos-primary-t);
    width: 20px;
    height: 20px;
    font-size: 15px;
    flex-shrink: 0;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}
.sale-card__cta {
    align-self: stretch;
    text-align: center;
    margin-top: auto;
}

/* Pasek benefitów pod kartami sal */
.sale-benefits {
    background: linear-gradient(135deg, var(--sos-dark) 0%, #2d2d2d 100%);
    border-radius: var(--sos-radius-lg);
    padding: 24px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}
@media (min-width: 500px) {
    .sale-benefits { grid-template-columns: 1fr 1fr; gap: 18px; padding: 28px; }
}
@media (min-width: 1100px) {
    .sale-benefits { grid-template-columns: repeat(4, 1fr); padding: 40px; gap: 24px; }
}
.sale-benefit {
    display: flex;
    align-items: center;
    gap: 14px;
    color: #ffffff;
}
.sale-benefit i {
    width: 44px;
    height: 44px;
    background: var(--sos-primary);
    color: var(--sos-dark);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 18px;
}
.sale-benefit strong {
    display: block;
    font-family: 'Raleway', sans-serif;
    font-weight: 800;
    font-size: 15px;
    color: #ffffff;
    margin-bottom: 4px;
}
.sale-benefit span {
    display: block;
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    line-height: 1.5;
}
.sale-benefit a {
    color: var(--sos-primary);
    text-decoration: none;
    font-weight: 700;
}
.sale-benefit a:hover {
    color: #ffffff;
}

/* === GALERIA SAL === */
.sala-card {
    background: #ffffff;
    border-radius: var(--sos-radius-lg);
    overflow: hidden;
    box-shadow: var(--sos-shadow);
    display: flex;
    flex-direction: column;
}
.sala-card__photo {
    aspect-ratio: 16/10;
    object-fit: cover;
    width: 100%;
}
.sala-card__body { padding: 32px; }
.sala-card h3 {
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 8px;
}
.sala-card__meta {
    font-family: 'Raleway', sans-serif;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 700;
    color: var(--sos-green-t);
    letter-spacing: 0.1em;
    margin-bottom: 16px;
    display: block;
}
.sala-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px 16px;
    margin: 16px 0 24px;
    list-style: none;
    padding: 0;
}
.sala-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--sos-text);
}
.sala-features li::before {
    content: '✓';
    color: var(--sos-green);
    font-weight: 900;
    font-size: 16px;
}

/* === CENNIK === */
.pricing {
    background: var(--sos-light);
    border-radius: var(--sos-radius-lg);
    padding: 32px;
    text-align: center;
}
.pricing h3 { font-size: 22px; margin-bottom: 12px; }
.pricing__row {
    display: grid;
    grid-template-columns: 1fr auto;
    padding: 14px 0;
    border-bottom: 1px solid var(--sos-line);
    text-align: left;
    align-items: baseline;
    gap: 16px;
}
.pricing__row:last-child { border-bottom: none; }
.pricing__row strong { font-family: 'Raleway', sans-serif; font-weight: 700; }
.pricing__row span {
    font-family: 'Raleway', sans-serif;
    font-weight: 800;
    color: var(--sos-primary-t);
    white-space: nowrap;
}

/* === KONTAKT KARTY === */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 40px 0;
}
.contact-grid.contact-grid--4col { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 960px) and (min-width: 721px) {
    .contact-grid.contact-grid--4col { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
    .contact-grid { grid-template-columns: 1fr; gap: 18px; }
}
.contact-card {
    background: #ffffff;
    border-radius: var(--sos-radius);
    padding: 28px;
    box-shadow: var(--sos-shadow);
    text-align: center;
}
.contact-card__icon {
    font-size: 32px;
    color: var(--sos-green-t);
    margin-bottom: 12px;
    display: block;
}
.contact-card h3 {
    font-size: 17px;
    margin-bottom: 8px;
}
.contact-card a {
    color: var(--sos-dark);
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
}
.contact-card a:hover { color: var(--sos-green-t); text-decoration: underline; }
.contact-card p {
    margin: 4px 0 0;
    color: var(--sos-muted);
    font-size: 14px;
}

/* === FOOTER === */
.site-footer {
    background: var(--sos-dark);
    color: #d4d4d4;
    padding: 64px 0 24px;
}
.site-footer h4 {
    color: #ffffff;
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 48px;
}
@media (min-width: 700px) {
    .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
}
.site-footer a {
    color: #d4d4d4;
    display: block;
    padding: 4px 0;
    font-size: 14px;
}
.site-footer a:hover { color: var(--sos-primary); }
.footer-brand img {
    height: 60px;
    width: auto;
    margin-bottom: 16px;
    background: #ffffff;
    padding: 8px;
    border-radius: 8px;
}
.footer-brand p {
    font-size: 13px;
    line-height: 1.7;
    margin: 0 0 16px;
    color: #a8a8a8;
}
.footer-eu {
    background: #ffffff;
    padding: 12px;
    border-radius: 8px;
    margin-top: 20px;
    text-align: center;
}
.footer-eu img { max-width: 380px; margin: 0 auto; max-height: 36px; object-fit: contain; }
.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 24px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 12px;
    font-size: 13px;
    color: #888;
}
.footer-bottom a {
    display: inline;
    padding: 0;
    margin-right: 16px;
}
.legal-id {
    font-family: 'Roboto Mono', 'Courier New', monospace;
    font-size: 12px;
    color: #888;
    line-height: 1.8;
}

/* === FIXY MOBILE dla index.html === */
/* Obrócona ramka w "OLIWSKIE SŁONECZKO TO..." — wyrównujemy na mobile */
@media (max-width: 768px) {
    .section--dark img[style*="transform:rotate"] {
        transform: none !important;
    }
    .section--dark div[style*="rotate(4deg)"] {
        transform: none !important;
        border-width: 6px !important;
    }
}

/* Kółko żółte w "Nazywamy się" — mniejsze na mobile */
@media (max-width: 600px) {
    .section .grid-2 div[style*="border-radius:50%"] {
        max-width: 320px !important;
        margin: 0 auto;
    }
}

/* === STICKY CTA MOBILE === */
.sticky-cta-mobile {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 90;
    padding: 12px;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(8px);
}
@media (max-width: 1023px) {
    .sticky-cta-mobile { display: block; }
    body { padding-bottom: 76px; }
}
@media (max-width: 375px) {
    .sticky-cta-mobile { padding: 8px 10px; }
    .sticky-cta-mobile__btn { padding: 12px 16px; font-size: 14px; }
}
.sticky-cta-mobile__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px 20px;
    background: var(--sos-primary);
    color: var(--sos-dark);
    font-family: 'Raleway', sans-serif;
    font-weight: 800;
    font-size: 15px;
    text-decoration: none;
    border-radius: 12px;
    min-height: 48px;
}
.sticky-cta-mobile__btn:hover {
    background: var(--sos-primary-d);
    color: var(--sos-dark);
}

/* === COOKIE BANNER === */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--sos-dark);
    color: #ffffff;
    padding: 20px 16px;
    z-index: 9000;
    box-shadow: 0 -4px 16px rgba(0,0,0,0.2);
    display: none;
}
.cookie-banner.is-visible { display: block; }
.cookie-banner__inner {
    max-width: var(--sos-container);
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
    justify-content: space-between;
}
.cookie-banner p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    flex: 1;
    min-width: 240px;
}
.cookie-banner a { color: var(--sos-primary); text-decoration: underline; }
.cookie-banner__btns { display: flex; gap: 8px; flex-wrap: wrap; }
.cookie-banner__btns .btn { padding: 10px 20px; font-size: 12px; min-height: 40px; }

/* === BREADCRUMBS === */
.breadcrumbs {
    background: var(--sos-light);
    padding: 12px 0;
    font-size: 13px;
}
.breadcrumbs ol {
    list-style: none;
    margin: 0;
    padding: 0 16px;
    max-width: var(--sos-container);
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    color: var(--sos-muted);
}
.breadcrumbs li::after { content: '›'; margin-left: 6px; color: #aaa; }
.breadcrumbs li:last-child::after { content: ''; }
.breadcrumbs a { color: var(--sos-green-t); }

/* === BADGE / TAG === */
.badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 30px;
    font-family: 'Raleway', sans-serif;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    background: var(--sos-primary);
    color: var(--sos-dark);
}
.badge--green { background: var(--sos-green); color: #ffffff; }
.badge--outline { background: transparent; border: 2px solid var(--sos-primary); color: var(--sos-primary-t); }
.badge--note { background: #fff7cc; color: var(--sos-primary-t); font-weight: 600; text-transform: none; letter-spacing: 0; padding: 6px 12px; font-size: 13px; }

/* === ALERT (info box) === */
.alert {
    padding: 20px 24px;
    border-radius: 12px;
    background: #fff7cc;
    border-left: 5px solid var(--sos-primary);
    margin: 24px 0;
    font-size: 15px;
    line-height: 1.7;
}
.alert--info { background: #e6f2ff; border-left-color: #1e88e5; }
.alert--green { background: #f0f9e8; border-left-color: var(--sos-green); }
.alert strong { color: var(--sos-dark); }

/* === STEPS (jak się zapisać) === */
.steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    counter-reset: step;
}
@media (min-width: 700px) {
    .steps { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1000px) {
    .steps { grid-template-columns: repeat(4, 1fr); }
}
.step {
    background: #ffffff;
    border-radius: var(--sos-radius);
    padding: 28px 24px;
    box-shadow: var(--sos-shadow);
    position: relative;
    padding-top: 60px;
    counter-increment: step;
}
.step::before {
    content: counter(step);
    position: absolute;
    top: 20px;
    left: 24px;
    width: 32px;
    height: 32px;
    background: var(--sos-primary);
    color: var(--sos-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Raleway', sans-serif;
    font-weight: 900;
    font-size: 16px;
}
.step h3 {
    font-size: 17px;
    font-weight: 800;
    margin-bottom: 8px;
}
.step p {
    font-size: 14px;
    color: var(--sos-muted);
    margin: 0;
    line-height: 1.7;
}

/* === DOWNLOAD CARD === */
.download {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #ffffff;
    border: 2px solid var(--sos-line);
    border-radius: 12px;
    padding: 16px 20px;
    transition: border-color 0.2s, transform 0.2s;
    text-decoration: none;
    color: var(--sos-dark);
}
.download:hover {
    border-color: var(--sos-primary);
    transform: translateY(-2px);
    color: var(--sos-dark);
}
.download__icon {
    width: 48px;
    height: 48px;
    background: var(--sos-primary);
    color: var(--sos-dark);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 18px;
    font-weight: 900;
    font-family: 'Raleway', sans-serif;
}
.download__body { flex: 1; }
.download__title { font-weight: 700; font-size: 15px; margin-bottom: 2px; }
.download__meta { font-size: 12px; color: var(--sos-muted); }

/* === ACCESSIBILITY === */
:focus-visible {
    outline: 3px solid var(--sos-primary);
    outline-offset: 3px;
    border-radius: 4px;
}
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

/* === SCROLLBAR === */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--sos-light); }
::-webkit-scrollbar-thumb { background: var(--sos-primary); border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background: var(--sos-primary-d); }

/* === UTILITY === */
.text-center { text-align: center; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-40 { margin-bottom: 40px; }
.mb-56 { margin-bottom: 56px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.bg-light { background: var(--sos-light); }
.bg-white { background: #ffffff; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 48px; }
.divider { height: 4px; width: 60px; background: var(--sos-primary); border: none; margin: 16px 0 24px; border-radius: 2px; }
