/* === Przedsiębiorczy Krąg — jasny motyw === */
:root {
    --bg: #fafafa;
    --bg-soft: #f3f4f7;
    --surface: #ffffff;
    --text: #16161e;
    --text-dim: #5b6071;
    --text-soft: #8a8fa1;
    --border: #e7e8ee;
    --border-soft: #f0f1f5;
    --shadow-sm: 0 2px 12px rgba(20,20,40,0.05);
    --shadow-md: 0 12px 32px rgba(20,20,40,0.08);
    --shadow-lg: 0 24px 60px rgba(20,20,40,0.12);
    --radius: 16px;
    --radius-sm: 10px;
    --radius-lg: 22px;

    /* Akcent — z logo Przedsiebiorczego Kregu */
    --c-orange: #ff8a3d;
    --c-pink:   #ff3d8a;
    --c-blue:   #3da7ff;
    --grad-brand: linear-gradient(135deg, #ff8a3d 0%, #ff3d8a 50%, #3da7ff 100%);
    --grad-soft:  linear-gradient(135deg, rgba(255,138,61,0.15), rgba(255,61,138,0.15) 50%, rgba(61,167,255,0.15));
    --grad-text:  linear-gradient(120deg, #ff5a3d 0%, #ff3d8a 50%, #3d8aff 100%);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
    font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

/* === Layout === */
:root { --container: 1080px; }
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 28px;
}
section { padding: 88px 0; }
section.tight { padding: 56px 0; }

/* === Typography === */
h1, h2, h3, h4 {
    font-weight: 800;
    letter-spacing: -0.025em;
    line-height: 1.15;
    margin: 0 0 16px;
}
h1 { font-size: clamp(2.2rem, 4.5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3.2vw, 2.6rem); margin-bottom: 20px; }
h3 { font-size: 1.25rem; }
p { margin: 0 0 14px; }
p.lead {
    font-size: clamp(1.05rem, 1.5vw, 1.25rem);
    color: var(--text-dim);
    max-width: 680px;
}
.section-eyebrow {
    display: inline-block;
    color: var(--c-pink);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 14px;
}
.section-head { text-align: center; margin-bottom: 56px; }
.section-head h2 { margin-bottom: 12px; }
.section-head p { color: var(--text-dim); max-width: 640px; margin: 0 auto; font-size: 1.08rem; }

.muted { color: var(--text-dim); }
.text-grad {
    background: var(--grad-text);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* === Buttons === */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 28px;
    border-radius: var(--radius-sm);
    border: none;
    font-size: 1rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s ease;
    line-height: 1;
    white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-primary {
    background: var(--grad-brand);
    color: #fff;
    box-shadow: 0 10px 30px rgba(255,61,138,0.30);
}
.btn-primary:hover { box-shadow: 0 16px 38px rgba(255,61,138,0.40); }
.btn-secondary {
    background: var(--surface);
    color: var(--text);
    border: 1.5px solid var(--border);
}
.btn-secondary:hover { border-color: var(--text); }
.btn-ghost {
    background: transparent;
    color: var(--text-dim);
}
.btn-ghost:hover { color: var(--text); }
.btn-big { padding: 20px 36px; font-size: 1.1rem; }
.btn-danger {
    background: #fee;
    color: #d33;
    border: 1px solid #fcc;
}

/* === Navbar === */
.nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-soft);
}
.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 30px;
}
.nav-logo img { height: 38px; width: auto; }
.nav-menu {
    display: flex;
    gap: 4px;
    align-items: center;
}
.nav-menu a {
    padding: 8px 14px;
    color: var(--text-dim);
    font-weight: 500;
    font-size: 0.95rem;
    border-radius: 8px;
    transition: all 0.15s;
}
.nav-menu a:hover { color: var(--text); background: var(--bg-soft); }
.nav-menu .btn { padding: 10px 18px; font-size: 0.92rem; margin-left: 8px; }
.nav-menu .btn-primary { color: #fff; }
.nav-menu .btn-primary:hover { color: #fff; background: var(--grad-brand); }

/* === Hero === */
.hero {
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: "";
    position: absolute;
    top: -100px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: var(--grad-soft);
    filter: blur(80px);
    border-radius: 50%;
    z-index: 0;
}
.hero-inner {
    position: relative;
    z-index: 2;
}
.hero .container { position: relative; z-index: 2; }

/* === Hero z full-bleed zdjęciami w tle === */
.hero.has-photos {
    min-height: 620px;
    display: flex;
    align-items: center;
    color: #fff;
}
.hero.has-photos::before { display: none; }

.hero-photos {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}
.hero-photo {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.4s ease;
    transform: scale(1.04);
}
.hero-photo.active {
    opacity: 1;
    animation: hero-zoom 8s ease-out forwards;
}
@keyframes hero-zoom {
    from { transform: scale(1.04); }
    to   { transform: scale(1.12); }
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(110deg, rgba(8,8,18,0.88) 0%, rgba(8,8,18,0.65) 45%, rgba(8,8,18,0.30) 100%),
        linear-gradient(to top, rgba(8,8,18,0.55), transparent 50%);
    z-index: 1;
}
.hero-photo-dots {
    position: absolute;
    bottom: 24px;
    left: 0; right: 0;
    display: flex;
    justify-content: center;
    gap: 8px;
    z-index: 3;
}
.hero-photo-dot {
    width: 32px;
    height: 4px;
    border-radius: 2px;
    background: rgba(255,255,255,0.35);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: background 0.2s, width 0.2s;
}
.hero-photo-dot.active { background: #fff; width: 44px; }
.hero-photo-dot:hover { background: rgba(255,255,255,0.6); }

/* Tekst i przyciski w hero z fotkami w tle */
.hero.has-photos h1 { color: #fff; }
.hero.has-photos h1 .text-grad {
    background: linear-gradient(120deg, #ffb070 0%, #ff6aa3 50%, #6ec4ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.hero.has-photos .section-eyebrow {
    color: #ffb070;
}
.hero.has-photos p.lead {
    color: rgba(255,255,255,0.92);
}
.hero.has-photos .hero-bar {
    border-top-color: rgba(255,255,255,0.18);
    color: rgba(255,255,255,0.82);
}
.hero.has-photos .hero-bar strong { color: #fff; }
.hero.has-photos .btn-secondary {
    background: rgba(255,255,255,0.10);
    border-color: rgba(255,255,255,0.25);
    color: #fff;
    backdrop-filter: blur(10px);
}
.hero.has-photos .btn-secondary:hover {
    background: rgba(255,255,255,0.18);
    border-color: rgba(255,255,255,0.45);
}

/* === Galeria === */
.gallery-bg { background: var(--bg-soft); }
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}
.gallery-grid.cnt-2 { grid-template-columns: repeat(2, 1fr); max-width: 720px; margin: 0 auto; }
.gallery-grid.cnt-3 { grid-template-columns: repeat(3, 1fr); max-width: 900px; margin: 0 auto; }
.gallery-item {
    aspect-ratio: 1;
    border-radius: 14px;
    overflow: hidden;
    cursor: pointer;
    background: var(--bg-soft);
    position: relative;
}
.gallery-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    display: block;
}
.gallery-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.25), transparent 40%);
    opacity: 0;
    transition: opacity 0.2s;
}
.gallery-item:hover::after { opacity: 1; }
.gallery-item:hover img { transform: scale(1.05); }

/* === Lightbox === */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(10,10,16,0.94);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.22s, visibility 0.22s;
    padding: 24px;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox-img {
    max-width: 92vw;
    max-height: 88vh;
    border-radius: 12px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.6);
}
.lightbox-btn {
    position: absolute;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.18);
    color: #fff;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s;
    backdrop-filter: blur(8px);
}
.lightbox-btn:hover { background: rgba(255,255,255,0.22); }
.lightbox-close { top: 24px; right: 24px; }
.lightbox-prev  { left: 24px;  top: 50%; transform: translateY(-50%); }
.lightbox-next  { right: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-counter {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
    font-variant-numeric: tabular-nums;
}
.hero h1 {
    margin-bottom: 24px;
}
.hero p.lead {
    font-size: clamp(1.1rem, 1.8vw, 1.4rem);
    margin-bottom: 36px;
}
.hero-ctas {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}
.hero-bar {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    padding-top: 28px;
    border-top: 1px solid var(--border);
    color: var(--text-dim);
    font-size: 0.95rem;
}
.hero-bar strong { color: var(--text); }
.hero-bar .item { display: flex; gap: 10px; align-items: center; }
.hero-bar .dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--grad-brand);
    flex-shrink: 0;
}

