/* OcenFirme — modern B2B portal opinii.
   Inspirowany Aleo/GoWork (klasyczny portal układ), ale z nowoczesnym twistem:
   - Inter font (czysto, sans, profesjonalnie)
   - White cards na subtle gray background
   - Navy primary + emerald accent (verified)
   - Soft shadows + rounded 12px
   - Generous whitespace
   - Mono dla NIP/KRS — odróżnia dane od tekstu
*/

:root {
    /* Tła */
    --bg: #f7f8fb;
    --bg-card: #ffffff;
    --bg-soft: #eef1f6;
    --bg-section-alt: #f0f3f8;

    /* Tekst */
    --text: #0f172a;
    --text-muted: #64748b;
    --text-soft: #94a3b8;

    /* Brand */
    --primary: #0f3a82;        /* navy — zaufanie, profesjonalizm */
    --primary-soft: #1e4faf;
    --primary-bg: #eef3fc;
    --accent: #059669;         /* emerald — verified, success */
    --accent-bg: #ecfdf5;
    --warning: #d97706;
    --warning-bg: #fef3c7;
    --danger: #dc2626;
    --danger-bg: #fef2f2;

    /* Borders + shadows */
    --border: #e2e8f0;
    --border-strong: #cbd5e1;
    --shadow-sm: 0 1px 2px 0 rgba(15, 23, 42, 0.04);
    --shadow: 0 1px 3px 0 rgba(15, 23, 42, 0.06), 0 1px 2px 0 rgba(15, 23, 42, 0.04);
    --shadow-lg: 0 4px 6px -1px rgba(15, 23, 42, 0.08), 0 2px 4px -2px rgba(15, 23, 42, 0.06);
    --shadow-xl: 0 10px 15px -3px rgba(15, 23, 42, 0.10), 0 4px 6px -4px rgba(15, 23, 42, 0.08);

    --radius: 12px;
    --radius-lg: 16px;
    --radius-pill: 999px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.muted { color: var(--text-muted); }
.small { font-size: 0.85rem; }
code, .mono { font-family: 'JetBrains Mono', 'SF Mono', monospace; font-size: 0.92em; }
a { color: var(--primary); text-decoration: none; transition: color 0.15s; }
a:hover { color: var(--primary-soft); }
h1, h2, h3, h4 { color: var(--text); margin-top: 0; line-height: 1.25; letter-spacing: -0.02em; }
h1 { font-size: 3rem; font-weight: 800; }
h2 { font-size: 2rem; font-weight: 700; }
h3 { font-size: 1.25rem; font-weight: 600; }
h4 { font-size: 1rem; font-weight: 600; }

/* ---- HEADER ---- */
.site-header {
    background: var(--bg-card);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(8px);
    background: rgba(255, 255, 255, 0.95);
}
.site-header .container {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
}
.logo {
    display: flex;
    align-items: center;
    font-size: 1.45rem;
    color: var(--text);
    letter-spacing: -0.035em;
    font-family: 'JetBrains Mono', ui-monospace, SFMono-Regular, monospace;
    transition: opacity 0.2s ease;
}
.logo:hover { color: var(--text); opacity: 0.85; }
.logo-text {
    display: inline-flex;
    overflow: hidden;
    white-space: nowrap;
    width: 0;
    border-right: 2px solid #10b981;
    animation: logo-typing 1.4s steps(12, end) 0.2s forwards, logo-caret 0.85s step-end 1.6s infinite;
}
.logo-name {
    font-weight: 700;
    background: linear-gradient(135deg, #0f3a82 0%, #10b981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.logo-tld {
    color: #94a3b8;
    font-weight: 500;
}
@keyframes logo-typing {
    to { width: 12ch; }
}
@keyframes logo-caret {
    from, to { border-color: transparent; }
    50% { border-color: #10b981; }
}
@media (prefers-reduced-motion: reduce) {
    .logo-text {
        width: 12ch;
        animation: none;
        border-right: none;
    }
}
.site-nav {
    display: flex;
    gap: 1rem;
    align-items: center;
}
.site-nav a {
    display: inline-flex;
    align-items: center;
    height: 38px;
    padding: 0 0.6rem;
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.95rem;
}
.site-nav a:hover { color: var(--text); }
.site-nav .nav-cta {
    color: var(--accent);
    background: var(--accent-bg);
    padding: 0 0.85rem;
    border-radius: var(--radius);
    font-weight: 600;
}
.site-nav .nav-cta:hover { background: var(--accent); color: #fff; }
.header-search {
    display: flex;
    margin-left: auto;
    max-width: 360px;
    flex: 1;
}
.header-search input {
    flex: 1;
    padding: 0.55rem 0.9rem;
    border: 1px solid var(--border);
    border-right: none;
    border-radius: var(--radius) 0 0 var(--radius);
    font-size: 0.9rem;
    font-family: inherit;
    background: var(--bg);
    color: var(--text);
}
.header-search input:focus {
    outline: none;
    background: var(--bg-card);
    border-color: var(--primary);
}
.header-search button {
    padding: 0.55rem 1.1rem;
    background: var(--primary);
    color: #fff;
    border: 1px solid var(--primary);
    border-radius: 0 var(--radius) var(--radius) 0;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    font-family: inherit;
}
.header-search button:hover { background: var(--primary-soft); }

/* ---- HERO ---- */
.hero {
    padding: 5rem 0 4rem;
    background: linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 100%);
    text-align: center;
}
.hero-inner { max-width: 720px; margin: 0 auto; }
.hero h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}
.hero h1 em {
    font-style: normal;
    color: var(--primary);
}
.hero-tagline {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    font-weight: 400;
}
.hero-search {
    display: flex;
    max-width: 600px;
    margin: 0 auto 1.5rem;
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--bg-card);
    transition: box-shadow 0.2s;
}
.hero-search:focus-within { box-shadow: var(--shadow-xl); }
.hero-search input {
    flex: 1;
    padding: 1.1rem 1.5rem;
    border: none;
    font-size: 1.05rem;
    font-family: inherit;
    color: var(--text);
}
.hero-search input:focus { outline: none; }
.hero-search button {
    padding: 1.1rem 2.5rem;
    background: var(--primary);
    color: #fff;
    border: none;
    font-weight: 600;
    font-size: 1.05rem;
    cursor: pointer;
    font-family: inherit;
}
.hero-search button:hover { background: var(--primary-soft); }
.hero-meta { font-size: 0.9rem; }

/* ---- SECTIONS ---- */
.section { padding: 4rem 0; }
.section-alt { background: var(--bg-card); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section-title {
    font-size: 1.75rem;
    margin-bottom: 2rem;
    text-align: center;
}

/* ---- CARDS ---- */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.25rem;
}
.card {
    display: block;
    padding: 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all 0.15s;
    color: var(--text);
}
.card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
    color: var(--text);
}
.card h3 {
    font-size: 1.05rem;
    margin-bottom: 0.4rem;
}
.card-score {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--accent);
    margin: 0.75rem 0 0.25rem;
    letter-spacing: -0.02em;
}
.card-compact { padding: 1.1rem 1.25rem; }
.card-compact h3 { font-size: 0.98rem; }

