/* ============================================================
   MECENAS BIZNESU — wspólny arkusz stylów (FAZA 2, 12.06.2026)
   Używany przez: sklep.html (katalog), sklep-umowy-najmu.html,
   sklep-audyt-kondycji-prawnej.html, sklep-konsultacja.html, uslugi.html
   Wygląd 1:1 z dotychczasowym brandem (granat #020617 + złoto #c5a47e, Inter).
   ============================================================ */

* { box-sizing: border-box; margin: 0; padding: 0; font-family: 'Inter', system-ui, -apple-system, sans-serif; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body { background-color: #020617; color: #ffffff; line-height: 1.6; overflow-x: hidden; }
a { text-decoration: none; color: inherit; transition: 0.3s; }

:root {
    --primary-gold: #c5a47e;
    --bg-dark: #020617;
    --bg-card: #0f172a;
    --text-grey: #94a3b8;
    --border-color: #1e293b;
    --error-red: #ef4444;
    --success-green: #10b981;
}

/* ---------- HEADER / NAWIGACJA ---------- */
header.site-header {
    position: sticky; top: 0; background-color: rgba(2, 6, 23, 0.95);
    backdrop-filter: blur(10px); border-bottom: 1px solid var(--border-color);
    padding: 15px 5%; display: flex; align-items: center; z-index: 1000;
}
.logo { font-weight: 700; font-size: 1.1rem; display: flex; align-items: center; gap: 0; margin-right: auto; letter-spacing: 1.5px; }
.logo-text { display: flex; gap: 8px; align-items: baseline; }
.logo-text .logo-mecenas { color: #ffffff; }
.logo-text .logo-biznesu { color: var(--primary-gold); }
.nav-container { display: flex; align-items: center; gap: 40px; }
.nav-links { display: flex; gap: 30px; align-items: center; }
.nav-links a { font-size: 0.95rem; font-weight: 500; color: #e2e8f0; }
.nav-links a:hover { color: var(--primary-gold); }
.btn-nav {
    background-color: #1e293b; padding: 12px 24px; border-radius: 8px;
    font-weight: 600; border: 1px solid #334155; white-space: nowrap;
    font-size: 0.95rem; transition: all 0.3s ease;
}
.btn-nav:hover { background-color: #334155; border-color: var(--primary-gold); color: var(--primary-gold); }

.lang-switcher { display: flex; gap: 4px; margin-left: 16px; }
.lang-switcher a {
    display: flex; align-items: center; justify-content: center;
    width: 32px; height: 22px; border-radius: 4px;
    font-size: 0.72rem; font-weight: 700; letter-spacing: 0.5px;
    border: 1px solid var(--border-color); color: var(--text-grey); transition: all 0.3s;
}
.lang-switcher a:hover { border-color: var(--primary-gold); color: var(--primary-gold); }
.lang-switcher a.lang-active { background: var(--primary-gold); color: var(--bg-dark); border-color: var(--primary-gold); pointer-events: none; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; border: none; background: none; z-index: 1100; }
.hamburger span { display: block; width: 22px; height: 2px; background-color: #e2e8f0; border-radius: 2px; transition: all 0.3s ease; }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
.mobile-menu { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(2, 6, 23, 0.98); backdrop-filter: blur(20px); z-index: 1050; flex-direction: column; align-items: center; justify-content: center; gap: 32px; }
.mobile-menu.active { display: flex; }
.mobile-menu a { font-size: 1.3rem; font-weight: 600; color: #e2e8f0; transition: color 0.3s; }
.mobile-menu a:hover { color: var(--primary-gold); }
.mobile-menu .btn-nav { padding: 16px 40px; font-size: 1.1rem; margin-top: 10px; }

/* ---------- PRZYCISKI ---------- */
.btn-primary {
    background-color: white; color: var(--bg-dark); padding: 16px 36px;
    border-radius: 10px; font-weight: 700; font-size: 1.05rem;
    cursor: pointer; border: none; display: inline-block;
    transition: all 0.3s ease; letter-spacing: 0.2px; text-align: center;
}
.btn-outline {
    background-color: transparent; color: white; border: 2px solid #475569;
    padding: 16px 36px; border-radius: 10px; font-weight: 600;
    font-size: 1.05rem; cursor: pointer; display: inline-block;
    transition: all 0.3s ease; letter-spacing: 0.2px; text-align: center;
}
.btn-primary:hover { background-color: #f1f5f9; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(255,255,255,0.15); }
.btn-outline:hover { border-color: var(--primary-gold); color: var(--primary-gold); transform: translateY(-2px); }
.btn-gold { display: inline-block; background: var(--primary-gold); color: #0b1220; font-weight: 700; padding: 14px 28px; border-radius: 10px; text-decoration: none; transition: all .2s; text-align: center; letter-spacing: 0.2px; }
.btn-gold:hover { opacity: .88; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(197,164,126,0.25); }
.cta-group { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---------- SEKCJE / TYPOGRAFIA (czytelność ~70 znaków) ---------- */
.section { max-width: 1100px; margin: 0 auto; padding: 44px 5%; }
.section-tight { padding-top: 20px; padding-bottom: 20px; }
.kicker { text-align: center; font-size: 0.8rem; font-weight: 700; color: var(--primary-gold); letter-spacing: 2.5px; text-transform: uppercase; margin-bottom: 10px; }
.h2 { font-size: 1.6rem; margin: 0 0 18px; text-align: center; line-height: 1.3; }
.h2 span { color: var(--primary-gold); }
.lead { color: var(--text-grey); max-width: 70ch; margin: 0 auto 26px; font-size: 1.05rem; line-height: 1.75; text-align: center; }
.prose { color: var(--text-grey); line-height: 1.75; max-width: 70ch; margin: 0 auto 16px; }
.prose strong { color: #e2e8f0; }
.center { text-align: center; }

/* ---------- HERO PRODUKTU / KATALOGU ---------- */
.page-hero { text-align: center; padding-top: 56px; }
.page-hero h1 { font-size: clamp(1.9rem, 4vw, 2.7rem); line-height: 1.22; margin-bottom: 16px; }
.page-hero h1 span { color: var(--primary-gold); }
.price-hero { margin: 6px 0 22px; }
.price-hero .big { color: var(--primary-gold); font-size: 2rem; font-weight: 700; }
.price-hero .small { display: block; color: var(--text-grey); font-size: 0.92rem; margin-top: 2px; }

/* ---------- BREADCRUMB ---------- */
.breadcrumbs { max-width: 1100px; margin: 0 auto; padding: 18px 5% 0; font-size: 0.85rem; color: var(--text-grey); }
.breadcrumbs a { color: var(--text-grey); }
.breadcrumbs a:hover { color: var(--primary-gold); }
.breadcrumbs .sep { margin: 0 8px; color: #475569; }
.breadcrumbs .here { color: #e2e8f0; }

/* ---------- PASEK ZAUFANIA ---------- */
.trust-bar { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; margin: 26px auto 0; max-width: 1000px; }
.trust-item { display: flex; align-items: center; gap: 9px; background: var(--bg-card); border: 1px solid var(--border-color); border-radius: 999px; padding: 9px 18px; color: var(--text-grey); font-size: 0.85rem; font-weight: 500; }
.trust-item svg { width: 16px; height: 16px; color: var(--primary-gold); flex-shrink: 0; }

/* ---------- KATALOG: KAFLE PRODUKTÓW ---------- */
.category-block { margin-top: 40px; }
.category-head { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.category-head h2 { font-size: 1.35rem; white-space: nowrap; }
.category-head .line { height: 1px; flex: 1; background: linear-gradient(to right, var(--border-color), transparent); }
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.product-tile {
    background: var(--bg-card); border: 1px solid var(--border-color); border-radius: 16px;
    padding: 30px 26px; display: flex; flex-direction: column; transition: all 0.3s ease; position: relative;
}
.product-tile:hover { border-color: var(--primary-gold); transform: translateY(-4px); box-shadow: 0 12px 40px rgba(197,164,126,0.08); }
.product-tile .tile-icon { width: 52px; height: 52px; border-radius: 13px; background: rgba(197,164,126,0.1); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.product-tile .tile-icon svg { width: 26px; height: 26px; color: var(--primary-gold); }
.product-tile h3 { font-size: 1.15rem; margin-bottom: 8px; line-height: 1.35; }
.product-tile p { color: var(--text-grey); font-size: 0.92rem; line-height: 1.6; flex: 1; margin-bottom: 18px; }
.product-tile .tile-price { color: var(--primary-gold); font-weight: 700; font-size: 1.05rem; margin-bottom: 14px; }
.product-tile .tile-price small { color: var(--text-grey); font-weight: 400; font-size: 0.8rem; }
.product-tile.soon { opacity: 0.75; }
.product-tile.soon:hover { border-color: var(--border-color); transform: none; box-shadow: none; }
.soon-badge { position: absolute; top: 18px; right: 18px; background: rgba(197,164,126,0.12); color: var(--primary-gold); font-size: 0.7rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; padding: 4px 12px; border-radius: 999px; border: 1px solid rgba(197,164,126,0.25); }

/* ---------- KARTY-IKONY (dla kogo / kroki / typy) ---------- */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 24px; }
.feature-grid.cols4 { grid-template-columns: repeat(4, 1fr); }
.feature-card { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: 12px; padding: 24px 22px; }
.feature-card .fc-icon { width: 42px; height: 42px; border-radius: 11px; background: rgba(197,164,126,0.1); display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.feature-card .fc-icon svg { width: 21px; height: 21px; color: var(--primary-gold); }
.feature-card h3 { color: #e2e8f0; font-size: 1.02rem; margin-bottom: 8px; line-height: 1.4; }
.feature-card h3 .gold { color: var(--primary-gold); }
.feature-card p { color: var(--text-grey); font-size: 0.9rem; line-height: 1.65; }

/* ---------- KROKI Z NUMERAMI ---------- */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 24px; }
.steps-grid.cols3 { grid-template-columns: repeat(3, 1fr); }
.step-card { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: 12px; padding: 24px 22px; position: relative; }
.step-card .step-no { width: 34px; height: 34px; border-radius: 50%; background: var(--primary-gold); color: #0b1220; font-weight: 700; font-size: 1rem; display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.step-card h3 { color: #e2e8f0; font-size: 1rem; margin-bottom: 8px; line-height: 1.4; }
.step-card p { color: var(--text-grey); font-size: 0.88rem; line-height: 1.65; }

/* ---------- CHECKLISTA Z IKONAMI ---------- */
.check-list { max-width: 760px; margin: 20px auto 0; display: grid; gap: 12px; }
.check-list.cols2 { max-width: 900px; grid-template-columns: 1fr 1fr; }
.check-item { display: flex; align-items: flex-start; gap: 13px; background: var(--bg-card); border: 1px solid var(--border-color); border-radius: 10px; padding: 15px 18px; }
.check-item svg { width: 19px; height: 19px; color: var(--primary-gold); flex-shrink: 0; margin-top: 3px; }
.check-item .ci-body { color: var(--text-grey); font-size: 0.92rem; line-height: 1.6; }
.check-item .ci-body strong { color: #e2e8f0; }

/* ---------- CENNIK ---------- */
.price-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 26px; }
.price-grid.cols2 { grid-template-columns: repeat(2, 1fr); max-width: 760px; margin-left: auto; margin-right: auto; }
.price-card { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: 12px; padding: 24px 18px; display: flex; flex-direction: column; text-align: center; }
.price-card.featured { border-color: var(--primary-gold); position: relative; }
.price-card .badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--primary-gold); color: #0b1220; font-size: 0.72rem; font-weight: 700; padding: 3px 12px; border-radius: 999px; letter-spacing: 0.04em; white-space: nowrap; }
.price-card h3 { font-size: 1rem; min-height: 48px; }
.price-card .price { color: var(--primary-gold); font-size: 1.7rem; font-weight: 700; margin: 12px 0 2px; }
.price-card .price-note { color: var(--text-grey); font-size: 0.8rem; margin-bottom: 14px; }
.price-card .desc { color: var(--text-grey); font-size: 0.85rem; line-height: 1.6; flex: 1; }
.buy-btn { display: inline-block; margin-top: 16px; background: var(--primary-gold); color: #0b1220; font-weight: 700; padding: 12px 10px; border-radius: 8px; text-decoration: none; transition: opacity .2s; }
.buy-btn:hover { opacity: .85; }
.anchor-note { text-align: center; color: var(--text-grey); margin-top: 18px; font-size: 0.95rem; max-width: 70ch; margin-left: auto; margin-right: auto; }
.anchor-note strong { color: #e2e8f0; }

/* ---------- TABELA PORÓWNAWCZA ---------- */
.compare-wrap { max-width: 860px; margin: 26px auto 0; overflow-x: auto; }
table.compare { width: 100%; border-collapse: separate; border-spacing: 0; background: var(--bg-card); border: 1px solid var(--border-color); border-radius: 12px; overflow: hidden; font-size: 0.92rem; }
table.compare th, table.compare td { padding: 13px 16px; text-align: center; border-bottom: 1px solid var(--border-color); }
table.compare th { background: #0b1428; color: #e2e8f0; font-weight: 600; font-size: 0.88rem; }
table.compare th.gold-col, table.compare td.gold-col { background: rgba(197,164,126,0.07); }
table.compare th.gold-col { color: var(--primary-gold); }
table.compare td:first-child, table.compare th:first-child { text-align: left; color: var(--text-grey); }
table.compare td { color: var(--text-grey); }
table.compare td .yes { color: var(--primary-gold); font-weight: 700; }
table.compare td .no { color: #475569; }
table.compare tr:last-child td { border-bottom: none; font-weight: 700; color: #e2e8f0; }

/* ---------- FAQ AKORDEON (natywny <details>) ---------- */
.faq { max-width: 820px; margin: 20px auto 0; }
.faq details { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: 10px; margin-bottom: 12px; overflow: hidden; }
.faq summary { list-style: none; cursor: pointer; padding: 17px 50px 17px 22px; font-weight: 600; font-size: 0.98rem; color: #e2e8f0; position: relative; transition: color 0.2s; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; position: absolute; right: 20px; top: 50%; transform: translateY(-50%); color: var(--primary-gold); font-size: 1.3rem; font-weight: 400; transition: transform 0.2s; }
.faq details[open] summary::after { content: '–'; }
.faq summary:hover { color: var(--primary-gold); }
.faq .faq-body { padding: 0 22px 18px; color: var(--text-grey); font-size: 0.92rem; line-height: 1.7; }

/* ---------- BOXY INFORMACYJNE ---------- */
.notice-box { max-width: 760px; margin: 24px auto 0; background: rgba(197,164,126,0.07); border: 1px solid rgba(197,164,126,0.25); border-left: 3px solid var(--primary-gold); border-radius: 0 10px 10px 0; padding: 18px 22px; color: var(--text-grey); font-size: 0.92rem; line-height: 1.7; }
.notice-box strong { color: #e2e8f0; }
.value-anchor { max-width: 760px; margin: 28px auto 0; background: var(--bg-card); border: 1px solid var(--primary-gold); border-radius: 12px; padding: 22px 26px; text-align: center; color: var(--text-grey); font-size: 0.95rem; line-height: 1.7; }
.value-anchor strong { color: var(--primary-gold); }
.disclaimer { max-width: 820px; margin: 36px auto 0; color: var(--text-grey); font-size: 0.8rem; font-style: italic; text-align: center; line-height: 1.6; }

/* ---------- STICKY CTA (mobile) ---------- */
.sticky-cta { display: none; }
@media (max-width: 768px) {
    .sticky-cta {
        display: flex; position: fixed; bottom: 0; left: 0; right: 0; z-index: 900;
        background: rgba(2, 6, 23, 0.97); backdrop-filter: blur(10px);
        border-top: 1px solid var(--border-color); padding: 12px 5%;
        padding-bottom: calc(12px + env(safe-area-inset-bottom));
        align-items: center; justify-content: space-between; gap: 14px;
    }
    .sticky-cta .sc-price { font-weight: 700; color: var(--primary-gold); font-size: 1.05rem; line-height: 1.3; }
    .sticky-cta .sc-price small { display: block; color: var(--text-grey); font-weight: 400; font-size: 0.72rem; }
    .sticky-cta .btn-gold { padding: 12px 22px; font-size: 0.95rem; flex-shrink: 0; }
    body.has-sticky-cta { padding-bottom: 84px; }
}

/* ---------- STOPKA ---------- */
.site-footer { background-color: var(--bg-card); border-top: 1px solid var(--border-color); padding: 28px 5%; margin-top: 50px; }
.footer-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.footer-brand { font-weight: 700; font-size: 0.95rem; letter-spacing: 1.5px; white-space: nowrap; }
.footer-brand .fb-gold { color: var(--primary-gold); }
.footer-info { color: var(--text-grey); font-size: 0.82rem; text-align: center; flex: 1; line-height: 1.5; }
.footer-info span { white-space: nowrap; }
.footer-links { display: flex; gap: 6px; align-items: center; font-size: 0.82rem; flex-wrap: wrap; justify-content: center; }
.footer-links a { color: var(--primary-gold); font-weight: 500; }
.footer-links a:hover { text-decoration: underline; }
.footer-links .dot { color: var(--text-grey); }

/* ---------- COOKIE BANNER ---------- */
.cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; background: var(--bg-card); border-top: 1px solid var(--border-color); padding: 18px 5%; z-index: 3000; display: none; align-items: center; justify-content: center; gap: 20px; flex-wrap: wrap; box-shadow: 0 -4px 30px rgba(0,0,0,0.5); }
.cookie-banner.show { display: flex; }
.cookie-banner p { color: var(--text-grey); font-size: 0.88rem; max-width: 600px; line-height: 1.5; }
.cookie-banner p a { color: var(--primary-gold); text-decoration: underline; }
.cookie-btns { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-btn-accept { background: var(--primary-gold); color: var(--bg-dark); border: none; padding: 10px 22px; border-radius: 8px; font-weight: 600; font-size: 0.88rem; cursor: pointer; transition: all 0.3s; }
.cookie-btn-accept:hover { opacity: 0.9; }
.cookie-btn-reject { background: transparent; color: var(--text-grey); border: 1px solid var(--border-color); padding: 10px 22px; border-radius: 8px; font-weight: 500; font-size: 0.88rem; cursor: pointer; transition: all 0.3s; }
.cookie-btn-reject:hover { border-color: var(--text-grey); color: white; }

/* ---------- MODAL (CALENDLY) ---------- */
.modal-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.8); display: none; justify-content: center; align-items: center; z-index: 2000; padding: 20px; }
.modal-content { background-color: var(--bg-card); width: 100%; max-width: 800px; height: 90vh; border-radius: 12px; border: 1px solid var(--border-color); position: relative; overflow: hidden; display: flex; flex-direction: column; }
.modal-header { background-color: #1e293b; padding: 15px 25px; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid var(--border-color); flex-shrink: 0; }
.modal-body { flex-grow: 1; position: relative; }
.close-btn { background: none; border: none; color: white; font-size: 1.5rem; cursor: pointer; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
    .product-grid, .feature-grid, .steps-grid { grid-template-columns: repeat(2, 1fr); }
    .feature-grid.cols4 { grid-template-columns: repeat(2, 1fr); }
    .price-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-inner { flex-direction: column; text-align: center; gap: 12px; }
    .footer-info { flex: unset; max-width: 100%; }
    .footer-info span { display: block; white-space: normal; }
    .footer-links { justify-content: center; flex-wrap: wrap; row-gap: 4px; }
}
@media (max-width: 768px) {
    .hamburger { display: flex; }
    .nav-links { display: none; }
    .nav-container { gap: 12px; }
    .nav-container > .btn-nav { display: none; }
    .product-grid, .feature-grid, .feature-grid.cols4, .steps-grid, .steps-grid.cols3, .price-grid, .price-grid.cols2, .check-list.cols2 { grid-template-columns: 1fr; }
    .page-hero { padding-top: 36px; }
    .page-hero h1 { font-size: 1.9rem; }
    .lead { font-size: 0.98rem; }
    .section { padding: 32px 5%; }
    .cta-group { flex-direction: column; align-items: center; }
    .cta-group a, .cta-group button { width: 100%; max-width: 340px; }
    .trust-bar { gap: 8px; }
    .trust-item { font-size: 0.78rem; padding: 7px 13px; }
    .cookie-banner { flex-direction: column; text-align: center; padding: 16px 5%; gap: 14px; }
}
@media (max-width: 400px) {
    header.site-header { padding: 12px 4%; }
    .page-hero h1 { font-size: 1.7rem; }
    .section { padding: 26px 4%; }
}