/* === Three cards (czym jest) === */
.cards-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.card-feat {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px 28px;
    transition: all 0.25s ease;
}
.card-feat:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}
.card-feat .icon {
    width: 56px; height: 56px;
    background: var(--grad-soft);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--c-pink);
}
.card-feat .icon svg { width: 28px; height: 28px; }
.icon-svg { display: block; }
.card-feat h3 { font-size: 1.3rem; margin-bottom: 10px; }
.card-feat p { color: var(--text-dim); margin: 0; }

/* === Kroki === */
.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    counter-reset: step;
}
.step {
    position: relative;
    padding: 32px 24px 24px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}
.step .num {
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--c-pink);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 14px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.step .num::before {
    content: "";
    width: 28px;
    height: 28px;
    background: var(--grad-brand);
    border-radius: 50%;
    display: inline-block;
    color: #fff;
    line-height: 28px;
    text-align: center;
    font-size: 0.95rem;
}
.step:nth-child(1) .num::before { content: "1"; }
.step:nth-child(2) .num::before { content: "2"; }
.step:nth-child(3) .num::before { content: "3"; }
.step:nth-child(4) .num::before { content: "4"; }
.step h3 { font-size: 1.15rem; margin-bottom: 6px; }
.step p { color: var(--text-dim); margin: 0; font-size: 0.97rem; }