/* ---- HOW IT WORKS ---- */
.how-it-works .steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}
.step {
    text-align: center;
    padding: 1.5rem;
}
.step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary-bg);
    color: var(--primary);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}
.step h3 { margin-bottom: 0.5rem; }
.step p { color: var(--text-muted); margin: 0; }

/* ---- COMPANY PROFILE ---- */
.firma-header {
    background: var(--bg-card);
    border-bottom: 1px solid var(--border);
    padding: 3rem 0 2rem;
}
.firma-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 2rem;
    margin-top: 1rem;
    color: var(--text-muted);
    font-size: 0.95rem;
}
.firma-meta strong { color: var(--text); font-weight: 600; }
.firma-rating-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    margin: 2rem 0;
    text-align: center;
}
.firma-rating-score {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 0.5rem;
    letter-spacing: -0.04em;
}
.badges {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 0.75rem 0;
}
.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.3rem 0.75rem;
    border-radius: var(--radius-pill);
    font-size: 0.8rem;
    font-weight: 600;
    background: var(--bg-soft);
    color: var(--text-muted);
}
.badge-verified { background: var(--accent-bg); color: var(--accent); }
.badge-vat-active { background: var(--accent-bg); color: var(--accent); }
.badge-warning { background: var(--warning-bg); color: var(--warning); }
.badge-danger { background: var(--danger-bg); color: var(--danger); }

