

:root {
  --page: #f7f8fa;
  --surface: #ffffff;
  --ink: #101828;
  --muted: #5d6677;
  --line: #dfe3e8;
  --blue: #2457e6;
  --blue-dark: #183fae;
  --blue-soft: #edf2ff;
  color-scheme: light;
}

html[data-theme="dark"] {
  --page: #0b1220;
  --surface: #121c2c;
  --ink: #f5f7fb;
  --muted: #abb5c5;
  --line: #2c384b;
  --blue: #83a7ff;
  --blue-dark: #a2bbff;
  --blue-soft: #17243b;
  color-scheme: dark;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
body { margin: 0; background: var(--page); color: var(--ink); font-family: Arial, Helvetica, sans-serif; font-size: 17px; line-height: 1.6; transition: background-color .25s ease, color .25s ease; }
a { color: inherit; }
button, input, textarea { font: inherit; }

body.has-build-notice { overflow: hidden; }
.build-notice { position: fixed; inset: 0; z-index: 200; display: grid; place-items: center; padding: 22px; background: rgba(6,16,34,.72); backdrop-filter: blur(8px); }
.build-notice[hidden] { display: none; }
.build-notice-card { width: min(560px,100%); padding: clamp(26px,5vw,42px); border: 1px solid var(--line); border-radius: 18px; background: var(--surface); box-shadow: 0 28px 90px rgba(3,10,24,.34); }
.build-notice-label { display: inline-block; margin-bottom: 18px; color: var(--blue); font-size: 11px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.build-notice h2 { margin: 0 0 16px; font-size: clamp(30px,6vw,46px); line-height: 1.02; }
.build-notice p { margin: 0 0 28px; color: var(--muted); font-size: 17px; }
.build-notice button { width: 100%; min-height: 50px; border: 0; border-radius: 9px; background: var(--blue); color: white; font-weight: 850; cursor: pointer; transition: transform .18s ease, background .18s ease; }
.build-notice button:hover { transform: translateY(-2px); background: var(--blue-dark); }

.site-header { position: sticky; top: 8px; z-index: 50; margin-top: 12px; pointer-events: none; }
.site-header a, .site-header button { pointer-events: auto; }
.nav-shell { max-width: 1180px; min-height: 88px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; font-size: 20px; font-weight: 800; letter-spacing: -.03em; }
.brand-sign { display: grid; place-items: center; width: 32px; height: 32px; border-radius: 8px; background: var(--blue); color: white; font-size: 17px; }
.brand-full { min-width: 92px; border-radius: 12px; background: var(--page); }
.brand-full-logo { display: block; width: 92px; height: 78px; flex: 0 0 auto; }
.brand-full-logo img { display: block; width: 92px; height: 78px; object-fit: contain; }
nav { display: flex; align-items: center; gap: 30px; }
.site-header nav { gap: 20px; }
nav a { text-decoration: none; font-size: 15px; font-weight: 700; }
nav a:not(.nav-cta):hover { color: var(--blue); }
.nav-cta { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 10px 14px; border-radius: 10px; white-space: nowrap; }
.header-actions { display: flex; align-items: center; gap: 24px; }
.accessibility-controls { display: flex; align-items: center; gap: 7px; }
.accessibility-controls button { min-width: 44px; height: 44px; padding: 0 9px; border: 1px solid var(--line); border-radius: 50%; background: var(--page); color: var(--ink); font-size: 14px; font-weight: 800; cursor: pointer; transition: border-color .2s ease, background .2s ease, transform .2s ease; }
.accessibility-controls button:hover { transform: translateY(-2px); border-color: var(--blue); background: var(--blue-soft); }
.accessibility-controls button.active, .accessibility-controls button[aria-pressed="true"] { border-color: var(--blue); background: var(--blue); color: #fff; }
.theme-toggle { font-size: 18px !important; }
.text-size-toggle { font-size: 13px !important; }
:focus-visible { outline: 3px solid var(--blue); outline-offset: 3px; }

.hero { max-width: 1180px; min-height: calc(100vh - 72px); margin: 0 auto; padding: 100px 24px; display: grid; grid-template-columns: minmax(0,1.25fr) minmax(320px,.75fr); gap: 90px; align-items: center; }
.overline { margin: 0 0 22px; color: var(--blue); font-size: 13px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
h1, h2, h3, p { margin-top: 0; }
h1 { max-width: 760px; margin-bottom: 30px; font-size: clamp(52px,7.2vw,92px); line-height: .96; letter-spacing: -.065em; }
.hero-lead { max-width: 650px; margin-bottom: 34px; color: var(--muted); font-size: 20px; }
.hero .hero-quote-button { width: min(310px,100%); min-height: 64px; justify-content: space-between; padding: 0 26px; font-size: 21px; }
.hero-actions { display: flex; align-items: center; gap: 22px; }
.hero-actions > span { color: var(--muted); font-size: 13px; }
.button { display: inline-flex; min-height: 50px; align-items: center; justify-content: center; padding: 0 22px; border: 0; border-radius: 8px; text-decoration: none; font-weight: 800; cursor: pointer; }
.primary { background: var(--blue); color: white; }
.primary:hover { background: var(--blue-dark); }
.hero-summary { padding: 34px; background: var(--surface); border: 1px solid var(--line); border-radius: 14px; box-shadow: 0 18px 45px rgba(16,24,40,.08); }
.hero-summary > p { margin-bottom: 18px; font-weight: 800; }
.hero-summary ul, .price-card ul { margin: 0; padding: 0; list-style: none; }
.hero-summary li, .price-card li { position: relative; padding: 11px 0 11px 25px; color: var(--muted); border-top: 1px solid var(--line); }
.hero-summary li::before, .price-card li::before { content: "✓"; position: absolute; left: 0; color: var(--blue); font-weight: 900; }
.summary-price { margin-top: 28px; padding: 24px; border-radius: 10px; background: var(--blue-soft); }
.summary-price span, .summary-price small { display: block; }
.summary-price span { font-size: 12px; color: var(--muted); }
.summary-price strong { display: block; margin: 2px 0; font-size: 38px; letter-spacing: -.05em; }
.summary-price small { color: var(--muted); }

.section { padding: 110px max(24px, calc((100vw - 1132px) / 2)); }
.section-heading { max-width: 680px; margin-bottom: 54px; }
h2 { margin-bottom: 20px; font-size: clamp(38px,5vw,62px); line-height: 1.04; letter-spacing: -.05em; }
.section-heading > p:last-child, .contact-copy > p { color: var(--muted); font-size: 18px; }
.process { background: var(--surface); }
.step-list { display: grid; grid-template-columns: repeat(3,1fr); gap: 0; margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.step-list li { padding: 30px 42px 10px 0; }
.step-list li + li { padding-left: 42px; border-left: 1px solid var(--line); }
.step-list span { color: var(--blue); font-size: 12px; font-weight: 800; }
.step-list h3 { margin: 38px 0 12px; font-size: 20px; letter-spacing: -.02em; }
.step-list p { max-width: 290px; color: var(--muted); font-size: 16px; }

.price-section { display: grid; grid-template-columns: .8fr 1.2fr; gap: 110px; align-items: start; }
.price-card { padding: 40px; background: var(--ink); color: white; border-radius: 14px; }
.price-main { padding-bottom: 30px; border-bottom: 1px solid #344054; }
.price-main span, .price-main small { display: block; color: #c4cad4; }
.price-main strong { display: block; margin: 8px 0; font-size: 48px; letter-spacing: -.05em; }
.price-card ul { margin: 22px 0; }
.price-card li { border-color: #344054; color: #d7dce4; }
.price-card li::before { color: #8aa8ff; }
.monthly { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 22px 0; border-top: 1px solid #344054; border-bottom: 1px solid #344054; }
.monthly strong { font-size: 22px; }
.price-card > p { margin: 22px 0 0; color: #aab2bf; font-size: 13px; }

.contact-section { display: grid; grid-template-columns: .8fr 1.2fr; gap: 110px; background: var(--blue-soft); }
.contact-copy { position: sticky; top: 118px; align-self: start; }
.contact-copy > a { color: var(--blue); font-weight: 800; }
.contact-form { padding: 38px; background: var(--surface); border: 1px solid #d7deee; border-radius: 14px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.contact-form label { display: block; margin-bottom: 24px; }
.contact-form label > span { display: block; margin-bottom: 8px; font-size: 13px; font-weight: 800; }
.contact-form input, .contact-form textarea { width: 100%; padding: 13px 14px; border: 1px solid #c8ced8; border-radius: 7px; background: white; outline: none; }
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(36,87,230,.12); }
.contact-form textarea { resize: vertical; }
.consent { display: flex !important; gap: 10px; align-items: flex-start; }
.consent input { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--blue); }
.consent span { margin: 0 !important; color: var(--muted); font-weight: 400 !important; }
.submit { width: 100%; }
.form-note { margin: 16px 0 0; padding: 12px; border-radius: 7px; background: #eef9f0; color: #216b32; font-size: 14px; text-align: center; }

.site-footer { padding: 54px 24px 24px; background: var(--ink); color: white; }
.footer-main { max-width: 1132px; margin: 0 auto; display: grid; grid-template-columns: minmax(0,1.25fr) minmax(300px,1fr) minmax(220px,.85fr); gap: clamp(34px,5vw,72px); padding-bottom: 38px; }
.footer-about strong { display: block; font-size: 23px; letter-spacing: -.03em; }
.footer-about p { max-width: 370px; margin: 12px 0 0; color: #aab2bf; font-size: 15px; line-height: 1.65; }
.footer-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: start; }
.footer-nav > div, .footer-contact { display: grid; align-content: start; gap: 10px; }
.footer-nav span, .footer-contact > span { color: #8aa8ff; font-size: 12px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.footer-nav a, .footer-contact a { width: max-content; max-width: 100%; color: #edf3ff; font-size: 15px; font-weight: 700; text-decoration: none; }
.footer-nav a:hover, .footer-contact a:hover { color: #a9bdff; }
.footer-contact small { max-width: 260px; color: #aab2bf; font-size: 13px; line-height: 1.55; }
.footer-bottom { max-width: 1132px; margin: 0 auto; padding-top: 20px; display: flex; align-items: center; justify-content: space-between; gap: 24px; border-top: 1px solid #344054; color: #98a2b3; font-size: 13px; }


.form-page { padding-bottom: 100px; }
.subpage-hero { max-width: 1132px; margin: 0 auto; padding: 62px 0 42px; }
.subpage-hero h1, .legal-heading h1 { margin-bottom: 18px; font-size: clamp(46px,5.5vw,70px); }
.subpage-hero > p:last-child { max-width: 720px; margin: 0; color: var(--muted); font-size: 18px; }
.offer-layout { max-width: 1132px; margin: 0 auto; }
.form-trap { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip-path: inset(50%); white-space: nowrap; }
.offer-main { display: grid; grid-template-columns: minmax(0,1fr) 340px; gap: 28px; align-items: start; }
.offer-fields { display: block; }
.form-section { display: grid; grid-template-columns: 92px minmax(0,1fr); gap: 18px; padding: 34px 0 38px; background: transparent; border-top: 1px solid var(--line); }
.form-section:first-child { border-top: 2px solid var(--ink); }
.form-section:last-child { border-bottom: 1px solid var(--line); }
.form-section-number { display: grid; align-self: start; justify-items: center; align-content: start; width: 72px; padding-top: 2px; color: #2457e6; font-family: Arial Black, Arial, sans-serif; font-size: 50px; font-weight: 900; line-height: .78; letter-spacing: -.04em; transform: skewY(-4deg); text-shadow: 1px 1px 0 #dfe7ff, 3px 3px 0 #89a5f2, 6px 6px 0 #142d70; }
.form-section-number > span { display: block; }
.form-section-number-line { width: 46px; height: 5px; margin: 10px 0 9px; border-radius: 999px; background: currentColor; box-shadow: 1px 1px 0 #dfe7ff, 2px 2px 0 #89a5f2, 4px 4px 0 #142d70; }
.form-section-content { min-width: 0; }
.form-section-title { margin-bottom: 24px; }
.form-section-title h2 { margin: 0; font-size: 29px; letter-spacing: -.035em; }
.form-section-title p { max-width: 650px; margin: 7px 0 0; color: var(--muted); font-size: 15px; line-height: 1.55; }
.field { display: block; margin-bottom: 23px; }
.field > span { display: flex; align-items: center; flex-wrap: wrap; gap: 7px; margin-bottom: 8px; font-size: 15px; font-weight: 800; }
.field-free { display: inline-flex; align-items: center; min-height: 21px; padding: 2px 8px; border: 1px solid #9db5f4; border-radius: 999px; background: #edf2ff; color: #1744bf; font-size: 11px; font-weight: 800; line-height: 1; letter-spacing: .01em; }
.field input, .field textarea { width: 100%; padding: 13px 14px; border: 1px solid #c8ced8; border-radius: 3px; background: white; outline: none; }
.field input:focus, .field textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(36,87,230,.12); }
.field textarea { resize: vertical; }
.email-contact-note { display: block; max-width: 650px; margin-top: 8px; color: var(--muted); font-size: 13px; font-weight: 400; line-height: 1.5; }
.email-daily-limit { display: block; max-width: 650px; margin-top: 7px; color: var(--blue); font-size: 13px; line-height: 1.5; }
.company-availability { display: block; margin-top: 7px; color: var(--muted); font-size: 13px; line-height: 1.45; }
.company-availability[data-state="checking"] { color: var(--blue); }
.company-availability[data-state="available"] { color: #216b32; font-weight: 700; }
.company-availability[data-state="taken"] { color: #b42318; font-weight: 700; }
.counted-field { position: relative; }
.counted-field textarea { padding-bottom: 34px; }
.counted-field > small { position: absolute; right: 12px; bottom: 10px; color: var(--muted); font-size: 12px; pointer-events: none; }
.counted-field > small b { color: var(--blue); }
.form-section .field-row { gap: 20px; }
.top-gap { margin-top: 26px; }
.opening-hours-field { margin: 6px 0 18px; border-bottom: 1px solid var(--line); }
.opening-hours-field > .check-option { border-bottom: 0; }
.opening-hours-field.is-open > .check-option { border-bottom: 1px solid var(--line); }
.opening-hours-panel { padding: 16px 2px 7px; animation: opening-hours-in .24s ease both; }
.opening-hours-panel[hidden] { display: none; }
@keyframes opening-hours-in { from { opacity: 0; transform: translateY(-7px); } to { opacity: 1; transform: translateY(0); } }
.opening-hours-heading { display: grid; gap: 3px; margin-bottom: 9px; }
.opening-hours-heading > strong { font-size: 15px; }
.opening-hours-heading > small { max-width: 620px; color: var(--muted); font-size: 13px; line-height: 1.45; }
.opening-hours-list { border-top: 1px solid var(--line); }
.opening-day { display: grid; grid-template-columns: minmax(100px,1fr) auto 80px; align-items: center; gap: 10px; min-height: 43px; padding: 4px 0; border-bottom: 1px solid var(--line); }
.opening-day > strong { font-size: 14px; }
.opening-time { display: flex; align-items: center; gap: 5px; }
.opening-time > i { color: var(--muted); font-style: normal; }
.opening-time label { display: flex; align-items: center; gap: 4px; }
.opening-time label > span { color: var(--muted); font-size: 11px; font-weight: 800; text-transform: uppercase; }
.opening-time input { width: 92px; min-height: 32px; padding: 4px 6px; border: 1px solid #c8ced8; border-radius: 6px; background: white; color: var(--ink); }
.opening-time input:disabled { opacity: .42; cursor: not-allowed; }
.closed-toggle { display: flex; align-items: center; gap: 6px; min-width: 80px; font-size: 13px; cursor: pointer; }
.closed-toggle input { width: 14px; height: 14px; accent-color: var(--blue); }
.opening-day.is-closed > strong { color: var(--muted); }
.small-action, .remove-action { padding: 9px 12px; border: 1px solid #c8ced8; border-radius: 6px; background: white; color: var(--ink); font-size: 14px; font-weight: 700; cursor: pointer; }
.small-action, .remove-action { transition: transform .2s ease, border-color .2s ease, background .2s ease; }
.small-action:hover { transform: translateY(-2px); border-color: var(--blue); background: var(--blue-soft); }
.remove-action:hover { transform: translateY(-2px); border-color: #b42318; background: #fff2f0; }
.small-action b { color: var(--blue); }
.remove-action { margin-left: 8px; color: #b42318; }
.small-action:disabled { opacity: .55; cursor: not-allowed; transform: none; border-color: var(--line); background: var(--page); }
.counter { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 26px; padding: 22px 0; border-top: 1px solid var(--line); }
.counter strong { font-size: 16px; }
.counter-heading { display: flex; align-items: baseline; flex-wrap: wrap; gap: 6px 12px; }
.counter-heading > span { color: var(--blue); font-size: 13px; font-weight: 800; }
.counter p { margin: 3px 0 0; color: var(--muted); font-size: 14px; }
.counter-controls { display: flex; align-items: center; flex: 0 0 auto; border: 1px solid #c8ced8; border-radius: 6px; overflow: hidden; }
.counter-controls button { width: 40px; height: 40px; border: 0; background: white; color: var(--blue); font-size: 20px; cursor: pointer; }
.counter-controls button:disabled { color: var(--muted); opacity: .38; cursor: not-allowed; }
.counter-controls output { min-width: 44px; text-align: center; font-weight: 800; }
.photo-format-note { margin: -8px 0 2px; padding: 11px 13px; border-left: 3px solid var(--blue); background: var(--blue-soft); color: var(--muted); font-size: 14px; line-height: 1.55; }
.photo-format-note strong { color: var(--ink); }
.material-subsection { margin-top: 26px; padding-top: 22px; border-top: 1px solid var(--line); }
.price-list-config { padding: 16px 14px 2px; background: var(--blue-soft); border-left: 3px solid var(--blue); }
.price-list-config[hidden] { display: none; }
.price-list-config .field { margin-bottom: 12px; }
.business-content-grid { margin-bottom: 10px; }
.choice-group { margin: 0 0 28px; padding: 0; border: 0; }
.choice-group legend { margin-bottom: 10px; font-size: 15px; font-weight: 800; }
.choice-row { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 12px; padding: 16px 3px; border-top: 1px solid var(--line); cursor: pointer; }
.choice-row:last-child { border-bottom: 1px solid var(--line); }
.choice-row input, .check-option input { accent-color: var(--blue); }
.choice-row > span { display: grid; }
.choice-row small { color: var(--muted); }
.choice-row > strong { font-size: 14px; }
.map-choice-group { margin: 0 0 28px; padding: 0; border: 0; }
.map-choice-group legend { margin-bottom: 10px; font-size: 15px; font-weight: 800; }
.map-choice-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 12px; }
.map-choice { position: relative; display: grid; gap: 9px; min-width: 0; padding: 7px 7px 11px; border: 1px solid var(--line); border-radius: 9px; background: var(--surface); cursor: pointer; transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease; }
.map-choice:hover { transform: translateY(-2px); border-color: #9cb3f2; }
.map-choice:has(input:checked) { border-color: var(--blue); box-shadow: 0 0 0 2px rgba(36,87,230,.12); }
.map-choice > input { position: absolute; top: 13px; left: 13px; z-index: 2; width: 15px; height: 15px; margin: 0; accent-color: var(--blue); }
.map-choice-label { display: grid; gap: 9px; min-width: 0; cursor: pointer; }
.map-preview { position: relative; display: block; aspect-ratio: 1.42; overflow: hidden; border-radius: 6px; background: #e8edf4; }
.map-preview-none { display: grid; place-items: center; background: transparent; border: 1px dashed #c8ced8; }
.map-preview-none > i { color: #98a2b3; font-size: 22px; font-style: normal; }
.map-preview-static, .map-preview-interactive { background: linear-gradient(145deg,#dce8dc 0 47%,#eef1e8 47% 100%); }
.map-preview-interactive { cursor: grab; touch-action: none; }
.map-preview-interactive.is-dragging { cursor: grabbing; }
.map-canvas { position: absolute; inset: 0; transform-origin: center; transition: transform .18s ease; }
.map-preview-interactive.is-dragging .map-canvas { transition: none; }
.map-road { position: absolute; display: block; height: 9px; background: #fff; box-shadow: 0 0 0 1px rgba(89,106,128,.13); transform-origin: center; }
.map-road-a { inset: 43% -8%; transform: rotate(-17deg); }
.map-road-b { top: 9%; bottom: 0; left: 58%; width: 8px; height: auto; transform: rotate(13deg); }
.map-road-c { right: 0; bottom: 15%; left: 0; transform: rotate(9deg); }
.map-pin { position: absolute; top: 35%; left: 43%; width: 16px; height: 16px; border-radius: 50% 50% 50% 0; background: var(--blue); box-shadow: 0 2px 6px rgba(7,27,61,.25); transform: rotate(-45deg); }
.map-pin::after { content: ""; position: absolute; inset: 5px; border-radius: 50%; background: #fff; }
.map-controls { position: absolute; top: 14px; right: 14px; z-index: 3; display: grid; width: 25px; overflow: hidden; border: 1px solid #c8ced8; border-radius: 4px; background: white; box-shadow: 0 2px 5px rgba(7,27,61,.12); }
.map-controls button { display: grid; place-items: center; width: 24px; height: 22px; padding: 0; border: 0; background: white; color: #172033; font-size: 14px; font-weight: 900; line-height: 1; cursor: pointer; }
.map-controls button + button { border-top: 1px solid #d7dce4; }
.map-controls button:disabled { color: #98a2b3; cursor: default; }
.map-drag-hint { position: absolute; right: 6px; bottom: 6px; z-index: 2; padding: 2px 5px; border-radius: 3px; background: rgba(7,27,61,.74); color: white; font-size: 8px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; pointer-events: none; }
.map-choice-copy { display: grid; gap: 2px; padding: 0 2px; }
.map-choice-copy b { overflow-wrap: anywhere; font-size: 13px; line-height: 1.25; }
.map-choice-copy strong { color: var(--blue); font-size: 12px; }
.map-address-field { margin: -12px 0 28px; padding: 16px 16px 2px; border-left: 3px solid var(--blue); background: var(--blue-soft); }
.map-address-field[hidden] { display: none; }
.map-address-field .field { margin-bottom: 14px; }
.map-address-field .field > small { display: block; margin-top: 7px; color: var(--muted); font-size: 13px; font-weight: 400; line-height: 1.45; }
.addon-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 24px; margin-bottom: 28px; border-top: 1px solid var(--line); }
.addon-preview { display: flex; flex-direction: column; align-items: flex-start; min-width: 0; padding-bottom: 14px; border-bottom: 1px solid var(--line); }
.addon-preview .check-option { width: 100%; border-bottom: 0; }
.addon-preview-button { margin: -4px 2px 0; padding: 8px 11px; border: 1px solid var(--blue); border-radius: 5px; background: transparent; color: var(--blue); font: inherit; font-size: 12px; font-weight: 800; cursor: pointer; transition: color .2s ease, background .2s ease, transform .2s ease; }
.addon-preview-button:hover { transform: translateY(-1px); background: var(--blue); color: white; }
.check-option { display: flex; align-items: center; gap: 12px; padding: 15px 2px; border: 0; border-bottom: 1px solid var(--line); border-radius: 0; cursor: pointer; }
.check-option > span { display: grid; }
.check-option small { display: block; }
.check-option .check-price { color: var(--blue); font-weight: 700; }
.check-option .check-detail { max-width: 610px; margin: 4px 0 7px; color: var(--muted); font-size: 14px; font-weight: 400; line-height: 1.5; }
.monthly-addon { margin: -4px 0 28px; }
.monthly-addon .check-option { align-items: flex-start; padding: 17px 2px; background: transparent; }
.monthly-addon .check-option input { margin-top: 4px; }
.panel-purpose-config { margin: 5px 0 18px; padding: 14px 15px; border-left: 3px solid var(--blue); background: var(--blue-soft); }
.panel-purpose-config[hidden] { display: none; }
.panel-purpose-heading { display: grid; gap: 2px; margin-bottom: 11px; }
.panel-purpose-heading strong { font-size: 15px; }
.panel-purpose-heading small { color: var(--muted); font-size: 12px; }
.panel-purpose-fields { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 10px; }
.panel-purpose-fields .field { margin: 0; }
.panel-purpose-fields input { background: #fff; }
.panel-purpose-config .small-action, .panel-purpose-config .remove-action { margin-top: 10px; }
.panel-demo { margin-top: 8px; overflow: hidden; border: 1px solid #cbd5e1; border-radius: 10px; background: #f7f9fc; box-shadow: 5px 5px 0 var(--blue-soft); }
.panel-demo-bar { display: flex; align-items: center; gap: 5px; padding: 8px 10px; border-bottom: 1px solid #d7dce4; background: #eef2f7; }
.panel-demo-bar > span { width: 7px; height: 7px; border-radius: 50%; background: #ff6257; }
.panel-demo-bar > span:nth-child(2) { background: #f4c64d; }
.panel-demo-bar > span:nth-child(3) { background: #52bf73; }
.panel-demo-bar > b { margin-left: 5px; color: #667085; font-size: 9px; font-weight: 700; letter-spacing: .02em; }
.panel-demo-content { padding: 14px; }
.panel-demo-position { display: flex; align-items: center; gap: 16px; padding: 12px 13px; border: 1px solid #d8dee8; border-radius: 7px; background: #fff; }
.panel-demo-position[hidden], .panel-demo-auth[hidden], .panel-demo-editor[hidden] { display: none; }
.panel-demo-position-copy { display: grid; grid-template-columns: minmax(0,1fr) auto; align-items: center; gap: 3px 18px; flex: 1; min-width: 0; }
.panel-demo-position-copy > span { grid-column: 1 / -1; color: #667085; font-size: 9px; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; }
.panel-demo-position-copy > strong { overflow: hidden; color: #172033; font-size: 14px; text-overflow: ellipsis; white-space: nowrap; }
.panel-demo-position-copy > small { color: var(--blue); font-size: 13px; font-weight: 800; }
.panel-demo-auth { display: grid; grid-template-columns: minmax(150px,1.2fr) minmax(110px,1fr) minmax(95px,1fr) auto; align-items: end; gap: 9px; }
.panel-demo-auth-copy { display: grid; align-self: center; gap: 3px; }
.panel-demo-auth-copy strong { color: #172033; font-size: 12px; }
.panel-demo-auth-copy small { color: #667085; font-size: 9px; line-height: 1.35; }
.panel-demo-editor { display: grid; grid-template-columns: minmax(0,1fr) 105px auto; align-items: end; gap: 9px; }
.panel-demo-auth label, .panel-demo-editor label { display: grid; gap: 4px; }
.panel-demo-auth label > span, .panel-demo-editor label > span { color: #667085; font-size: 9px; font-weight: 800; text-transform: uppercase; }
.panel-demo-auth input, .panel-demo-editor input { width: 100%; min-width: 0; height: 35px; padding: 7px 9px; border: 1px solid #c8ced8; border-radius: 5px; background: #fff; color: #172033; outline: none; }
.panel-demo-auth input:focus, .panel-demo-editor input:focus { border-color: var(--blue); box-shadow: 0 0 0 2px rgba(36,87,230,.12); }
.panel-demo-action { height: 35px; padding: 0 13px; border: 0; border-radius: 5px; background: var(--blue); color: #fff; font-size: 11px; font-weight: 800; cursor: pointer; }
.panel-demo-position .panel-demo-action { flex: 0 0 auto; height: 28px; padding: 0 5px; border-bottom: 1px solid currentColor; border-radius: 0; background: transparent; color: #667085; font-size: 9px; opacity: .62; }
.panel-demo-position .panel-demo-action:hover, .panel-demo-position .panel-demo-action:focus-visible { opacity: 1; }
.panel-demo-status { display: block; padding: 0 14px 13px; color: #667085; font-size: 10px; }
.referral-field { display: block; margin-top: 8px; }
.referral-field-heading { display: block; max-width: 540px; margin-bottom: 10px; }
.referral-field-heading > span { font-size: 15px; font-weight: 800; }
.referral-field > small a { color: var(--blue); font-weight: 800; }
.referral-field > small a:hover { text-decoration: underline; }
.referral-code-inputs { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)) 10px repeat(4, minmax(0, 1fr)); gap: 6px; max-width: 440px; }
.referral-char { width: 100%; min-width: 0; height: 48px; padding: 0; border: 1px solid #c8ced8; border-radius: 7px; background: white; color: var(--ink); font-size: 18px; font-weight: 800; text-align: center; text-transform: uppercase; outline: none; transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease; }
.referral-char:nth-child(5) { grid-column: 6; }
.referral-char:focus { position: relative; z-index: 1; transform: translateY(-2px); border-color: var(--blue); box-shadow: 0 0 0 3px rgba(36,87,230,.12); }
.referral-field > small { display: block; margin-top: 9px; color: var(--muted); font-size: 14px; }
.referral-reward-card { display: flex; align-items: center; justify-content: space-between; gap: 28px; margin: 26px 0 42px; padding: 24px 26px; border: 1px solid color-mix(in srgb, var(--blue) 34%, var(--line)); border-radius: 10px; background: var(--blue-soft); }
.referral-reward-card strong { color: var(--blue); font-size: 23px; letter-spacing: -.035em; }
.referral-reward-card span { max-width: 430px; color: var(--muted); font-size: 14px; }
.offer-consent { margin: 0; padding: 0; }
.offer-consent input { flex: 0 0 auto; }
.offer-consent span { color: var(--muted); font-size: 14px; line-height: 1.5; }
.offer-consent a { color: var(--blue); font-weight: 700; }
.form-submit-panel { display: grid; grid-template-columns: minmax(300px,1fr) minmax(300px,.72fr); align-items: stretch; gap: 18px 28px; margin-top: 36px; padding: 28px 0; background: transparent; border-top: 2px solid var(--ink); border-bottom: 1px solid var(--line); }
.submit-agreement { grid-column: 1 / -1; display: grid; gap: 7px; }
.submit-agreement > small { padding-left: 28px; color: var(--muted); font-size: 13px; }
.turnstile-field { grid-column: 1; display: grid; gap: 8px; min-width: 0; }
.turnstile-widget { width: 100%; min-height: 65px; }
.turnstile-field > small { max-width: 330px; color: var(--muted); font-size: 13px; line-height: 1.45; }
.turnstile-field > small[data-state="success"] { color: #157347; font-weight: 800; }
.turnstile-field > small[data-state="error"] { color: #b42318; font-weight: 800; }
.form-submit-panel .submit { grid-column: 2; align-self: center; justify-self: end; width: min(100%,380px); min-width: 0; min-height: 68px; padding: 15px 24px; border: 1px solid #7091e9; border-radius: 10px; background: #315ec8; color: #fff; font-size: 18px; line-height: 1.2; box-shadow: 0 8px 22px rgba(28,68,164,.24); }
.form-submit-panel .submit:hover:not(:disabled) { background: #264fae; transform: translateY(-2px); box-shadow: 0 11px 25px rgba(20,52,128,.29); }
.form-submit-panel .submit:active:not(:disabled) { transform: translateY(0); box-shadow: 0 5px 14px rgba(20,52,128,.24); }
.form-submit-panel .submit:disabled { cursor: wait; opacity: .72; }
.offer-summary { position: sticky; top: 100px; padding: 27px 26px; background: var(--ink); color: white; border-top: 4px solid var(--blue); border-radius: 3px; box-shadow: none; }
@media (min-width: 901px) {
  .offer-summary {
    max-height: calc(100vh - 120px);
    max-height: calc(100dvh - 120px);
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-gutter: stable;
    scrollbar-width: thin;
    scrollbar-color: #52637d transparent;
  }
  .offer-summary::-webkit-scrollbar { width: 7px; }
  .offer-summary::-webkit-scrollbar-track { background: transparent; }
  .offer-summary::-webkit-scrollbar-thumb { background: #52637d; border-radius: 999px; }
}
.offer-summary .overline { color: #8aa8ff; }
.summary-address { display: grid; margin: -4px 0 21px; padding: 15px 16px; border: 1px solid #344054; border-radius: 8px; background: #0b1423; }
.summary-address span { margin-bottom: 3px; color: #8aa8ff; font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.summary-address strong { overflow-wrap: anywhere; color: #f7f9fc; font-size: 16px; letter-spacing: -.02em; }
.price-row { display: flex; justify-content: space-between; gap: 12px; padding: 10px 0; border-top: 1px solid #344054; color: #d7dce4; font-size: 14px; }
.price-limit { color: #9fe3ad; }
.summary-total { margin-top: 20px; padding: 22px 0; border-top: 1px solid #667085; }
.summary-total span, .summary-total strong, .summary-monthly span, .summary-monthly strong { display: block; }
.summary-total span, .summary-monthly span { color: #aab2bf; font-size: 13px; }
.summary-total strong { font-size: 42px; letter-spacing: -.05em; }
.summary-total small { display: block; max-width: 240px; margin-top: 4px; color: #9fe3ad; font-size: 11px; line-height: 1.4; }
.summary-monthly { padding: 18px 0; border-top: 1px solid #344054; }
.summary-monthly strong { font-size: 23px; }
.summary-monthly small { display: block; margin-top: 4px; color: #9fe3ad; font-size: 11px; line-height: 1.4; }
.success-box { display: grid; gap: 3px; padding: 18px; border: 1px solid #9fd2aa; border-radius: 7px; background: #eef9f0; color: #216b32; }
.confirmation-email { width: max-content; max-width: 100%; margin: 5px 0; padding: 6px 9px; border: 1px solid currentColor; border-radius: 5px; background: #fff; font-size: 1rem; overflow-wrap: anywhere; }
.summary-success { grid-column: 1 / -1; font-size: 14px; }
.summary-success:not(.form-error) { font-weight: 800; }
.form-error { border-color: #e6a09a; background: #fff2f0; color: #9d2b22; }

.legal-page { max-width: 1132px; margin: 0 auto; padding: 78px 0 110px; }
.legal-heading { max-width: 850px; }
.legal-heading > p:not(.overline) { color: var(--muted); }
.legal-warning { display: grid; gap: 4px; margin: 34px 0 60px; padding: 20px; border-left: 4px solid #dc6803; background: #fff6ed; color: #7a2e0e; }
.legal-layout { display: grid; grid-template-columns: 250px minmax(0,1fr); gap: 80px; align-items: start; }
.legal-toc { position: sticky; top: 100px; display: grid; gap: 9px; }
.legal-toc strong { margin-bottom: 8px; }
.legal-toc a { color: var(--muted); font-size: 15px; text-decoration: none; }
.legal-toc a:hover { color: var(--blue); }
.legal-content section { scroll-margin-top: 100px; padding-bottom: 38px; margin-bottom: 38px; border-bottom: 1px solid var(--line); }
.legal-content h2 { font-size: 30px; }
.legal-content p, .legal-content li { color: #475467; }
.legal-content ul { display: grid; gap: 8px; padding-left: 22px; }
.withdrawal-template { margin: 24px 0; padding: 24px; border: 1px solid var(--line); background: var(--surface); }
.withdrawal-template p { margin: 0 0 16px; }
.withdrawal-template p:last-child { margin-bottom: 0; }

/* Zapowiedź katalogu firm */
.directory-page { max-width: 1132px; margin: 0 auto; padding: 68px 0 90px; }
.directory-hero { display: grid; grid-template-columns: minmax(0,1fr) 280px; gap: 70px; align-items: end; padding-bottom: 58px; border-bottom: 2px solid var(--ink); }
.directory-intro h1 { max-width: 800px; margin-bottom: 24px; font-size: clamp(54px,7vw,88px); }
.directory-intro > p:last-child { max-width: 680px; margin: 0; color: var(--muted); font-size: 19px; }
.directory-launch { display: grid; align-content: end; min-height: 220px; padding: 24px 0 6px 28px; border-left: 1px solid var(--line); }
.directory-launch span { color: var(--muted); font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.directory-launch strong { margin: 10px 0 -9px; color: #2457e6; font-family: Arial Black, Arial, sans-serif; font-size: 62px; line-height: .9; letter-spacing: -.09em; transform: skewY(-4deg); text-shadow: 1px 1px 0 #dfe7ff, 3px 3px 0 #89a5f2, 6px 6px 0 #142d70; }
.directory-launch b { font-size: 25px; letter-spacing: .16em; }
.directory-search { padding: 64px 0; border-bottom: 1px solid var(--line); }
.directory-search h2, .directory-terms h2 { margin-bottom: 0; font-size: clamp(36px,4.5vw,54px); }
.directory-search-preview { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr) auto; align-items: end; gap: 12px; margin-top: 34px; padding: 24px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.directory-search-preview label { display: grid; gap: 8px; }
.directory-search-preview label > span { color: var(--muted); font-size: 11px; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; }
.directory-search-preview input { width: 100%; min-height: 49px; padding: 0 14px; border: 1px solid #c8ced8; border-radius: 4px; background: var(--surface); color: var(--ink); }
.directory-search-preview button { min-height: 49px; padding: 0 17px; border: 1px solid var(--ink); border-radius: 4px; background: var(--ink); color: white; font-weight: 800; opacity: .55; cursor: not-allowed; }
.directory-search-note { margin: 11px 0 0; color: var(--muted); font-size: 12px; }
.directory-terms { padding-top: 64px; }
.directory-terms-heading { display: grid; grid-template-columns: 180px minmax(0,1fr); gap: 28px; align-items: start; }
.directory-rule-list { display: grid; grid-template-columns: 1fr 1fr; margin-top: 38px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.directory-rule-list article { padding: 30px 42px 30px 0; }
.directory-rule-list article + article { padding-right: 0; padding-left: 42px; border-left: 1px solid var(--line); }
.directory-rule-mark { display: inline-block; margin-bottom: 16px; color: var(--blue); font-size: 10px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.directory-rule-list h3 { margin-bottom: 10px; font-size: 22px; letter-spacing: -.03em; }
.directory-rule-list p { margin: 0; color: var(--muted); font-size: 14px; }
.directory-bottom-line { display: flex; align-items: center; justify-content: space-between; gap: 28px; padding: 32px 0 18px; }
.directory-bottom-line p { max-width: 580px; margin: 0; font-weight: 700; }
.directory-legal-note { margin: 0; color: var(--muted); font-size: 12px; }
.directory-legal-note a { color: var(--blue); font-weight: 800; }

/* Motyw ciemny */
html[data-theme="dark"] .accessibility-controls button { border-color: #536987; }
html[data-theme="dark"] .accessibility-controls button[aria-pressed="true"] { color: #07101f; }
html[data-theme="dark"] .brief-label,
html[data-theme="dark"] .price-card,
html[data-theme="dark"] .offer-summary,
html[data-theme="dark"] footer { background: #050a13; color: #f7f9fc; }
html[data-theme="dark"] .primary { color: #07101f; box-shadow-color: #000; }
html[data-theme="dark"] .form-submit-panel .submit { color: #fff; }
html[data-theme="dark"] .hero-summary,
html[data-theme="dark"] .form-section,
html[data-theme="dark"] .contact-form,
html[data-theme="dark"] .legal-toc { box-shadow: none; }
html[data-theme="dark"] .field input,
html[data-theme="dark"] .field textarea,
html[data-theme="dark"] .contact-form input,
html[data-theme="dark"] .contact-form textarea,
html[data-theme="dark"] .small-action,
html[data-theme="dark"] .remove-action,
html[data-theme="dark"] .counter-controls button,
html[data-theme="dark"] .referral-char { background: #0c1626; color: var(--ink); border-color: var(--line); }
html[data-theme="dark"] .field-free { background: #142750; color: #cbd7ff; border-color: #536987; }
html[data-theme="dark"] .opening-time input { background: #0c1626; color: var(--ink); border-color: var(--line); }
html[data-theme="dark"] .map-choice { background: #0c1626; }
html[data-theme="dark"] .map-preview-none { border-color: #344054; }
html[data-theme="dark"] .map-controls, html[data-theme="dark"] .map-controls button { background: #f7f9fc; color: #172033; }
html[data-theme="dark"] .panel-demo { background: #0c1626; border-color: #344054; box-shadow: 5px 5px 0 #13233c; }
html[data-theme="dark"] .panel-purpose-config { background: #101d30; }
html[data-theme="dark"] .panel-purpose-fields input { background: #07101f; color: #f7f9fc; border-color: #344054; }
html[data-theme="dark"] .panel-demo-bar { background: #111d30; border-color: #344054; }
html[data-theme="dark"] .panel-demo-position { background: #07101f; border-color: #344054; }
html[data-theme="dark"] .panel-demo-position-copy > strong, html[data-theme="dark"] .panel-demo-auth-copy strong { color: #f7f9fc; }
html[data-theme="dark"] .panel-demo-auth-copy small, html[data-theme="dark"] .panel-demo-auth label > span, html[data-theme="dark"] .panel-demo-editor label > span, html[data-theme="dark"] .panel-demo-status { color: #aab2bf; }
html[data-theme="dark"] .panel-demo-auth input, html[data-theme="dark"] .panel-demo-editor input { background: #07101f; color: #f7f9fc; border-color: #344054; }
html[data-theme="dark"] .panel-demo-position .panel-demo-action { background: transparent; color: #aab2bf; }
html[data-theme="dark"] .company-availability[data-state="available"] { color: #9fe3ad; }
html[data-theme="dark"] .company-availability[data-state="taken"] { color: #ff9b91; }
html[data-theme="dark"] .legal-content p, html[data-theme="dark"] .legal-content li { color: #b7c0cf; }
html[data-theme="dark"] .form-section-number,
html[data-theme="dark"] .directory-launch strong { color: #a9bdff; text-shadow: 1px 1px 0 #18243a, 3px 3px 0 #4866b8, 6px 6px 0 #050a13; }
html[data-theme="dark"] .form-section-number-line { box-shadow: 1px 1px 0 #18243a, 2px 2px 0 #4866b8, 4px 4px 0 #050a13; }
html[data-theme="dark"] .directory-search-preview input { background: #0c1626; color: var(--ink); border-color: var(--line); }
html[data-theme="dark"] .directory-search-preview button { background: #f5f7fb; color: #0b1220; border-color: #f5f7fb; }
html[data-theme="dark"] .legal-warning { background: #2a190d; color: #ffc58f; border-left-color: #f79009; }
html[data-theme="dark"] .light-button { background: #1c2a41; color: #f7f9fc; }
html[data-theme="dark"] .success-box { background: #102819; color: #9fe3ad; border-color: #347a45; }
html[data-theme="dark"] .confirmation-email { background: #08190d; color: #b9efc4; }
html[data-theme="dark"] .form-error { background: #321814; color: #ffb4ab; border-color: #8f4138; }
html[data-theme="dark"] .turnstile-field > small[data-state="success"] { color: #70d7a1; }
html[data-theme="dark"] .turnstile-field > small[data-state="error"] { color: #ffb4ab; }
html[data-theme="dark"] .addon-preview-button { border-color: #86a8ff; color: #b8c9ff; }
html[data-theme="dark"] .addon-preview-button:hover { background: #86a8ff; color: #08111f; }

/* Jeden opcjonalny poziom powiększenia całego interfejsu */
html[data-text-size="large"] body { zoom: 1.12; }

/* Zwarty układ strony głównej */
.hero { min-height: 0; padding-top: 68px; padding-bottom: 62px; gap: 64px; }
.hero h1 { margin-bottom: 22px; font-size: clamp(50px,6.7vw,86px); }
.hero-lead { margin-bottom: 28px; font-size: 20px; }
.hero-summary { padding: 0; overflow: hidden; isolation: isolate; border-radius: 10px; box-shadow: 8px 8px 0 #dce5ff; }
.cat-banner { position: relative; height: 196px; overflow: hidden; border-radius: 9px 9px 0 0; background: #f5cf66; border-bottom: 1px solid var(--line); }
.cat-scene { position: absolute; inset: 0; display: grid; place-items: center; overflow: hidden; transition: opacity .28s ease, transform .28s ease; }
.cat-scene-asleep { opacity: 0; transform: translateY(8px); pointer-events: none; }
.cat-sky-symbol { position: absolute; top: 18px; right: 25px; display: grid; place-items: center; width: 52px; height: 52px; font-family: Georgia, serif; font-size: 47px; line-height: 1; }
.cat-sun-symbol { color: #fff8d3; text-shadow: 0 0 18px rgba(255,248,211,.72); animation: sun-turn 14s linear infinite; }
.cat-moon-symbol { color: #dbe5ff; text-shadow: 0 0 16px rgba(184,202,255,.45); }
.cat-sleep-z { position: absolute; top: 47px; left: calc(50% + 69px); color: #b8caff; font-family: Consolas, "Courier New", monospace; font-size: 23px; font-weight: 800; animation: z-float 2.8s ease-in-out infinite; }
.ascii-cat { margin: 8px 0 0; color: #08204a; font-family: Consolas, "Courier New", monospace; font-size: 38px; font-weight: 800; line-height: 1.02; letter-spacing: -.04em; text-shadow: 3px 3px 0 rgba(255,255,255,.25); user-select: none; }
.ascii-cat-awake { animation: cat-head-awake 4.8s ease-in-out infinite; }
.cat-eye-state { display: inline-grid; vertical-align: baseline; }
.cat-eye-state > span { grid-area: 1 / 1; }
.cat-eyes-open { animation: cat-eyes-open 6s step-end infinite; }
.cat-eyes-closed { opacity: 0; animation: cat-eyes-closed 6s step-end infinite; }

html[data-theme="dark"] .hero-summary { background: #101b32; border-color: #2c384b; box-shadow: 8px 8px 0 #050a13; }
html[data-theme="dark"] .cat-banner { background: #101b32; border-bottom-color: #2c384b; }
html[data-theme="dark"] .cat-scene-awake { opacity: 0; transform: translateY(8px); pointer-events: none; }
html[data-theme="dark"] .cat-scene-asleep { opacity: 1; transform: translateY(0); }
html[data-theme="dark"] .ascii-cat { color: #b8caff; text-shadow: 0 0 10px rgba(131,167,255,.28); }
.ascii-cat-asleep { animation: ascii-breathe 3.8s ease-in-out infinite; }

@keyframes cat-head-awake {
  0%, 42%, 100% { transform: rotate(0); }
  47%, 58% { transform: rotate(3deg); }
}
@keyframes cat-eyes-open {
  0%, 44%, 48%, 100% { opacity: 1; }
  45%, 47% { opacity: 0; }
}
@keyframes cat-eyes-closed {
  0%, 44%, 48%, 100% { opacity: 0; }
  45%, 47% { opacity: 1; }
}
@keyframes ascii-breathe {
  0%, 100% { transform: scale(1); opacity: .82; }
  50% { transform: scale(1.018); opacity: 1; }
}
@keyframes sun-turn { to { transform: rotate(360deg); } }
@keyframes z-float {
  0%, 100% { opacity: .35; transform: translateY(4px); }
  50% { opacity: 1; transform: translateY(-4px); }
}
.brief-label { display: flex; align-items: end; justify-content: space-between; gap: 20px; padding: 22px 24px; background: var(--ink); color: white; }
.brief-label span { color: #b8c1d1; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.brief-label b { font-size: 26px; letter-spacing: -.04em; }
.hero-summary ul { padding: 9px 24px 0; }
.hero-summary li { padding-top: 10px; padding-bottom: 10px; }
.summary-link { display: flex; align-items: center; justify-content: space-between; margin: 8px 24px 22px; padding-top: 16px; border-top: 1px solid var(--line); color: var(--blue); font-size: 14px; font-weight: 800; text-decoration: none; }
.summary-link span { display: grid; place-items: center; width: 30px; height: 30px; border-radius: 50%; background: var(--blue-soft); transition: transform .25s ease, background .25s ease; }
.summary-link:hover span { transform: rotate(45deg); background: #dce5ff; }

.fact-strip { max-width: 1132px; margin: 0 auto 12px; display: grid; grid-template-columns: repeat(4,1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.fact-strip > div { display: grid; gap: 1px; padding: 22px 24px; border-right: 1px solid var(--line); }
.fact-strip > div:first-child { padding-left: 0; }
.fact-strip > div:last-child { border-right: 0; }
.fact-strip strong { font-size: 20px; letter-spacing: -.03em; }
.fact-strip span { color: var(--muted); font-size: 13px; text-transform: uppercase; letter-spacing: .07em; }

.section { padding-top: 72px; padding-bottom: 72px; }
.service-section { display: grid; grid-template-columns: minmax(0,1.08fr) minmax(350px,.92fr); gap: 70px; align-items: start; background: var(--surface); }
.compact-heading { margin-bottom: 30px; }
.compact-heading h2 { margin-bottom: 0; font-size: clamp(40px,4.7vw,60px); }
.compact-steps { display: grid; grid-template-columns: 1fr; border: 0; }
.compact-steps li, .compact-steps li + li { display: grid; grid-template-columns: 82px 1fr; gap: 22px; align-items: start; padding: 20px 0; border: 0; border-top: 1px solid var(--line); }
.compact-steps li:last-child { border-bottom: 1px solid var(--line); }
.compact-steps .step-number { display: inline-block; width: max-content; color: #2457e6; font-family: Arial Black, Arial, sans-serif; font-size: 48px; font-weight: 900; line-height: .86; letter-spacing: -.09em; transform: skewY(-4deg); text-shadow: 1px 1px 0 #dfe7ff, 3px 3px 0 #89a5f2, 6px 6px 0 #142d70; }
.compact-steps h3 { margin: 0 0 5px; font-size: 17px; }
.compact-steps p { max-width: none; margin: 0; font-size: 16px; }
.compact-price { border-radius: 10px; box-shadow: 8px 8px 0 var(--blue); }
.price-heading { margin: 0 0 22px; color: #fff; font-size: clamp(32px,3.6vw,46px); line-height: 1; letter-spacing: -.045em; }
.compact-price .price-main { display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 3px 20px; padding-bottom: 20px; }
.compact-price .price-main strong { grid-row: 1 / span 2; grid-column: 2; font-size: 42px; }
.compact-price .price-main small { grid-column: 1; }
.compact-price ul { margin: 14px 0; }
.compact-price li { padding-top: 9px; padding-bottom: 9px; }
.rule-list li { display: grid; gap: 1px; }
.rule-list li strong { color: #f7f9fc; font-size: 16px; }
.rule-list li span { color: #aab2bf; font-size: 14px; line-height: 1.45; }
.rules-quote-button { margin-top: 22px; }
.compact-price .monthly { padding: 15px 0; }
html[data-theme="dark"] .compact-steps .step-number { color: #a9bdff; text-shadow: 1px 1px 0 #18243a, 3px 3px 0 #4866b8, 6px 6px 0 #050a13; }
.light-button { width: 100%; margin-top: 20px; background: white; color: var(--ink); }


/* Przyciski z wyraźną, ale spokojną interakcją */
.button { position: relative; gap: 18px; overflow: visible; transition: transform .22s ease, box-shadow .22s ease, background .22s ease; }
.primary { box-shadow: 4px 4px 0 var(--ink); }
.primary:hover { transform: translate(-2px,-2px); box-shadow: 7px 7px 0 var(--ink); }
.primary:active { transform: translate(2px,2px); box-shadow: 1px 1px 0 var(--ink); }
.button-arrow::after { content: "→"; display: grid; place-items: center; width: 25px; height: 25px; margin-right: -7px; border-radius: 50%; background: rgba(255,255,255,.18); transition: transform .22s ease; }
.button-arrow:hover::after { transform: translateX(4px) rotate(-8deg); }
.light-button.button-arrow::after { background: var(--blue-soft); }
.light-button:hover { transform: translate(-2px,-2px); box-shadow: 5px 5px 0 #8aa8ff; }
.nav-cta { transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.nav-cta::after { content: "↗"; margin-left: 9px; }
.nav-back::before { content: "←"; margin-right: 7px; }
.nav-back::after { content: none; }
.nav-quote { min-height: 56px; padding: 12px 22px; background: var(--blue); color: #fff; font-size: 18px; font-weight: 800; box-shadow: 3px 3px 0 var(--ink); }
.nav-quote::after { content: "→"; font-size: 22px; }
.nav-quote:hover { background: var(--blue-dark); transform: translate(-1px,-1px); box-shadow: 5px 5px 0 var(--ink); }
.nav-quote:active { transform: translate(2px,2px); box-shadow: 1px 1px 0 var(--ink); }
.nav-directory, .nav-back { background: color-mix(in srgb, var(--page) 94%, transparent); color: var(--ink); font-size: 16px; backdrop-filter: blur(8px); }
.nav-directory:hover, .nav-back:hover { background: var(--blue-soft); color: var(--blue); }
.nav-back { border: 1px solid var(--line); }
html[data-theme="dark"] .nav-quote { color: #07101f; box-shadow: 3px 3px 0 #050a13; }
html[data-theme="dark"] .nav-quote:hover { box-shadow: 5px 5px 0 #050a13; }

/* Subtelne animacje przy przewijaniu */
.motion-ready [data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity .62s cubic-bezier(.2,.7,.2,1), transform .62s cubic-bezier(.2,.7,.2,1); }
.motion-ready [data-reveal].is-visible { opacity: 1; transform: translateY(0); }
.motion-ready .fact-strip [data-reveal]:nth-child(2) { transition-delay: .07s; }
.motion-ready .fact-strip [data-reveal]:nth-child(3) { transition-delay: .14s; }
.motion-ready .fact-strip [data-reveal]:nth-child(4) { transition-delay: .21s; }

/* Mniejsze odstępy na podstronach */
.form-page { padding-bottom: 64px; }
.subpage-hero { padding-top: 50px; padding-bottom: 34px; }
.subpage-hero h1, .legal-heading h1 { margin-bottom: 16px; }
.offer-main { gap: 20px; }
.form-section { padding: 34px 0 38px; }
.form-section-title { margin-bottom: 24px; }
.field { margin-bottom: 18px; }
.counter { margin-top: 18px; padding: 17px 0; }
.choice-group { margin-bottom: 20px; }
.legal-page { padding-top: 54px; padding-bottom: 72px; }
.legal-warning { margin-bottom: 40px; }
.legal-content section { padding-bottom: 28px; margin-bottom: 28px; }

@media (max-width: 900px) {
  .hero, .price-section, .contact-section { grid-template-columns: 1fr; gap: 55px; }
  .hero { min-height: auto; padding-top: 80px; }
  .hero-summary { max-width: 560px; }
  .step-list { grid-template-columns: 1fr; }
  .step-list li, .step-list li + li { padding: 26px 0; border-left: 0; border-bottom: 1px solid var(--line); }
  .step-list h3 { margin-top: 18px; }
  .contact-copy { position: static; }
  .offer-main { grid-template-columns: 1fr; }
  .offer-summary { position: static; max-height: none; overflow: visible; scrollbar-gutter: auto; }
  .legal-layout { grid-template-columns: 1fr; gap: 40px; }
  .legal-toc { position: static; padding: 22px; background: var(--surface); border: 1px solid var(--line); border-radius: 10px; }
  .service-section { grid-template-columns: 1fr; gap: 42px; }
  .fact-strip { margin-left: 24px; margin-right: 24px; }
  .directory-page { padding-right: 24px; padding-left: 24px; }
  .directory-hero { grid-template-columns: 1fr 220px; gap: 38px; }
  .directory-search-preview { grid-template-columns: 1fr 1fr; }
  .directory-search-preview button { grid-column: 1 / -1; }
}

@media (max-width: 1040px) {
  .header-actions { gap: 14px; }
}

@media (max-width: 760px) {
  html { scroll-padding-top: 154px; }
  .site-header { margin-top: 8px; }
  .nav-shell { display: grid; grid-template-columns: 1fr auto; gap: 8px 16px; padding: 0 18px 6px; }
  .header-actions { display: contents; }
  .site-header nav { grid-column: 1 / -1; grid-row: 2; display: grid; grid-template-columns: 1fr 1.15fr; gap: 10px; }
  .site-header .nav-cta { padding: 10px 8px; font-size: 15px; }
  .site-header .nav-quote { min-height: 50px; font-size: 16px; }
  .site-header .nav-cta::after { margin-left: 6px; }
  .site-header .accessibility-controls { grid-column: 2; grid-row: 1; }
  .brand-full { min-width: 72px; }
  .brand-full-logo, .brand-full-logo img { width: 72px; height: 62px; }
  .site-header .brand-full { justify-self: start; }
}

@media (max-width: 640px) {
  .hero { padding: 66px 18px 76px; }
  h1 { font-size: 52px; }
  .hero-lead { font-size: 18px; }
  .hero-actions { align-items: flex-start; flex-direction: column; }
  .hero-summary { padding: 0; }
  .cat-banner { height: 174px; }
  .ascii-cat { font-size: 32px; }
  .cat-sky-symbol { font-size: 40px; }
  .section { padding: 78px 18px; }
  h2 { font-size: 40px; }
  .price-card, .contact-form { padding: 25px 20px; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .opening-day { grid-template-columns: 1fr auto; gap: 5px 10px; min-height: 0; padding: 8px 0; }
  .opening-time { grid-column: 1 / -1; grid-row: 2; justify-content: flex-start; }
  .opening-time input { width: 88px; }
  .closed-toggle { grid-column: 2; grid-row: 1; min-width: 0; }
  .form-submit-panel { grid-template-columns: 1fr; padding: 22px 0; }
  .submit-agreement, .turnstile-field, .form-submit-panel .submit { grid-column: 1; }
  .turnstile-field > small { max-width: none; }
  .form-submit-panel .submit { justify-self: stretch; width: 100%; min-width: 0; min-height: 64px; }
  .monthly { align-items: flex-start; flex-direction: column; }
  .footer-main { grid-template-columns: 1fr; gap: 30px; padding-bottom: 30px; }
  .footer-nav { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 7px; }
  .subpage-hero, .offer-layout, .legal-page { padding-left: 18px; padding-right: 18px; }
  .form-section { grid-template-columns: 68px minmax(0,1fr); gap: 12px; padding: 28px 0 32px; }
  .form-section-number { width: 56px; padding-top: 3px; font-size: 40px; text-shadow: 1px 1px 0 #dfe7ff, 2px 2px 0 #89a5f2, 4px 4px 0 #142d70; }
  .form-section-number-line { width: 36px; height: 4px; margin: 8px 0 7px; box-shadow: 1px 1px 0 #dfe7ff, 2px 2px 0 #89a5f2, 3px 3px 0 #142d70; }
  html[data-theme="dark"] .form-section-number { text-shadow: 1px 1px 0 #18243a, 2px 2px 0 #4866b8, 4px 4px 0 #050a13; }
  .form-section-title h2 { font-size: 25px; }
  .addon-grid { grid-template-columns: 1fr; }
  .counter { align-items: flex-start; flex-direction: column; }
  .map-choice-grid { gap: 7px; }
  .map-choice { padding: 5px 5px 9px; }
  .map-choice > input { top: 9px; left: 9px; }
  .map-choice-copy b { font-size: 12px; }
  .panel-demo-auth { grid-template-columns: 1fr 1fr; }
  .panel-purpose-fields { grid-template-columns: 1fr; }
  .panel-demo-auth-copy { grid-column: 1 / -1; }
  .panel-demo-auth .panel-demo-action { grid-column: 1 / -1; }
  .panel-demo-editor { grid-template-columns: minmax(0,1fr) 88px; }
  .panel-demo-editor .panel-demo-action { grid-column: 1 / -1; }
  .legal-heading h1, .subpage-hero h1 { font-size: 48px; }
  .referral-field-heading, .referral-reward-card { align-items: flex-start; flex-direction: column; gap: 8px; }
  .hero { padding-top: 48px; padding-bottom: 48px; gap: 38px; }
  .hero h1 { font-size: 50px; }
  .fact-strip { grid-template-columns: 1fr 1fr; margin-left: 18px; margin-right: 18px; }
  .fact-strip > div, .fact-strip > div:first-child { padding: 15px 10px; border-bottom: 1px solid var(--line); }
  .fact-strip > div:nth-child(2) { border-right: 0; }
  .service-section { gap: 34px; }
  .compact-steps li, .compact-steps li + li { grid-template-columns: 68px 1fr; gap: 16px; }
  .compact-steps .step-number { font-size: 40px; text-shadow: 1px 1px 0 #dfe7ff, 2px 2px 0 #89a5f2, 4px 4px 0 #142d70; }
  html[data-theme="dark"] .compact-steps .step-number { text-shadow: 1px 1px 0 #18243a, 2px 2px 0 #4866b8, 4px 4px 0 #050a13; }
  .compact-price { box-shadow: 5px 5px 0 var(--blue); }
  .directory-page { padding: 46px 18px 64px; }
  .directory-hero { grid-template-columns: 1fr; gap: 28px; padding-bottom: 40px; }
  .directory-intro h1 { font-size: 50px; }
  .directory-launch { min-height: 0; padding: 20px 0 4px; border-top: 1px solid var(--line); border-left: 0; }
  .directory-launch strong { font-size: 52px; }
  .directory-search { padding: 44px 0; }
  .directory-search-preview { grid-template-columns: 1fr; }
  .directory-search-preview button { grid-column: auto; }
  .directory-terms { padding-top: 44px; }
  .directory-terms-heading, .directory-rule-list { grid-template-columns: 1fr; }
  .directory-terms-heading { gap: 0; }
  .directory-rule-list article, .directory-rule-list article + article { padding: 24px 0; border-left: 0; }
  .directory-rule-list article + article { border-top: 1px solid var(--line); }
  .directory-bottom-line { align-items: stretch; flex-direction: column; }
  .directory-bottom-line .button { width: 100%; }
}

@media (max-width: 340px) {
  .footer-nav { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .motion-ready [data-reveal] { opacity: 1; transform: none; transition: none; }
  .button, .summary-link span, .nav-cta { transition: none; }
  .ascii-cat, .cat-sky-symbol, .cat-sleep-z, .cat-eyes-open, .cat-eyes-closed { animation: none; }
}

/* TwojSpot — typograficzna strona i spójna wycena, 06.09.2026. */
:root { --page: #fcfcfa; --surface: #fff; --ink: #17241f; --muted: #59645e; --line: #d6dcd6; --blue: #244ce5; --blue-dark: #1938b8; --blue-soft: #edf1ff; --cta: #244ce5; --cta-hover: #1938b8; }
html[data-theme="dark"] { --page: #101114; --surface: #191b20; --ink: #f3f4f6; --muted: #adb1bb; --line: #363940; --blue: #98b6ff; --blue-dark: #b5caff; --blue-soft: #1e2943; --cta: #315be8; --cta-hover: #254bc9; }
html { scroll-padding-top: 24px; }
.site-header { position: relative; top: auto; margin: 0; pointer-events: auto; }
.nav-shell { max-width: 1180px; min-height: 106px; padding: 12px 24px; display: flex; gap: 24px; border-bottom: 1px solid var(--line); }
.brand-full { background: transparent; border-radius: 0; }
.brand-caption { margin-right: auto; color: var(--muted); font-size: .875rem; }
.accessibility-controls button { border-radius: 4px; background: transparent; }
.home-page { max-width: 1180px; margin: auto; padding: 0 24px; }
.home-intro { padding: 62px 0 54px; }
.home-page .overline, .form-page .overline, .editorial-label { display: block; color: var(--muted); font-size: .875rem; font-weight: 600; letter-spacing: .055em; text-transform: uppercase; }
.home-intro h1 { max-width: none; margin-bottom: 42px; font-size: clamp(3.25rem, 6.4vw, 5.65rem); line-height: 1.05; font-weight: 600; letter-spacing: -.055em; }
.home-page em, .quote-intro em { font-family: Georgia, 'Times New Roman', serif; font-weight: 400; letter-spacing: -.06em; }
.intro-bottom { display: grid; grid-template-columns: minmax(0,1.4fr) minmax(0,.8fr); gap: clamp(40px,8vw,120px); align-items: start; }
.intro-copy > p { max-width: 590px; margin-bottom: 26px; color: var(--muted); font-size: 1.125rem; line-height: 1.7; }
.quote-link { display: flex; justify-content: space-between; align-items: center; gap: 28px; width: 100%; min-height: 82px; padding: 20px 26px; border: 1px solid var(--cta); border-radius: 4px; background: var(--cta); color: #fff; text-decoration: none; font-size: 1.4rem; font-weight: 700; line-height: 1.2; transition: background .18s ease, border-color .18s ease; }
.quote-link > span:last-child { font-size: 2rem; font-weight: 400; transition: transform .18s ease; }
.quote-link:hover { background: var(--cta-hover); border-color: var(--cta-hover); }
.quote-link:hover > span:last-child { transform: translate(3px,-3px); }
.hero-quote-button { max-width: 500px; }
.cta-note { display: block; margin-top: 12px; color: var(--muted); font-size: .875rem; }
.intro-price { border-top: 2px solid var(--ink); padding-top: 15px; }
.intro-price-value { display: flex; gap: 12px; align-items: baseline; margin-top: 12px; }
.intro-price-value > span { font-size: 1.375rem; }
.intro-price-value strong { font-size: 6rem; font-weight: 500; letter-spacing: -.085em; line-height: 1.1; }
.intro-price > p { color: var(--muted); font-size: 1rem; margin: 12px 0 20px; }
.intro-price-foot { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; border-top: 1px solid var(--line); padding-top: 16px; font-size: .9375rem; }
.home-facts { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); padding: 25px 0; border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); gap: 20px; }
.home-facts strong, .home-facts span { display: block; }
.home-facts strong { font-size: 1.3rem; font-weight: 600; letter-spacing: -.03em; }
.home-facts span { margin-top: 4px; color: var(--muted); font-size: .875rem; }
.home-process { display: grid; grid-template-columns: minmax(0,.8fr) minmax(0,1.2fr); gap: 60px; padding: 92px 0; }
.home-section-heading h2 { margin-top: 22px; font-size: clamp(2.6rem,4.2vw,3.6rem); font-weight: 500; }
.home-steps { margin: 0; padding: 0; list-style: none; }
.home-steps li { display: grid; grid-template-columns: 76px minmax(0,1fr); gap: 20px; padding: 27px 0; border-top: 1px solid var(--line); }
.home-steps li:first-child { padding-top: 0; border-top: 0; }
.home-steps li:last-child { padding-bottom: 0; }
.home-steps .step-number { color: var(--blue); font-size: 3rem; font-weight: 600; line-height: 1.1; letter-spacing: -.05em; font-variant-numeric: tabular-nums; }
.home-steps h3 { margin: 0 0 12px; font-size: 1.25rem; font-weight: 600; letter-spacing: -.025em; }
.home-steps p { color: var(--muted); margin: 0; font-size: 1rem; }
.home-terms { display: grid; grid-template-columns: minmax(0,.8fr) minmax(0,1.2fr); gap: 60px; padding: 64px 48px; background: #192d25; color: #f7faf2; }
.home-terms .editorial-label { color: #bbc7bd; }
.terms-heading h2 { font-size: clamp(3.5rem,5vw,5rem); font-weight: 500; margin: 22px 0; }
.terms-heading > p { color: #bdc9bf; max-width: 280px; font-size: 1rem; }
.home-rules { margin: 0 0 32px; }
.home-rules > div { border-top: 1px solid #43554b; padding: 22px 0; }
.home-rules > div:first-child { border-top: 0; padding-top: 0; }
.home-rules dt { margin-bottom: 10px; font-size: 1.1875rem; font-weight: 600; }
.home-rules dd { margin: 0; color: #c0cbc2; font-size: 1rem; }
.home-terms .quote-link { background: #d9f989; border-color: #d9f989; color: #17241f; }
.home-terms .quote-link:hover { background: #e7ffb3; border-color: #e7ffb3; }
.terms-note { margin: 12px 0 0; color: #bdc9bf; font-size: .875rem; }
.directory-inline { display: grid; grid-template-columns: .8fr 1fr auto; gap: 30px; align-items: center; padding: 50px 0; }
.directory-inline > p { margin: 0; font-size: 1rem; }
.directory-inline > a { display: inline-flex; align-items: center; justify-content: space-between; gap: 30px; padding: 12px 0; text-underline-offset: 6px; font-size: 1rem; font-weight: 600; }
.site-footer { background: transparent; color: var(--ink); border-top: 1px solid var(--line); padding-top: 42px; }
.footer-main { grid-template-columns: 1.1fr .8fr 1fr; gap: 44px; }
.footer-about p, .footer-contact small { color: var(--muted); font-size: .875rem; }
.footer-nav { grid-template-columns: 1fr; }
.footer-nav span, .footer-contact > span { color: var(--muted); font-size: .875rem; font-weight: 500; }
.footer-nav a, .footer-contact a { color: var(--ink); font-weight: 500; font-size: .9375rem; }
.footer-nav a:hover, .footer-contact a:hover { color: var(--blue); }
.footer-bottom { color: var(--muted); border-top-color: var(--line); font-size: .875rem; }
.form-page { max-width: 1180px; margin: auto; padding: 0 24px 72px; }
.form-page .subpage-hero { padding: 28px 0 36px; }
.inline-back { display: inline-flex; min-height: 44px; align-items: center; color: var(--muted); font-size: .9375rem; text-decoration: none; }
.inline-back:hover { color: var(--blue); text-decoration: underline; text-underline-offset: 5px; }
.quote-intro { display: grid; grid-template-columns: minmax(0,1.5fr) minmax(0,1fr); gap: 60px; align-items: end; padding: 30px 0; }
.quote-intro .overline { margin-bottom: 20px; }
.quote-intro h1 { margin: 0; font-size: clamp(2.75rem,5.2vw,4.2rem); line-height: 1.05; font-weight: 500; }
.quote-intro-note { border-left: 1px solid var(--line); padding-left: 32px; }
.quote-intro-note p { margin: 14px 0; color: var(--muted); font-size: 1rem; }
.quote-start-price { display: block; color: var(--muted); font-size: .875rem; }
.quote-start-price strong { color: var(--ink); font-size: 1.125rem; }
.form-page .quote-instructions { max-width: 850px; font-size: .9375rem; }
.form-page .offer-main { grid-template-columns: minmax(0,1fr) 315px; gap: 44px; }
.form-page .form-section { grid-template-columns: 92px minmax(0,1fr); gap: 18px; padding: 34px 0 40px; }
.form-page .form-section-number { display: block; width: auto; color: var(--blue); padding-top: 0; font-family: inherit; font-size: 2.5rem; font-weight: 600; line-height: 1.15; letter-spacing: -.045em; white-space: nowrap; transform: none; text-shadow: none; font-variant-numeric: tabular-nums; }
.form-page .form-section-title h2 { font-size: 1.6rem; font-weight: 500; letter-spacing: -.035em; }
.form-page .form-section-title p { font-size: .9375rem; }
.form-page .field > span { font-size: .9375rem; font-weight: 600; }
.form-page .field input, .form-page .field textarea, .form-page .field select { border-radius: 3px; font-size: 1rem; }
.form-page .field small, .form-page .check-option small, .form-page .counter p { font-size: .875rem; }
.form-page .check-option { border-radius: 3px; box-shadow: none; }
.form-page .check-option:has(input:checked) { border-color: var(--blue); background: var(--blue-soft); }
.form-page .offer-summary { top: 24px; max-height: calc(100dvh - 48px); background: var(--surface); border: 1px solid var(--line); border-top: 3px solid var(--ink); color: var(--ink); border-radius: 0; padding: 24px; }
.form-page .offer-summary .overline { color: var(--muted); }
.form-page .offer-summary .summary-link { background: var(--page); border-color: var(--line); color: var(--ink); border-radius: 0; }
.form-page .offer-summary .summary-link span, .form-page .offer-summary .price-row, .form-page .offer-summary small, .form-page .offer-summary .summary-total > span, .form-page .offer-summary .summary-monthly > span { color: var(--muted); }
.form-page .offer-summary .price-row, .form-page .offer-summary .summary-total, .form-page .offer-summary .summary-monthly { border-color: var(--line); }
.form-page .offer-summary .price-row b, .form-page .offer-summary .summary-total strong, .form-page .offer-summary .summary-monthly strong { color: var(--ink); }
.form-page .summary-total strong { font-size: 3.5rem; font-weight: 500; }
.form-page .summary-monthly { border-radius: 0; background: var(--blue-soft); padding: 16px; }
.form-page .form-submit-panel .submit { border-radius: 4px; box-shadow: none; background: var(--cta); min-height: 72px; font-size: 1.25rem; }
.form-page .form-submit-panel .submit:hover { background: var(--cta-hover); transform: none; }
html[data-theme="dark"] .quote-link, html[data-theme="dark"] .form-page .form-submit-panel .submit { color: #fff; }
html[data-theme="dark"] .site-footer { background: transparent; }
html[data-theme="dark"] .home-terms { background: #1b1d23; color: var(--ink); }
html[data-theme="dark"] .home-terms .editorial-label,
html[data-theme="dark"] .terms-heading > p,
html[data-theme="dark"] .home-rules dd,
html[data-theme="dark"] .terms-note { color: #bdc0c9; }
html[data-theme="dark"] .home-rules > div { border-color: #3e414b; }
html[data-theme="dark"] .home-terms .quote-link { background: var(--cta); border-color: var(--cta); color: #fff; }
html[data-theme="dark"] .home-terms .quote-link:hover { background: var(--cta-hover); border-color: var(--cta-hover); }
html[data-theme="dark"] .accessibility-controls button { border-color: var(--line); }
html[data-theme="dark"] .accessibility-controls button[aria-pressed="true"] { color: var(--page); }
html[data-theme="dark"] .build-notice { background: rgba(5,6,8,.78); }
html[data-theme="dark"] .build-notice button { background: var(--cta); color: #fff; }
html[data-theme="dark"] .build-notice button:hover { background: var(--cta-hover); }
html[data-theme="dark"] .form-page .field input,
html[data-theme="dark"] .form-page .field textarea,
html[data-theme="dark"] .form-page .small-action,
html[data-theme="dark"] .form-page .remove-action,
html[data-theme="dark"] .form-page .counter-controls button,
html[data-theme="dark"] .form-page .referral-char,
html[data-theme="dark"] .form-page .opening-time input,
html[data-theme="dark"] .form-page .map-choice,
html[data-theme="dark"] .form-page .panel-demo,
html[data-theme="dark"] .form-page .panel-purpose-config,
html[data-theme="dark"] .form-page .panel-demo-bar { background: var(--surface); color: var(--ink); border-color: var(--line); box-shadow: none; }
html[data-theme="dark"] .form-page .panel-demo-position,
html[data-theme="dark"] .form-page .panel-purpose-fields input,
html[data-theme="dark"] .form-page .panel-demo-auth input,
html[data-theme="dark"] .form-page .panel-demo-editor input { background: var(--page); color: var(--ink); border-color: var(--line); }
html[data-theme="dark"] .form-page .field-free { background: var(--blue-soft); color: #c6d5ff; border-color: #46577b; }
html[data-theme="dark"] .form-page .form-section-number { color: var(--blue); text-shadow: none; }
@media (max-width: 1000px) {
  .form-page .offer-main { gap: 24px; grid-template-columns: minmax(0,1fr) 280px; }
  .home-process, .home-terms { gap: 36px; }
  .home-terms { padding: 44px 32px; }
}
@media (max-width: 900px) {
  .form-page .offer-main { grid-template-columns: 1fr; }
  .form-page .offer-summary { position: static; max-height: none; }
  .quote-intro { gap: 32px; }
  .directory-inline { grid-template-columns: 1fr auto; }
  .directory-inline > .editorial-label { grid-column: 1 / -1; }
}
@media (max-width: 640px) {
  .nav-shell { min-height: 84px; margin: 0 20px; padding: 6px 0; gap: 16px; }
  .brand-caption { display: none; }
  .brand-full { margin-right: auto; }
  .home-page, .form-page { padding-left: 20px; padding-right: 20px; }
  .home-intro { padding: 38px 0; }
  .home-intro .overline { font-size: .8125rem; }
  .home-intro h1 { font-size: clamp(2.55rem,9.4vw,3.6rem); margin-bottom: 26px; }
  .intro-bottom { grid-template-columns: 1fr; gap: 36px; }
  .intro-copy > p { font-size: 1rem; }
  .quote-link { min-height: 76px; font-size: 1.1875rem; padding: 18px 20px; }
  .intro-price-value strong { font-size: 4.5rem; }
  .intro-price { display: grid; grid-template-columns: 1fr 1fr; gap: 0 20px; }
  .intro-price > .editorial-label, .intro-price-foot { grid-column: 1 / -1; }
  .intro-price > p { align-self: center; font-size: .9375rem; }
  .intro-price-foot { margin-top: 12px; }
  .home-facts { grid-template-columns: 1fr 1fr; gap: 24px 14px; }
  .home-facts strong { font-size: 1.125rem; }
  .home-facts span { font-size: .875rem; }
  .home-process { grid-template-columns: 1fr; gap: 24px; padding: 56px 0; }
  .home-section-heading h2 { margin-top: 14px; }
  .home-steps li { grid-template-columns: 58px minmax(0,1fr); gap: 14px; }
  .home-steps .step-number { font-size: 2.5rem; }
  .home-steps h3 { font-size: 1.1875rem; }
  .home-terms { grid-template-columns: 1fr; margin: 0 -20px; padding: 40px 20px; gap: 28px; }
  .terms-heading h2 { font-size: 3.5rem; }
  .terms-heading h2 br { display: none; }
  .terms-heading h2 em::before { content: ' '; }
  .terms-heading > p { max-width: none; }
  .directory-inline { gap: 16px; padding: 36px 0; }
  .directory-inline > p, .directory-inline > a { grid-column: 1 / -1; }
  .directory-inline > a { justify-self: start; }
  .footer-main { grid-template-columns: 1fr; gap: 28px; }
  .footer-nav { grid-template-columns: 1fr; }
  .quote-intro { grid-template-columns: 1fr; gap: 22px; padding: 22px 0; }
  .quote-intro h1 { font-size: clamp(2.45rem,9.5vw,3.5rem); }
  .quote-intro-note { padding: 18px 0 0; border-left: 0; border-top: 1px solid var(--line); }
  .quote-intro-note .editorial-label { display: none; }
  .quote-intro-note p { margin-top: 0; }
  .form-page .offer-layout { padding: 0; }
  .form-page .form-section { grid-template-columns: 1fr; gap: 10px; padding: 26px 0 32px; }
  .form-page .form-section-number { font-size: 2.25rem; }
  .form-page .form-section-title h2 { font-size: 1.5rem; }
  .form-page .field-row { grid-template-columns: 1fr; }
  .form-page .map-choice-copy b { font-size: .875rem; }
  .form-page .map-choice-grid { grid-template-columns: 1fr; }
  .form-page .map-preview { height: 88px; }
}
@media (prefers-reduced-motion: reduce) { .quote-link, .quote-link > span:last-child { transition: none; } }
.form-page .offer-summary .summary-address { background: var(--page); border-color: var(--line); border-radius: 0; }
.form-page .offer-summary .summary-address span { color: var(--muted); font-size: .875rem; font-weight: 500; letter-spacing: 0; text-transform: none; }
.form-page .offer-summary .summary-address strong { color: var(--ink); }
.form-page .offer-summary small, .form-page .summary-total > span, .form-page .summary-monthly > span { font-size: .875rem; }

/* Wspólny wygląd dokumentów i katalogu firm. */
.legal-page, .directory-page { max-width: 1180px; margin: 0 auto; padding: 28px 24px 80px; }
.legal-page .overline, .directory-page .overline { color: var(--muted); font-size: .875rem; font-weight: 600; letter-spacing: .055em; }
.legal-heading { max-width: 900px; padding-top: 30px; }
.legal-heading h1 { max-width: none; margin-bottom: 24px; font-size: clamp(2.75rem,5.2vw,4.2rem); line-height: 1.08; font-weight: 500; letter-spacing: -.05em; }
.legal-heading > p:not(.overline) { margin-bottom: 0; font-size: .9375rem; }
.legal-page .legal-warning { margin: 32px 0 48px; padding: 22px 24px; gap: 8px; border: 1px solid var(--line); border-left: 3px solid var(--blue); border-radius: 0; background: var(--surface); color: var(--muted); font-size: .9375rem; }
.legal-warning strong { color: var(--ink); font-weight: 600; }
.legal-layout { grid-template-columns: 248px minmax(0,1fr); gap: 56px; }
.legal-page .withdrawal-layout { margin-top: 48px; }
.legal-toc { top: 24px; max-height: calc(100dvh - 48px); overflow-y: auto; padding-right: 18px; gap: 0; }
.legal-toc strong { margin-bottom: 12px; font-size: .875rem; font-weight: 600; color: var(--muted); letter-spacing: .055em; text-transform: uppercase; }
.legal-toc a { display: flex; align-items: center; min-height: 44px; padding: 9px 0; border-bottom: 1px solid var(--line); font-size: .9375rem; line-height: 1.45; }
.legal-toc a:hover { text-decoration: underline; text-underline-offset: 4px; }
.legal-content { min-width: 0; }
.legal-content section { scroll-margin-top: 28px; padding-bottom: 32px; margin-bottom: 32px; }
.legal-content h2 { margin-bottom: 20px; font-size: clamp(1.5rem,2.5vw,1.875rem); font-weight: 500; line-height: 1.25; letter-spacing: -.035em; }
.legal-page .legal-content p, .legal-page .legal-content li { color: var(--muted); font-size: 1rem; line-height: 1.75; overflow-wrap: anywhere; }
.legal-content a { text-underline-offset: 4px; }
.legal-page .referral-reward-card { margin: 0 0 48px; padding: 24px; border-color: var(--line); border-radius: 0; background: var(--surface); }
.legal-page .referral-reward-card strong { font-size: 1.5rem; font-weight: 600; }
.legal-page .referral-reward-card span { font-size: .9375rem; }
.legal-page .withdrawal-template { padding: 28px; border-radius: 0; }
.directory-hero { grid-template-columns: minmax(0,1fr) 280px; gap: 60px; padding: 30px 0 52px; border-bottom-width: 1px; }
.directory-intro h1 { margin-bottom: 28px; font-size: clamp(3rem,6.4vw,5.3rem); line-height: 1.05; font-weight: 600; letter-spacing: -.055em; }
.directory-intro h1 em { font-family: Georgia, 'Times New Roman', serif; font-weight: 400; letter-spacing: -.055em; }
.directory-intro > p:last-child { max-width: 590px; font-size: 1.125rem; }
.directory-launch { min-height: 0; padding: 24px 0 4px 32px; gap: 10px; }
.directory-launch span { font-size: .875rem; font-weight: 600; letter-spacing: .055em; }
.directory-page .directory-launch strong { margin: 0; color: var(--blue); font-family: inherit; font-size: 4.75rem; font-weight: 500; line-height: 1.1; letter-spacing: -.075em; font-variant-numeric: tabular-nums; transform: none; text-shadow: none; }
.directory-launch b { color: var(--ink); font-size: 1.5rem; font-weight: 500; letter-spacing: -.025em; }
.directory-search { padding: 60px 0; }
.directory-search h2, .directory-terms h2 { font-size: clamp(2rem,3.6vw,3rem); font-weight: 500; letter-spacing: -.045em; line-height: 1.15; }
.directory-search-preview { gap: 16px; margin-top: 28px; padding: 26px 0; }
.directory-search-preview label > span { color: var(--ink); font-size: .9375rem; font-weight: 600; letter-spacing: 0; text-transform: none; }
.directory-page .directory-search-preview input { min-height: 56px; border-color: var(--line); border-radius: 3px; background: var(--surface); color: var(--muted); font-size: 1rem; }
.directory-page .directory-search-preview button { min-height: 56px; padding: 12px 18px; border-color: var(--line); border-radius: 3px; background: var(--surface); color: var(--muted); font-size: .9375rem; font-weight: 500; opacity: 1; }
.directory-search-note, .directory-legal-note { font-size: .875rem; }
.directory-terms { padding-top: 60px; }
.directory-terms-heading { grid-template-columns: 248px minmax(0,1fr); gap: 56px; }
.directory-terms-heading .overline { padding-top: 8px; }
.directory-rule-list { margin-top: 32px; }
.directory-rule-mark { font-size: .8125rem; font-weight: 600; letter-spacing: .055em; }
.directory-rule-list h3 { font-size: 1.375rem; font-weight: 500; }
.directory-rule-list p { font-size: 1rem; }
.directory-bottom-line { display: grid; grid-template-columns: minmax(0,1fr) minmax(280px,.75fr); gap: 48px; padding: 38px 0 22px; }
.directory-bottom-line p { max-width: 440px; font-size: 1.125rem; font-weight: 500; }
.directory-legal-note a { font-weight: 500; text-underline-offset: 4px; }
html[data-theme="dark"] .legal-page .legal-warning { background: var(--surface); color: var(--muted); border-left-color: var(--blue); }
html[data-theme="dark"] .legal-page .legal-content p, html[data-theme="dark"] .legal-page .legal-content li { color: var(--muted); }
html[data-theme="dark"] .directory-page .directory-launch strong { color: var(--blue); text-shadow: none; }
html[data-theme="dark"] .directory-page .directory-search-preview input,
html[data-theme="dark"] .directory-page .directory-search-preview button { background: var(--surface); color: var(--muted); border-color: var(--line); }
@media (max-width: 900px) {
  .legal-layout { grid-template-columns: 1fr; gap: 40px; }
  .legal-toc { position: static; max-height: none; padding: 22px; border-radius: 0; }
  .directory-hero { grid-template-columns: minmax(0,1fr) 220px; gap: 32px; }
  .directory-page .directory-launch strong { font-size: 4rem; }
  .directory-terms-heading { grid-template-columns: 180px minmax(0,1fr); gap: 32px; }
}
@media (max-width: 640px) {
  .legal-page, .directory-page { padding: 22px 20px 56px; }
  .legal-heading { padding-top: 22px; }
  .legal-heading h1 { font-size: clamp(2.25rem,8.5vw,3rem); overflow-wrap: anywhere; }
  .legal-page .legal-warning { margin: 26px 0 32px; padding: 18px; }
  .legal-page .referral-reward-card { margin-bottom: 32px; padding: 20px; }
  .legal-page .withdrawal-template { padding: 20px; }
  .directory-hero { grid-template-columns: 1fr; gap: 28px; padding: 22px 0 36px; }
  .directory-intro h1 { font-size: clamp(2.6rem,9.4vw,3.6rem); }
  .directory-intro > p:last-child { font-size: 1rem; }
  .directory-launch { padding: 22px 0 0; grid-template-columns: auto 1fr; column-gap: 18px; align-items: baseline; }
  .directory-launch span { grid-column: 1 / -1; }
  .directory-page .directory-launch strong { font-size: 4.25rem; }
  .directory-search { padding: 40px 0; }
  .directory-terms { padding-top: 40px; }
  .directory-terms-heading { grid-template-columns: 1fr; gap: 0; }
  .directory-terms-heading .overline { padding-top: 0; }
  .directory-bottom-line { grid-template-columns: 1fr; gap: 24px; padding-top: 28px; }
}