/* === Korzysci === */
.benefits-bg { background: var(--bg-soft); }
.benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.benefit {
    display: flex;
    gap: 16px;
    padding: 24px;
    background: var(--surface);
    border-radius: var(--radius);
    border: 1px solid var(--border);
}
.benefit .check {
    width: 36px; height: 36px;
    border-radius: 10px;
    background: var(--grad-brand);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.benefit .check svg { width: 18px; height: 18px; }
.benefit h4 { font-size: 1.05rem; margin: 0 0 4px; }
.benefit p { color: var(--text-dim); margin: 0; font-size: 0.93rem; }

/* === Open meetings === */
.meeting-banner {
    background: var(--grad-brand);
    color: #fff;
    border-radius: var(--radius-lg);
    padding: 56px 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.meeting-banner::before, .meeting-banner::after {
    content: "";
    position: absolute;
    width: 300px; height: 300px;
    border-radius: 50%;
    background: rgba(255,255,255,0.10);
}
.meeting-banner::before { top: -100px; left: -100px; }
.meeting-banner::after { bottom: -100px; right: -100px; }
.meeting-banner > * { position: relative; z-index: 1; }
.meeting-banner h2 { color: #fff; margin-bottom: 16px; }
.meeting-banner p { color: rgba(255,255,255,0.92); font-size: 1.1rem; max-width: 640px; margin: 0 auto 28px; }
.meeting-banner .btn {
    background: #fff;
    color: var(--text);
}
.meeting-banner .btn:hover { background: var(--text); color: #fff; }

.meeting-facts {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 36px;
    text-align: left;
}
.meeting-fact {
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 12px;
    padding: 16px 18px;
    color: #fff;
    backdrop-filter: blur(8px);
}
.meeting-fact .label { font-size: 0.78rem; opacity: 0.75; text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 4px; }
.meeting-fact .value { font-size: 1.05rem; font-weight: 600; }

/* === Timeline spotkan === */
.timeline {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-bottom: 48px;
    position: relative;
}
.timeline::before {
    content: "";
    position: absolute;
    left: 8%; right: 8%;
    top: 30px;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--border) 8%, var(--border) 92%, transparent 100%);
    z-index: 0;
}
.tl-item {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 18px 20px;
    text-align: center;
    position: relative;
    z-index: 1;
    transition: all 0.2s;
}
.tl-item.upcoming {
    border-color: transparent;
    background: var(--grad-brand);
    color: #fff;
    box-shadow: 0 14px 36px rgba(255,61,138,0.25);
    transform: translateY(-4px);
}
.tl-item.upcoming .tl-no,
.tl-item.upcoming .tl-date,
.tl-item.upcoming .tl-label { color: #fff; }
.tl-no {
    display: inline-flex;
    width: 36px; height: 36px;
    background: var(--grad-brand);
    color: #fff;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.95rem;
    margin-bottom: 10px;
    box-shadow: 0 6px 16px rgba(255,61,138,0.25);
}
.tl-item.upcoming .tl-no {
    background: #fff;
    color: var(--c-pink);
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}
.tl-date {
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 2px;
}
.tl-label {
    color: var(--text-dim);
    font-size: 0.88rem;
}
.tl-tag {
    display: inline-block;
    margin-top: 8px;
    padding: 3px 10px;
    border-radius: 999px;
    font-size: 0.74rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
    background: rgba(255,255,255,0.25);
    color: #fff;
}

/* === Members grid === */
.members-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 16px;
}
.member-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px 18px;
    text-align: center;
    transition: all 0.2s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    min-height: 200px;
}
.member-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}
.member-logo {
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}
.member-logo img {
    max-height: 80px;
    max-width: 160px;
    object-fit: contain;
}
.member-logo.fallback {
    background: var(--grad-soft);
    border-radius: 10px;
    font-weight: 800;
    color: var(--c-pink);
    font-size: 1.8rem;
}
.member-info { width: 100%; }
.member-name { font-weight: 700; font-size: 1rem; margin-bottom: 2px; }
.member-industry { color: var(--text-dim); font-size: 0.85rem; margin-bottom: 8px; }
.member-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: var(--c-pink);
    font-size: 0.85rem;
    font-weight: 600;
}
.member-link:hover { text-decoration: underline; }