/* External aggregator badges */
.external-ratings {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 1.5rem 0;
}
.ext-rating {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1.25rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 0.9rem;
}
.ext-rating-source { font-weight: 600; }
.ext-rating-score { color: var(--accent); font-weight: 700; }

/* ---- REVIEWS ---- */
.reviews-list {
    display: grid;
    gap: 1rem;
    margin-top: 1.5rem;
}
.review {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
}
.review-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.review-author { font-weight: 600; }
.review-score {
    color: var(--accent);
    font-weight: 700;
    font-size: 1.05rem;
}
.review-date {
    color: var(--text-soft);
    font-size: 0.85rem;
}
.review-title {
    font-weight: 600;
    margin-bottom: 0.4rem;
    font-size: 1.05rem;
}
.review-body { color: var(--text); margin: 0; }
.review-reply {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
    background: var(--bg-soft);
    margin: 1rem -1.5rem -1.5rem;
    padding: 1rem 1.5rem;
    border-radius: 0 0 var(--radius) var(--radius);
}
.review-reply-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.4rem;
}

/* ---- FORMS (wystaw) ---- */
.form-card {
    max-width: 640px;
    margin: 3rem auto;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow);
}
.form-card label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.4rem;
    color: var(--text);
    margin-top: 1.25rem;
}
.form-card input, .form-card textarea, .form-card select {
    width: 100%;
    padding: 0.7rem 0.9rem;
    border: 1px solid var(--border-strong);
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--text);
    background: var(--bg);
}
.form-card input:focus, .form-card textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--bg-card);
}
.form-card textarea { min-height: 140px; resize: vertical; }
.score-radios {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.5rem;
}
.score-radios label {
    flex: 1;
    text-align: center;
    padding: 0.75rem;
    border: 1px solid var(--border-strong);
    border-radius: var(--radius);
    cursor: pointer;
    margin-top: 0;
    background: var(--bg-card);
    transition: all 0.15s;
}
.score-radios input[type="radio"] { display: none; }
.score-radios label:hover { border-color: var(--accent); }
.score-radios input[type="radio"]:checked + label,
.score-radios label.checked { background: var(--accent-bg); border-color: var(--accent); color: var(--accent); }