/* === Checkbox (RODO) === */
.check-line {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 10px;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--text-dim);
    line-height: 1.5;
}
.check-line input[type=checkbox] {
    width: 20px; height: 20px;
    flex-shrink: 0;
    accent-color: var(--c-pink);
    margin-top: 2px;
}
.check-line a { color: var(--c-pink); font-weight: 600; }
.check-line a:hover { text-decoration: underline; }
.check-line .req { color: var(--c-pink); }

/* === Stats === */
.stats-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-bottom: 22px;
}
.stat-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 22px 24px;
    position: relative;
    overflow: hidden;
}
.stat-card .label {
    color: var(--text-soft);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 700;
    margin-bottom: 8px;
}
.stat-card .value {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 6px;
    font-variant-numeric: tabular-nums;
}
.stat-card .sub {
    color: var(--text-dim);
    font-size: 0.85rem;
}
.stat-card .sub strong { color: var(--text); }
.stat-card.accent {
    background: var(--grad-brand);
    color: #fff;
    border-color: transparent;
}
.stat-card.accent .label,
.stat-card.accent .sub,
.stat-card.accent .sub strong { color: rgba(255,255,255,0.9); }

.chart {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    height: 220px;
    padding: 16px 0 8px;
    border-bottom: 1px solid var(--border);
}
.chart .bar-wrap {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    height: 100%;
    cursor: default;
    position: relative;
}
.chart .bar {
    width: 100%;
    max-width: 32px;
    background: var(--grad-brand);
    border-radius: 4px 4px 0 0;
    min-height: 2px;
    transition: opacity 0.15s, transform 0.15s;
    transform-origin: bottom;
}
.chart .bar.today { box-shadow: 0 0 0 2px rgba(255,61,138,0.30); }
.chart .bar-wrap:hover .bar { opacity: 0.85; transform: scaleY(1.04); }
.chart .bar-value {
    position: absolute;
    top: 0;
    background: var(--text);
    color: #fff;
    padding: 2px 8px;
    border-radius: 6px;
    font-size: 0.72rem;
    font-weight: 600;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.15s;
    white-space: nowrap;
    transform: translateY(-110%);
}
.chart .bar-wrap:hover .bar-value { opacity: 1; }
.chart-labels {
    display: flex;
    gap: 4px;
    margin-top: 6px;
}
.chart-labels .lbl {
    flex: 1;
    text-align: center;
    font-size: 0.7rem;
    color: var(--text-soft);
    font-variant-numeric: tabular-nums;
}

.stats-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-top: 22px;
}
.top-list { list-style: none; padding: 0; margin: 0; }
.top-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-soft);
    gap: 12px;
}
.top-list li:last-child { border-bottom: none; }
.top-list .l {
    font-family: ui-monospace, Menlo, Consolas, monospace;
    font-size: 0.88rem;
    word-break: break-all;
    color: var(--text);
}
.top-list .r {
    font-variant-numeric: tabular-nums;
    color: var(--text-dim);
    font-size: 0.88rem;
    white-space: nowrap;
}
.top-list .r strong { color: var(--text); }
.feed { font-size: 0.85rem; }
.feed-row {
    display: grid;
    grid-template-columns: 100px 1fr 130px;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px solid var(--border-soft);
    align-items: center;
}
.feed-row:last-child { border-bottom: none; }
.feed-row .time { color: var(--text-soft); font-variant-numeric: tabular-nums; }
.feed-row .path { font-family: ui-monospace, Menlo, Consolas, monospace; word-break: break-all; }
.feed-row .ip   { color: var(--text-dim); font-variant-numeric: tabular-nums; font-size: 0.8rem; text-align: right; }
@media (max-width: 720px) {
    .stats-cards { grid-template-columns: 1fr 1fr; }
    .stats-2col  { grid-template-columns: 1fr; }
    .feed-row    { grid-template-columns: 90px 1fr; }
    .feed-row .ip { display: none; }
}

/* === Static page (privacy) === */
.static-content {
    max-width: 800px;
    margin: 0 auto;
    background: var(--surface);
    padding: 48px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}
.static-content h2 { margin-top: 32px; font-size: 1.5rem; }
.static-content h2:first-of-type { margin-top: 0; }
.static-content p, .static-content li { color: var(--text-dim); }
.static-content strong { color: var(--text); }

/* === FAQ === */
.faq-list {
    max-width: 820px;
    margin: 0 auto;
}
.faq-item {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    margin-bottom: 10px;
    overflow: hidden;
    transition: all 0.2s;
}
.faq-item[open] {
    border-color: transparent;
    box-shadow: var(--shadow-sm);
}
.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 22px 26px;
    font-weight: 600;
    font-size: 1.05rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: "+";
    font-size: 1.4rem;
    color: var(--c-pink);
    font-weight: 400;
    transition: transform 0.2s;
    flex-shrink: 0;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .ans { padding: 0 26px 22px; color: var(--text-dim); }
.faq-item .ans p { margin: 0; }