.btn {
    display: inline-block;
    padding: 0.85rem 1.75rem;
    border: none;
    border-radius: var(--radius);
    font-family: inherit;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.15s;
}
.btn-primary {
    background: var(--primary);
    color: #fff;
}
.btn-primary:hover { background: var(--primary-soft); color: #fff; }
.btn-secondary {
    background: var(--bg-soft);
    color: var(--text);
}

/* ---- SEARCH RESULTS ---- */
.search-results {
    max-width: 900px;
    margin: 3rem auto;
}
.search-meta { margin-bottom: 1.5rem; color: var(--text-muted); }
.result-card {
    display: block;
    padding: 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 1rem;
    color: var(--text);
}
.result-card:hover { border-color: var(--primary); box-shadow: var(--shadow); color: var(--text); }
.result-card h3 { margin-bottom: 0.5rem; }
.result-meta {
    display: flex;
    gap: 1.5rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    flex-wrap: wrap;
}

/* ---- FOOTER ---- */
.site-footer {
    background: #0f172a;
    color: #cbd5e1;
    padding: 4rem 0 2rem;
    margin-top: 4rem;
}
.site-footer h4 { color: #fff; margin-bottom: 1rem; }
.site-footer a {
    display: block;
    color: #cbd5e1;
    margin-bottom: 0.5rem;
    font-size: 0.92rem;
}
.site-footer a:hover { color: #fff; }
.footer-cols {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}
.footer-bottom {
    border-top: 1px solid #1e293b;
    padding-top: 1.5rem;
    margin: 0;
    color: #64748b;
    font-size: 0.85rem;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
    .hero h1 { font-size: 2.25rem; }
    .site-header .container { flex-wrap: wrap; }
    .header-search { order: 3; max-width: none; width: 100%; }
    .footer-cols { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.5rem; }
    .footer-cols { grid-template-columns: 1fr; }
    .hero { padding: 3rem 0 2.5rem; }
    .section { padding: 3rem 0; }
    .hero-search button { padding: 1.1rem 1.25rem; }
}

/* ============ LEGAL PAGES — premium quiet look ============ */
/* regulamin, polityka, kontakt, dla-firm — czytelne, subtelne, mniejsza skala */
.legal-wrap {
    max-width: 780px;
    margin: 3rem auto 5rem;
    padding: 0 1.5rem;
}
.legal-page {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 3rem 3.25rem;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04), 0 4px 24px rgba(15, 23, 42, 0.04);
    color: #1e293b;
    font-size: 0.93rem;
    line-height: 1.7;
}
.legal-page h1 {
    font-size: 1.7rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin: 0 0 0.4rem;
    color: var(--text);
}
.legal-page .legal-meta {
    color: var(--text-soft);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0 0 2.5rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--border);
}
.legal-page h2 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary);
    margin: 2.4rem 0 0.85rem;
    letter-spacing: -0.005em;
}
.legal-page h3 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text);
    margin: 1.6rem 0 0.5rem;
}
.legal-page p {
    margin: 0 0 0.9rem;
    color: #334155;
}
.legal-page ol,
.legal-page ul {
    margin: 0 0 1rem;
    padding-left: 1.4rem;
}
.legal-page li {
    margin: 0 0 0.55rem;
    color: #334155;
}
.legal-page li::marker {
    color: var(--text-soft);
    font-weight: 500;
}
.legal-page strong {
    color: var(--text);
    font-weight: 600;
}
.legal-page code {
    background: var(--bg-soft);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 0.08em 0.4em;
    font-size: 0.85em;
    color: var(--primary);
    font-family: 'JetBrains Mono', ui-monospace, monospace;
}
.legal-page a {
    color: var(--primary);
    text-decoration: underline;
    text-decoration-color: rgba(15, 58, 130, 0.3);
    text-underline-offset: 2px;
    transition: text-decoration-color 0.15s;
}
.legal-page a:hover {
    text-decoration-color: var(--primary);
}
.legal-page hr {
    border: none;
    border-top: 1px solid var(--border);
    margin: 2.5rem 0;
}
.legal-page table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0 1.5rem;
    font-size: 0.88rem;
}
.legal-page table th,
.legal-page table td {
    text-align: left;
    padding: 0.65rem 0.8rem;
    border-bottom: 1px solid var(--border);
    vertical-align: top;
}
.legal-page table th {
    background: var(--bg-soft);
    font-weight: 600;
    color: var(--text);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
@media (max-width: 700px) {
    .legal-wrap { margin: 1.5rem auto 3rem; padding: 0 0.85rem; }
    .legal-page { padding: 2rem 1.5rem; border-radius: 10px; }
    .legal-page h1 { font-size: 1.4rem; }
    .legal-page h2 { font-size: 0.98rem; }
}

/* Listing: /branza /miasto */
.firma-list {
    display: grid;
    gap: 0.6rem;
    margin: 1.5rem 0;
}
.firma-list-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.2rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    text-decoration: none;
    color: inherit;
    transition: border-color 0.15s, box-shadow 0.15s, transform 0.15s;
}
.firma-list-item:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
    transform: translateY(-1px);
}
.firma-list-item h3 {
    margin: 0 0 0.25rem;
    font-size: 1.05rem;
    color: var(--text);
}
.firma-list-rating { text-align: right; }
.firma-list-score {
    display: block;
    font-weight: 700;
    color: var(--primary);
    font-size: 1.1rem;
}
.pagination {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 0 3rem;
    border-top: 1px solid var(--border);
    margin-top: 2rem;
}
.pagination a {
    padding: 0.5rem 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    text-decoration: none;
    color: var(--primary);
    background: var(--bg-card);
}
.pagination a:hover { background: var(--primary-bg); }