/* === Form === */
.form-section { background: var(--bg-soft); }
.form-wrap {
    background: var(--surface);
    border-radius: var(--radius-lg);
    padding: 48px;
    box-shadow: var(--shadow-md);
    max-width: 760px;
    margin: 0 auto;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.field { margin-bottom: 16px; }
.field label {
    display: block;
    font-size: 0.88rem;
    color: var(--text);
    margin-bottom: 6px;
    font-weight: 600;
}
.field label .req { color: var(--c-pink); }
.field input, .field textarea, .field select {
    width: 100%;
    padding: 14px 16px;
    background: var(--bg);
    border: 1.5px solid var(--border);
    border-radius: 10px;
    font: inherit;
    color: var(--text);
    transition: all 0.15s;
}
.field input:focus, .field textarea:focus, .field select:focus {
    outline: none;
    border-color: var(--c-pink);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(255,61,138,0.10);
}
.field textarea { min-height: 110px; resize: vertical; }
.field .hint { color: var(--text-soft); font-size: 0.83rem; margin-top: 6px; }
.form-error {
    background: #fff0f0;
    border: 1px solid #ffd0d0;
    color: #c0392b;
    padding: 14px 18px;
    border-radius: 10px;
    margin-bottom: 18px;
}
.form-success {
    background: #f0fff5;
    border: 1px solid #d0ffe0;
    color: #1a7e3c;
    padding: 14px 18px;
    border-radius: 10px;
    margin-bottom: 18px;
}

/* === Footer === */
.footer {
    background: #0e0e16;
    color: #fff;
    padding: 60px 0 30px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}
.footer-logo {
    background: #fff;
    border-radius: 10px;
    padding: 12px 16px;
    display: inline-block;
    margin-bottom: 16px;
}
.footer-logo img { height: 36px; }
.footer h4 { color: #fff; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.14em; margin-bottom: 16px; }
.footer p, .footer a { color: rgba(255,255,255,0.65); font-size: 0.95rem; }
.footer a:hover { color: #fff; }
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer ul li { margin-bottom: 8px; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 24px;
    color: rgba(255,255,255,0.4);
    font-size: 0.85rem;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

/* === Admin === */
.admin-shell {
    padding: 24px;
    min-height: 100vh;
    background: var(--bg);
}
.admin-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 16px 22px;
    margin-bottom: 22px;
    flex-wrap: wrap;
    gap: 12px;
}
.admin-bar .left { display: flex; align-items: center; gap: 14px; }
.admin-bar .left img { height: 32px; }
.admin-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
}
.admin-card.compact { padding: 18px; }

table { width: 100%; border-collapse: collapse; }
th, td { text-align: left; padding: 14px 12px; border-bottom: 1px solid var(--border-soft); vertical-align: top; }
th { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-soft); font-weight: 700; }
tr:last-child td { border-bottom: none; }
tbody tr:hover { background: var(--bg-soft); cursor: pointer; }

.badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 600;
    background: var(--bg-soft);
    color: var(--text-dim);
}
.badge.new       { background: #fff0e0; color: #c66800; }
.badge.contacted { background: #e0e8ff; color: #2e4fbf; }
.badge.accepted  { background: #e0ffe5; color: #1a7e3c; }
.badge.rejected  { background: #ffe0e0; color: #b32c2c; }

.detail-grid {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 12px 18px;
    margin-bottom: 18px;
}
.detail-grid .k { color: var(--text-dim); font-size: 0.9rem; padding-top: 2px; }
.detail-grid .v { font-weight: 500; word-break: break-word; }

.flash {
    padding: 12px 18px;
    border-radius: 10px;
    margin-bottom: 16px;
    background: #f0fff5;
    border: 1px solid #d0ffe0;
    color: #1a7e3c;
}
.flash.error {
    background: #fff0f0;
    border-color: #ffd0d0;
    color: #c0392b;
}

/* === Login admin === */
.login-shell {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}
.login-card {
    background: var(--surface);
    border-radius: var(--radius-lg);
    padding: 40px;
    max-width: 420px;
    width: 100%;
    box-shadow: var(--shadow-lg);
}

/* === Responsive === */
@media (max-width: 920px) {
    section { padding: 64px 0; }
    .cards-3, .steps, .benefits, .meeting-facts { grid-template-columns: 1fr 1fr; }
    .form-row { grid-template-columns: 1fr; gap: 0; }
    .form-wrap { padding: 32px 24px; }
    .meeting-banner { padding: 40px 24px; }
    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .nav-menu a:not(.btn) { display: none; }
    .hero.has-photos { min-height: 520px; }
    .hero.has-photos .hero-overlay {
        background:
            linear-gradient(180deg, rgba(8,8,18,0.85) 0%, rgba(8,8,18,0.65) 60%, rgba(8,8,18,0.85) 100%);
    }
    .gallery-grid { grid-template-columns: repeat(3, 1fr); }
    .timeline { grid-template-columns: 1fr; }
    .timeline::before { display: none; }
}
@media (max-width: 540px) {
    .cards-3, .steps, .benefits, .meeting-facts { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