/* Honeypot — niewidoczne dla user-a, boty wypelniaja */
.opf-hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; pointer-events: none; }

/* ---- Profil firmy: lead, similar, FAQ, breadcrumbs ---- */
.container.narrow { max-width: 760px; }
.crumbs {
    margin: 0 0 1.25rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}
.crumbs a { color: var(--text-muted); }
.crumbs a:hover { color: var(--primary); }
.crumbs span { color: var(--text); font-weight: 500; }

.firma-lead {
    font-size: 1.02rem;
    line-height: 1.7;
    color: var(--text);
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-left: 3px solid var(--primary);
    border-radius: var(--radius);
    padding: 1.25rem 1.5rem;
    margin: 1.5rem 0;
}

.reviews-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 3rem 0 1rem;
    gap: 1rem;
    flex-wrap: wrap;
}
.empty-reviews {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: var(--bg-card);
    border: 1px dashed var(--border-strong);
    border-radius: var(--radius);
    margin: 1.5rem 0;
}

.similar-section, .faq-section {
    margin: 3.5rem 0 1.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}
.similar-section h2, .faq-section h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 0.6rem;
    overflow: hidden;
    transition: border-color 0.15s, box-shadow 0.15s;
}
.faq-item[open] { border-color: var(--primary); box-shadow: var(--shadow); }
.faq-item summary {
    padding: 1rem 1.25rem;
    cursor: pointer;
    font-weight: 600;
    color: var(--text);
    list-style: none;
    position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: "+";
    position: absolute;
    right: 1.25rem;
    font-weight: 400;
    color: var(--text-muted);
    transition: transform 0.2s;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { padding: 0 1.25rem 1.25rem; margin: 0; color: var(--text-muted); }

/* Aggregator badges */
.aggregator-badges { margin-top: 1rem; }
.badge-aggregator {
    margin: 0.25rem 0.25rem 0 0;
    background: var(--primary-bg);
    color: var(--primary);
    text-decoration: none;
    transition: background 0.15s;
}
.badge-aggregator:hover { background: var(--primary); color: #fff; }
.badge-neutral { background: var(--bg-soft); color: var(--text-muted); }

/* Form row (2-kolumnowy) */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
@media (max-width: 600px) {
    .form-row { grid-template-columns: 1fr; }
}

/* Star picker — gwiazdki klikalne flex-rev */
.star-picker {
    display: inline-flex;
    flex-direction: row-reverse;
    gap: 0.15rem;
    margin: 0.5rem 0 1rem;
}
.star-picker input[type="radio"] { display: none; }
.star-picker label {
    font-size: 2.2rem;
    color: var(--border-strong);
    cursor: pointer;
    padding: 0 0.15rem;
    margin: 0;
    transition: color 0.15s;
    background: none;
    border: none;
}
.star-picker label:hover,
.star-picker label:hover ~ label,
.star-picker input[type="radio"]:checked ~ label {
    color: #f5b50a;
}

.form-notice {
    margin-top: 1.5rem;
    padding: 1rem 1.25rem;
    background: var(--bg-soft);
    border-left: 3px solid var(--primary);
    border-radius: var(--radius);
}
.form-notice p { margin: 0 0 0.5rem; font-size: 0.9rem; }
.form-notice p:last-child { margin: 0; }


