/* ============================================================
   PENTHOUSE OFFICE - homepage (707 Media)
   Brand: petrol #5483A0 / off-white #F3F0E9 / Plus Jakarta Sans
   Motion direction: Apple-grade (layered reveal, parallax, easing)
   ============================================================ */

/* Plus Jakarta Sans - self-hosted variable font (latin + latin-ext), weights 200-800 */
@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url('assets/fonts/plus-jakarta-sans-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url('assets/fonts/plus-jakarta-sans-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --primary: #5483A0;
  --light: #7CA3BA;
  --dark: #395A6E;
  --deep: #283E4D;
  --bg: #F3F0E9;
  --bg2: #EBE7DE;
  --border: #E0DBCC;
  --ink: #1A1F23;
  --ink-muted: #5A6166;
  --teal: #0E1B20;
  --alert: #B5654A;
  --grad-cta: linear-gradient(165deg, #283E4D 0%, #5483A0 50%, #7CA3BA 100%);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --wrap: 1180px;
  --r: 20px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.wrap { width: min(100% - 44px, var(--wrap)); margin-inline: auto; }
.eyebrow {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 2.6px; color: var(--primary);
}
.on-dark .eyebrow { color: var(--light); }
h1, h2, h3 { font-weight: 800; letter-spacing: -0.02em; line-height: 1.08; text-wrap: balance; }
section { position: relative; }

/* ---------- reveal system ---------- */
.reveal, .step {
  opacity: 0; transform: translateY(26px);
  filter: blur(6px);
  transition: opacity .9s var(--ease), transform .9s var(--ease), filter .9s var(--ease);
}
.reveal.is-visible, .step.is-visible { opacity: 1; transform: none; filter: none; }
.reveal[data-d="1"] { transition-delay: .08s; }
.reveal[data-d="2"] { transition-delay: .16s; }
.reveal[data-d="3"] { transition-delay: .24s; }
.reveal[data-d="4"] { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) {
  .reveal, .step { opacity: 1 !important; transform: none !important; filter: none !important; }
  html { scroll-behavior: auto; }
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 15px 26px; border-radius: 100px;
  font-weight: 700; font-size: 15px; letter-spacing: -0.01em;
  background: var(--ink); color: #fff; border: 1px solid var(--ink);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), background .3s;
  will-change: transform;
}
.btn .arrow { transition: transform .5s var(--ease); }
.btn:hover .arrow { transform: translate(3px, -3px); }
.btn-primary { background: var(--grad-cta); border-color: transparent; box-shadow: 0 12px 30px -12px rgba(40,62,77,.7); }
/* Secondary = miękki wypełniony przycisk, BEZ widocznego outline'u */
.btn-ghost { background: rgba(40,62,77,.07); color: var(--ink); border-color: transparent; }
.btn-ghost:hover { background: rgba(40,62,77,.12); }
.on-dark .btn-ghost { color: #fff; border-color: transparent; background: rgba(255,255,255,.14); }
.on-dark .btn-ghost:hover { background: rgba(255,255,255,.22); }
.magnetic { display: inline-flex; transition: transform .35s var(--ease); }

/* ---------- header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 60;
  padding: 16px 0;
  transition: background .4s var(--ease), backdrop-filter .4s, padding .4s var(--ease), border-color .4s;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(243,240,233,.82);
  backdrop-filter: saturate(180%) blur(18px);
  border-bottom-color: var(--border);
  padding: 10px 0;
}
.site-header.on-dark:not(.scrolled) { color: #fff; }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand { display: flex; flex-direction: column; line-height: 1; }
.brand b { font-weight: 800; font-size: 15px; letter-spacing: 3.2px; }
.brand small { font-size: 9px; letter-spacing: 3px; text-transform: uppercase; opacity: .62; margin-top: 4px; }
.nav-links { display: flex; gap: 28px; font-size: 14.5px; font-weight: 500; }
.nav-links a { position: relative; opacity: .82; transition: opacity .3s; }
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -5px; height: 1.5px; width: 0;
  background: currentColor; transition: width .4s var(--ease);
}
.nav-links a:hover { opacity: 1; }
.nav-links a:hover::after { width: 100%; }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-cta .btn { padding: 11px 20px; font-size: 14px; }
.nav-toggle { display: none; }
.nav-menu-cta { display: none; }

/* ---------- hero ---------- */
.hero {
  background: var(--teal); color: #fff; position: relative; overflow: hidden;
  padding: 190px 0 120px;
}
.hero::before {
  content: ""; position: absolute; inset: -20% -10% auto; height: 90%;
  background: radial-gradient(60% 60% at 70% 20%, rgba(84,131,160,.55), transparent 70%),
              radial-gradient(50% 50% at 20% 60%, rgba(124,163,186,.28), transparent 70%);
  filter: blur(10px); pointer-events: none;
  will-change: transform;
  transform: translateY(var(--py, 0));
}
.hero-grid { position: relative; display: grid; grid-template-columns: 1.15fr .85fr; gap: 54px; align-items: center; }
.hero h1 { font-size: clamp(40px, 6vw, 74px); }
.hero h1 .accent { background: linear-gradient(120deg, #fff, var(--light)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-sub { margin-top: 22px; font-size: clamp(16px, 1.5vw, 19px); color: rgba(255,255,255,.78); max-width: 46ch; }
.hero-cta { margin-top: 34px; display: flex; gap: 14px; flex-wrap: wrap; }
.hero-meta { margin-top: 30px; display: flex; gap: 26px; font-size: 13.5px; color: rgba(255,255,255,.62); flex-wrap: wrap; }
.hero-meta b { color: #fff; font-weight: 600; }
.hero-visual { position: relative; will-change: transform; }
.hero-photo {
  border-radius: 24px; overflow: hidden; border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 40px 80px -40px rgba(0,0,0,.6); transition: transform .5s var(--ease); will-change: transform;
}
.hero-photo img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.hero-badge {
  position: absolute; left: -22px; bottom: 28px; width: 220px;
  border-radius: 18px; padding: 20px 22px;
  background: linear-gradient(160deg, rgba(14,27,32,.86), rgba(40,62,77,.86));
  border: 1px solid rgba(255,255,255,.16); backdrop-filter: blur(10px);
  box-shadow: 0 24px 50px -24px rgba(0,0,0,.7);
}
.hero-badge .kicker { font-size: 10.5px; letter-spacing: 2px; text-transform: uppercase; color: var(--light); }
.hero-badge .big { font-size: 42px; font-weight: 800; letter-spacing: -0.03em; margin: 4px 0 4px; color: #fff; }
.hero-badge .desc { font-size: 12.5px; color: rgba(255,255,255,.75); line-height: 1.4; }

/* ---------- click-to-call in nav ---------- */
.btn-call {
  display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: 14px;
  padding: 10px 15px; border-radius: 100px; border: 1px solid var(--border);
  color: var(--ink); transition: background .3s, border-color .3s, color .3s;
}
.btn-call svg { color: var(--primary); }
.btn-call:hover { border-color: var(--primary); }
.on-dark:not(.scrolled) .btn-call { color: #fff; border-color: rgba(255,255,255,.28); }
.on-dark:not(.scrolled) .btn-call svg { color: var(--light); }

/* ---------- partners marquee ---------- */
.partners { background: var(--bg); padding: 40px 0 8px; overflow: hidden; }
.partners-lead { text-align: center; font-size: 14px; color: var(--ink-muted); font-weight: 600; margin-bottom: 26px; }
.marquee { position: relative; width: 100%; overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }
.marquee-track { display: inline-flex; gap: 54px; white-space: nowrap; animation: marquee 42s linear infinite; will-change: transform; }
.marquee-track span { font-size: 19px; font-weight: 700; letter-spacing: -0.01em; color: var(--deep); opacity: .55; }
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }

/* ---------- about ---------- */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 54px; align-items: center; }
.about-media { border-radius: 24px; overflow: hidden; border: 1px solid var(--border); box-shadow: 0 40px 80px -50px rgba(40,62,77,.6); background: var(--deep); display: flex; align-items: center; }
.about-media img { width: 100%; height: auto; display: block; object-fit: contain; }
.about-copy { display: flex; flex-direction: column; align-items: flex-start; }
.about-copy h2 { font-size: clamp(28px, 3.4vw, 42px); margin: 14px 0 16px; }
.about-copy > p { color: var(--ink-muted); font-size: 16px; }
.about-copy .magnetic { margin-top: 30px; }
.about-pills { display: flex; flex-wrap: wrap; gap: 10px; margin: 22px 0 26px; }
.about-pills span { font-size: 13px; font-weight: 600; padding: 8px 15px; border-radius: 100px; background: var(--bg2); border: 1px solid var(--border); color: var(--deep); }

/* ---------- stats ---------- */
.stats { background: var(--bg); padding: 64px 0; border-bottom: 1px solid var(--border); }
.stats-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 22px; }
.stat { text-align: center; }
.stat .num { font-size: clamp(30px, 3.4vw, 44px); font-weight: 800; letter-spacing: -0.03em; }
.stat .num .suf { color: var(--primary); }
.stat .lbl { font-size: 12.5px; color: var(--ink-muted); margin-top: 4px; }

/* ---------- section head ---------- */
.sec { padding: 108px 0; }
.sec-head { max-width: 640px; margin-bottom: 52px; }
.sec-head h2 { font-size: clamp(30px, 4vw, 48px); margin: 14px 0 16px; }
.sec-head p { color: var(--ink-muted); font-size: 16.5px; }
.center { margin-inline: auto; text-align: center; }

/* ---------- services (scroll-telling) ---------- */
.services { background: var(--bg2); }
.svc-scroll { display: grid; grid-template-columns: .82fr 1.18fr; gap: 56px; align-items: start; }
.svc-sticky { position: sticky; top: 118px; align-self: start; }
.svc-sticky h2 { font-size: clamp(28px, 3.4vw, 44px); margin: 14px 0 16px; }
.svc-sticky > .reveal > p { color: var(--ink-muted); font-size: 16px; }
.svc-counter { display: flex; align-items: baseline; gap: 8px; margin: 30px 0 14px; }
.svc-index { font-size: 54px; font-weight: 800; letter-spacing: -0.04em; color: var(--primary); line-height: 1; font-variant-numeric: tabular-nums; }
.svc-total { font-size: 20px; font-weight: 700; color: var(--ink-muted); }
.svc-track { height: 3px; border-radius: 3px; background: var(--border); overflow: hidden; }
.svc-track i { display: block; height: 100%; width: 100%; transform-origin: left; transform: scaleX(.25); background: var(--grad-cta); transition: transform .5s var(--ease); }
.svc-col { min-width: 0; }
.svc-panels { display: flex; flex-direction: column; gap: 6vh; }
.svc-panels[hidden] { display: none; }
.svc-panel {
  background: var(--bg); border: 1px solid var(--border); border-radius: var(--r);
  padding: 38px; opacity: .45; transform: scale(.975); filter: blur(1px);
  transition: opacity .6s var(--ease), transform .6s var(--ease), filter .6s var(--ease), box-shadow .6s var(--ease), border-color .4s;
  will-change: transform, opacity;
}
.svc-panel.is-active { opacity: 1; transform: none; filter: none; box-shadow: 0 34px 70px -42px rgba(40,62,77,.5); border-color: var(--light); }
.svc-panel .ic {
  width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center;
  background: linear-gradient(150deg, var(--primary), var(--deep)); color: #fff; margin-bottom: 20px;
  transition: transform .6s var(--ease);
}
.svc-panel.is-active .ic { transform: translateY(-2px) scale(1.05); }
.svc-panel .ic svg { width: 24px; height: 24px; }
.svc-panel h3 { font-size: 23px; margin-bottom: 10px; }
.svc-panel p { font-size: 15px; color: var(--ink-muted); }
.svc-panel .more { display: inline-flex; gap: 6px; margin-top: 16px; font-size: 14px; font-weight: 700; color: var(--primary); }

/* ---------- scroll progress ---------- */
.scroll-progress { position: absolute; left: 0; right: 0; bottom: 0; height: 2px; background: transparent; }
.scroll-progress i { display: block; height: 100%; width: 0; background: var(--grad-cta); transition: width .1s linear; }

/* ---------- why ---------- */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.why-item { padding: 26px; border-radius: var(--r); background: var(--bg2); border: 1px solid var(--border); }
.why-item h3 { font-size: 18px; margin: 0 0 8px; }
.why-item p { font-size: 14px; color: var(--ink-muted); }

/* ---------- calculators teaser ---------- */
.calc { background: var(--teal); color: #fff; }
.calc .sec-head p { color: rgba(255,255,255,.72); }
.calc-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }

/* live calculator */
.calc-live {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 0; margin-bottom: 26px;
  border-radius: var(--r); overflow: hidden; border: 1px solid rgba(255,255,255,.14);
  background: linear-gradient(160deg, rgba(255,255,255,.08), rgba(255,255,255,.02));
}
.cl-controls { padding: 38px 40px; }
.cl-controls h3 { font-size: 24px; margin: 12px 0 24px; }
.cl-field { margin-bottom: 22px; }
.cl-field label { display: flex; justify-content: space-between; align-items: baseline; font-size: 13.5px; color: rgba(255,255,255,.72); margin-bottom: 12px; font-weight: 600; }
.cl-field label b { font-size: 16px; color: #fff; font-weight: 700; font-variant-numeric: tabular-nums; }
.cl-field input[type=range] {
  -webkit-appearance: none; appearance: none; width: 100%; height: 5px; border-radius: 5px;
  background: rgba(255,255,255,.18); outline: none; cursor: pointer;
}
.cl-field input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none; width: 22px; height: 22px; border-radius: 50%;
  background: #fff; border: 4px solid var(--primary); box-shadow: 0 4px 12px rgba(0,0,0,.3);
  transition: transform .2s var(--ease);
}
.cl-field input[type=range]::-webkit-slider-thumb:hover { transform: scale(1.12); }
.cl-field input[type=range]::-moz-range-thumb { width: 22px; height: 22px; border-radius: 50%; background: #fff; border: 4px solid var(--primary); }
.cl-result {
  padding: 38px 40px; background: linear-gradient(160deg, rgba(84,131,160,.28), rgba(40,62,77,.32));
  display: flex; flex-direction: column; justify-content: center; border-left: 1px solid rgba(255,255,255,.1);
}
.cl-label { font-size: 12px; letter-spacing: 1.6px; text-transform: uppercase; color: var(--light); font-weight: 700; }
.cl-rata { font-size: clamp(40px, 5vw, 60px); font-weight: 800; letter-spacing: -0.03em; line-height: 1; margin: 10px 0 22px; color: #fff; font-variant-numeric: tabular-nums; }
.cl-rata em { font-size: 24px; font-style: normal; color: rgba(255,255,255,.7); font-weight: 700; }
.cl-extra { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 20px; }
.cl-extra > div { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: 12px; padding: 12px 14px; }
.cl-extra span { display: block; font-size: 11.5px; color: rgba(255,255,255,.62); }
.cl-extra b { font-size: 17px; color: #fff; font-variant-numeric: tabular-nums; }
.cl-note { font-size: 12px; color: rgba(255,255,255,.55); margin-bottom: 18px; }
.cl-result .btn { align-self: flex-start; }
.calc-card {
  border-radius: var(--r); padding: 30px; border: 1px solid rgba(255,255,255,.14);
  background: linear-gradient(160deg, rgba(255,255,255,.08), rgba(255,255,255,.02));
  transition: transform .5s var(--ease), border-color .4s; will-change: transform;
}
.calc-card:hover { border-color: var(--light); }
.calc-card h3 { font-size: 20px; margin-bottom: 8px; }
.calc-card p { font-size: 14px; color: rgba(255,255,255,.68); }
.calc-card .more { display: inline-flex; gap: 6px; margin-top: 18px; font-size: 14px; font-weight: 700; color: var(--light); }
.badge-soon { font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--teal); background: var(--light); padding: 3px 9px; border-radius: 100px; font-weight: 800; }

/* ---------- team ---------- */
.team-grid { display: flex; align-items: flex-start; gap: 20px; overflow-x: auto; scroll-snap-type: x proximity; scroll-padding-left: 4px; padding: 4px 4px 14px; -webkit-overflow-scrolling: touch; }
.team-grid::-webkit-scrollbar { height: 6px; }
.team-grid::-webkit-scrollbar-thumb { background: var(--border); border-radius: 100px; }
.team-carousel { position: relative; }
.member {
  border-radius: var(--r); overflow: hidden; background: var(--bg2); border: 1px solid var(--border);
}
.member .ph {
  aspect-ratio: 4/5; background: linear-gradient(160deg, var(--primary), var(--deep));
  display: grid; place-items: center; color: rgba(255,255,255,.5); font-size: 13px; letter-spacing: 1px;
}
.member .body { padding: 18px 20px; }
.member .body b { font-size: 16px; }
.member .body span { display: block; font-size: 12.5px; color: var(--ink-muted); margin-top: 2px; }

/* ---------- booking / calendly ---------- */
/* 2. Sekcja rezerwacji - wyraźnie wyróżniona, żeby było jasne że to umawianie spotkań */
.book { background: linear-gradient(180deg, var(--bg2) 0%, #E8EEF1 100%); position: relative; }
.book::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 4px; background: var(--grad-cta); }
.book-head { text-align: center; max-width: 640px; margin: 0 auto 34px; }
.book-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--grad-cta); color: #fff; padding: 8px 16px; border-radius: 100px;
  font-size: 12.5px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
  box-shadow: 0 12px 26px -14px rgba(40,62,77,.7);
}
.book-head h2 { font-size: clamp(28px, 3.4vw, 42px); margin: 16px 0 10px; }
.book-head > p { color: var(--ink-muted); font-size: 16px; }
.book-inner {
  border-radius: 26px; overflow: hidden; border: 1px solid var(--border);
  display: grid; grid-template-columns: .9fr 1.1fr; background: var(--bg);
  box-shadow: 0 50px 90px -60px rgba(40,62,77,.6);
}
.book-side { padding: 46px; background: var(--grad-cta); color: #fff; }
.book-side h2 { font-size: clamp(26px, 3vw, 38px); margin: 12px 0 14px; }
.book-side p { font-size: 15px; color: rgba(255,255,255,.85); }
.book-side ul { list-style: none; margin-top: 24px; display: grid; gap: 12px; }
.book-side li { display: flex; gap: 10px; font-size: 14.5px; align-items: flex-start; }
.book-side li svg { flex: 0 0 auto; margin-top: 3px; }
.book-embed { padding: 30px; min-height: 420px; display: block; }

/* ---------- rezerwacja (TEMAT -> DORADCA -> TERMIN) ---------- */
.booking { width: 100%; }
.bk-steps {
  list-style: none; display: flex; gap: 6px; margin: 0 0 22px; padding: 0;
  font-size: 12px; font-weight: 700; color: var(--ink-muted); flex-wrap: wrap;
}
.bk-steps li { display: flex; align-items: center; gap: 7px; opacity: .5; transition: opacity .3s; }
.bk-steps li + li { padding-left: 6px; }
.bk-steps li.is-active, .bk-steps li.is-done { opacity: 1; }
.bk-dot {
  width: 22px; height: 22px; border-radius: 50%; display: grid; place-items: center;
  background: var(--bg2); color: var(--ink-muted); font-size: 12px; border: 1px solid var(--border);
}
.bk-steps li.is-active .bk-dot { background: var(--primary); color: #fff; border-color: var(--primary); }
.bk-steps li.is-done .bk-dot { background: var(--deep); color: #fff; border-color: var(--deep); }

.bk-panel { display: none; }
.bk-panel.is-active { display: block; animation: bkFade .35s var(--ease-out); }
@keyframes bkFade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

.bk-title { font-size: clamp(19px, 2.4vw, 23px); margin-bottom: 4px; }
.bk-sub { font-size: 14px; color: var(--ink-muted); margin-bottom: 18px; }

.bk-topics { display: grid; gap: 10px; margin-bottom: 20px; }
.bk-topic {
  display: grid; grid-template-columns: 40px 1fr; grid-template-rows: auto auto;
  column-gap: 14px; align-items: center; text-align: left; cursor: pointer;
  padding: 16px 18px; border-radius: 14px; background: var(--bg); border: 1.5px solid var(--border);
  font: inherit; transition: border-color .25s, box-shadow .25s, background .25s;
}
.bk-topic:hover { border-color: var(--light); }
.bk-topic svg { grid-row: 1 / 3; width: 30px; height: 30px; color: var(--primary); }
.bk-topic b { font-size: 15px; color: var(--ink); }
.bk-topic span { font-size: 12.5px; color: var(--ink-muted); }
.bk-topic.is-on { border-color: var(--primary); background: rgba(84,131,160,.07); box-shadow: 0 0 0 3px rgba(84,131,160,.13); }
.bk-topic.is-on svg { color: var(--deep); }

.bk-next:disabled { opacity: .45; cursor: not-allowed; }

.bk-back {
  background: none; border: none; color: var(--ink-muted); font: inherit; font-size: 13.5px;
  font-weight: 600; cursor: pointer; padding: 0; margin-bottom: 16px; transition: color .25s;
}
.bk-back:hover { color: var(--primary); }

.bk-advisors { display: grid; gap: 12px; }
.bk-advisor {
  display: grid; grid-template-columns: 74px 1fr; gap: 16px; align-items: start;
  padding: 18px; border-radius: 16px; background: var(--bg); border: 1px solid var(--border);
}
.bk-av-photo { width: 74px; height: 74px; border-radius: 12px; overflow: hidden; background: var(--bg2); }
.bk-av-photo img { width: 100%; height: 100%; object-fit: cover; }
.bk-av-body b { font-size: 16px; }
.bk-av-desc { font-size: 13px; color: var(--ink-muted); margin: 5px 0 10px; line-height: 1.5; }
.bk-chips { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 14px; }
.bk-chip {
  font-size: 11px; font-weight: 600; padding: 4px 10px; border-radius: 100px;
  background: var(--bg2); border: 1px solid var(--border); color: var(--deep);
}
.bk-pick { padding: 10px 18px; font-size: 14px; }
.bk-empty {
  font-size: 14px; color: var(--ink-muted); line-height: 1.6; padding: 20px;
  border: 1.5px dashed var(--border); border-radius: 14px; background: var(--bg);
}

.bk-chosen-card {
  display: flex; align-items: center; gap: 12px; padding: 12px 14px; margin-bottom: 14px;
  border-radius: 12px; background: var(--bg); border: 1px solid var(--border);
}
.bk-chosen-card img { width: 44px; height: 44px; border-radius: 10px; object-fit: cover; }
.bk-chosen-card b { display: block; font-size: 14.5px; }
.bk-chosen-card span { font-size: 12.5px; color: var(--ink-muted); }
.bk-cal { min-height: 630px; border-radius: 14px; overflow: hidden; }
.bk-cal-loading { display: grid; place-items: center; min-height: 630px; color: var(--ink-muted); font-size: 14px; }
@media (max-width: 560px) {
  .bk-advisor { grid-template-columns: 56px 1fr; gap: 12px; padding: 14px; }
  .bk-av-photo { width: 56px; height: 56px; }
  .bk-cal, .bk-cal-loading { min-height: 720px; }
}

/* ---------- contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 12.5px; font-weight: 600; margin-bottom: 7px; color: var(--ink-muted); }
.field input, .field textarea {
  width: 100%; padding: 13px 15px; border: 1px solid var(--border); border-radius: 12px;
  font: inherit; font-size: 15px; background: var(--bg); transition: border-color .3s, box-shadow .3s;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(84,131,160,.15); }
.info-block { display: grid; gap: 18px; align-content: start; }
.info-row { display: flex; gap: 14px; align-items: flex-start; }
.info-row .ic { width: 42px; height: 42px; border-radius: 12px; background: var(--bg2); display: grid; place-items: center; color: var(--primary); flex: 0 0 auto; }
.info-row b { font-size: 15px; }
.info-row span { display: block; font-size: 14px; color: var(--ink-muted); }
#map-lite { margin-top: 10px; border-radius: 16px; overflow: hidden; border: 1px solid var(--border); aspect-ratio: 16/10; background: var(--bg2); }
#map-lite iframe { width: 100%; height: 100%; border: 0; }

/* ---------- footer ---------- */
.footer { background: var(--teal); color: rgba(255,255,255,.72); padding: 60px 0 30px; }
.footer-top { display: flex; justify-content: space-between; gap: 30px; flex-wrap: wrap; padding-bottom: 34px; border-bottom: 1px solid rgba(255,255,255,.12); }
.footer .brand b { color: #fff; }
.footer-logo { display: block; width: 120px; height: 120px; border-radius: 22px; box-shadow: 0 18px 40px rgba(0,0,0,.35); }
.footer-soc { display: flex; gap: 12px; }
.footer-soc a { width: 42px; height: 42px; border-radius: 12px; border: 1px solid rgba(255,255,255,.16); display: grid; place-items: center; color: #fff; transition: background .3s, transform .3s var(--ease); }
.footer-soc a:hover { background: rgba(255,255,255,.1); transform: translateY(-3px); }
.footer-bottom { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-top: 24px; font-size: 12.5px; }
.footer-bottom a { text-decoration: underline; text-underline-offset: 3px; }

/* ---------- toast + sticky ---------- */
#toast { position: fixed; left: 50%; bottom: 26px; transform: translateX(-50%) translateY(20px); z-index: 90; background: var(--ink); color: #fff; padding: 13px 20px; border-radius: 100px; font-size: 14px; opacity: 0; pointer-events: none; transition: opacity .4s, transform .4s var(--ease); }
#toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
#sticky-cta { position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 80; display: none; }
#sticky-cta .btn { width: 100%; justify-content: center; }

/* ---------- praca ---------- */
.praca { background: var(--teal); color: #fff; overflow: hidden; }
.praca-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 54px; align-items: center; }
.praca-copy h2 { font-size: clamp(28px, 3.4vw, 42px); margin: 14px 0 16px; }
.praca-copy > p { color: rgba(255,255,255,.78); font-size: 16px; }
.praca-feats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin: 26px 0 28px; }
.praca-feats .feat { padding: 16px 18px; border-radius: 14px; background: linear-gradient(160deg, rgba(255,255,255,.08), rgba(255,255,255,.02)); border: 1px solid rgba(255,255,255,.12); }
.praca-feats .feat b { display: block; font-size: 19px; }
.praca-feats .feat span { font-size: 13px; color: rgba(255,255,255,.7); }
.praca-media { border-radius: 24px; overflow: hidden; border: 1px solid rgba(255,255,255,.14); box-shadow: 0 40px 80px -50px rgba(0,0,0,.7); }
.praca-media img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }

/* ---------- lifestyle / pasje ---------- */
.lifestyle { background: var(--bg); }
.life-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 176px; gap: 16px; }
.life-tile {
  position: relative; border-radius: var(--r); overflow: hidden; border: 1px solid var(--border);
  background: linear-gradient(160deg, var(--deep), var(--teal));
  display: flex; flex-direction: column; justify-content: flex-end; padding: 20px; color: #fff;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease); will-change: transform;
}
.life-tile::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(14,27,32,.55)); pointer-events: none; }
.life-tile > * { position: relative; z-index: 1; }
.life-tile:hover { transform: translateY(-5px); box-shadow: 0 26px 50px -28px rgba(40,62,77,.55); }
.life-big { grid-column: span 2; grid-row: span 2; background: linear-gradient(160deg, var(--primary), var(--teal)); }
.life-tag { font-weight: 800; font-size: 16px; letter-spacing: -0.01em; }
.life-big .life-tag { font-size: 27px; }
.life-sub { font-size: 13.5px; color: rgba(255,255,255,.82); margin-top: 6px; max-width: 30ch; }

/* ---------- newsletter ---------- */
.newsletter { background: var(--bg2); }
.news-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; background: var(--bg); border: 1px solid var(--border); border-radius: 26px; padding: 46px; }
.news-copy h2 { font-size: clamp(26px, 3vw, 36px); margin: 12px 0 12px; }
.news-copy p { color: var(--ink-muted); font-size: 15.5px; }
.news-form { display: grid; grid-template-columns: 1fr auto; gap: 12px; }
.news-form input[type=email] { grid-column: 1 / -1; width: 100%; padding: 14px 16px; border: 1px solid var(--border); border-radius: 12px; font: inherit; font-size: 15px; background: var(--bg); }
.news-form input[type=email]:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(84,131,160,.15); }
.news-form .btn { grid-column: 1 / -1; justify-content: center; }
.news-form .consent { grid-column: 1 / -1; }

/* ---------- form extras ---------- */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field select {
  width: 100%; padding: 13px 15px; border: 1px solid var(--border); border-radius: 12px;
  font: inherit; font-size: 15px; background: var(--bg); color: var(--ink); cursor: pointer;
  appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%235A6166' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
}
.field select:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(84,131,160,.15); }
.consent { display: flex; gap: 10px; align-items: flex-start; font-size: 12.5px; color: var(--ink-muted); margin: 4px 0 18px; line-height: 1.45; }
.consent input { margin-top: 2px; flex: 0 0 auto; accent-color: var(--primary); width: 16px; height: 16px; }
.consent a { color: var(--primary); text-decoration: underline; text-underline-offset: 2px; }
.info-link { transition: transform .3s var(--ease); }
.info-link:hover { transform: translateX(3px); }
.info-link:hover .ic { color: #fff; background: var(--primary); }

/* ---------- instagram / aktualności ---------- */
.insta-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.insta-tile { aspect-ratio: 9/16; border-radius: 18px; border: 1px solid var(--border); background: linear-gradient(160deg, var(--primary), var(--deep)); display: grid; place-items: center; color: rgba(255,255,255,.85); font-weight: 700; font-size: 14px; transition: transform .5s var(--ease), box-shadow .5s var(--ease); }
.insta-tile:hover { transform: translateY(-6px); box-shadow: 0 26px 50px -28px rgba(40,62,77,.55); }

/* ---------- chat widget ---------- */
#chat { position: fixed; right: 22px; bottom: 22px; z-index: 95; }
#chat-toggle { width: 58px; height: 58px; border-radius: 50%; border: 0; cursor: pointer; background: var(--grad-cta); color: #fff; display: grid; place-items: center; box-shadow: 0 16px 34px -12px rgba(40,62,77,.7); transition: transform .4s var(--ease); }
#chat-toggle:hover { transform: scale(1.06); }
#chat-panel { position: absolute; right: 0; bottom: 72px; width: 320px; max-width: calc(100vw - 44px); background: var(--bg); border: 1px solid var(--border); border-radius: 20px; box-shadow: 0 30px 70px -30px rgba(0,0,0,.4); overflow: hidden; animation: chatIn .35s var(--ease); }
@keyframes chatIn { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.chat-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; padding: 18px 18px 14px; background: var(--grad-cta); color: #fff; }
.chat-head b { font-size: 15px; }
.chat-head span { display: block; font-size: 12.5px; color: rgba(255,255,255,.8); margin-top: 2px; }
#chat-close { background: none; border: 0; color: #fff; font-size: 22px; line-height: 1; cursor: pointer; opacity: .85; }
.chat-call { display: flex; align-items: center; justify-content: center; gap: 8px; margin: 14px 16px 0; padding: 11px 14px; border-radius: 12px; background: var(--primary); color: #fff; font-weight: 700; font-size: 14px; transition: background .3s; }
.chat-call:hover { background: var(--deep); }
.chat-call svg { flex: none; }
.chat-quick { display: flex; flex-wrap: wrap; gap: 8px; padding: 14px 16px 4px; }
.chat-quick button { font-size: 12.5px; font-weight: 600; padding: 7px 12px; border-radius: 100px; border: 1px solid var(--border); background: var(--bg2); color: var(--deep); cursor: pointer; transition: border-color .3s; }
.chat-quick button:hover { border-color: var(--primary); }
#chat-form { display: grid; gap: 10px; padding: 12px 16px 18px; }
#chat-form input, #chat-form textarea { width: 100%; padding: 11px 13px; border: 1px solid var(--border); border-radius: 10px; font: inherit; font-size: 14px; background: var(--bg); }
#chat-form input:focus, #chat-form textarea:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(84,131,160,.15); }
#chat-form .btn { justify-content: center; padding: 12px; font-size: 14px; }

/* ---------- footer links row ---------- */
.footer-links { display: flex; flex-wrap: wrap; gap: 22px; padding: 24px 0; font-size: 14px; }
.footer-links a { opacity: .75; transition: opacity .3s; }
.footer-links a:hover { opacity: 1; }

/* ---------- reviews (opinie) ---------- */
.reviews { background: var(--bg); }
.rv-top {
  display: flex; align-items: center; justify-content: space-between; gap: 26px;
  flex-wrap: wrap; background: #fff; border: 1px solid var(--border);
  border-radius: var(--r); padding: 24px 28px; box-shadow: 0 24px 60px -40px rgba(40,62,77,.4);
}
.rv-score { display: flex; align-items: center; gap: 30px; flex-wrap: wrap; }
.rv-badge { display: flex; align-items: center; gap: 14px; }
.rv-badge b { display: block; font-size: 16px; }
.rv-badge span { font-size: 13px; color: var(--ink-muted); }
.rv-stars-big { display: flex; align-items: center; gap: 12px; padding-left: 30px; border-left: 1px solid var(--border); }
.rv-num { font-size: 34px; font-weight: 800; line-height: 1; color: var(--deep); }
.stars { color: #F2B01E; letter-spacing: 2px; font-size: 17px; }
.rv-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.rv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 26px; }
.rv-card {
  background: #fff; border: 1px solid var(--border); border-radius: 16px;
  padding: 24px; display: flex; flex-direction: column; gap: 12px;
  box-shadow: 0 18px 44px -34px rgba(40,62,77,.4);
}
.rv-card .stars { font-size: 15px; }
.rv-card p { color: var(--ink); font-size: 15px; }
.rv-card cite { font-style: normal; font-weight: 700; font-size: 14px; color: var(--ink); }
/* 6. Zdjęcie profilowe (monogram jak w Google przy braku zdjęcia) + autor */
.rv-by { display: flex; align-items: center; gap: 11px; margin-top: 2px; }
.rv-av { flex: 0 0 auto; width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; color: #fff; font-weight: 700; font-size: 14px; letter-spacing: .02em; }
.rv-by .rv-meta { display: flex; flex-direction: column; line-height: 1.25; }
.rv-by .rv-src { font-size: 11.5px; color: var(--ink-muted); font-weight: 600; }
.rv-note { text-align: center; margin-top: 20px; font-size: 13px; color: var(--ink-muted); }
.rv-note a { color: var(--primary); text-decoration: none; font-weight: 600; }
.rv-note a:hover { text-decoration: underline; }

/* ---------- instagram / rolki ---------- */
.ig-band { display: grid; grid-template-columns: 1.05fr .95fr; gap: 40px; align-items: center;
  background: linear-gradient(155deg, var(--deep) 0%, var(--dark) 100%); border-radius: 24px;
  padding: 44px 48px; overflow: hidden; }
.ig-copy h2 { color: #fff; margin: 8px 0 12px; }
.ig-copy p { color: rgba(255,255,255,.82); font-size: 15px; line-height: 1.65; margin: 0 0 22px; max-width: 460px; }
.ig-handle { display: inline-block; margin-left: 16px; color: var(--light); font-weight: 600; text-decoration: none; font-size: 14px; }
.ig-handle:hover { text-decoration: underline; }
.ig-reels { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; text-decoration: none; }
.ig-tile { position: relative; aspect-ratio: 9 / 16; border-radius: 16px; overflow: hidden;
  background: linear-gradient(135deg, #833AB4 0%, #C13584 35%, #E1306C 60%, #F56040 80%, #FCAF45 100%);
  display: flex; align-items: center; justify-content: center; box-shadow: 0 18px 40px -20px rgba(0,0,0,.5);
  transition: transform .25s ease; }
.ig-tile img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ig-tile:nth-child(2) { transform: translateY(-14px); }
.ig-reels:hover .ig-tile { transform: translateY(-6px); }
.ig-reels:hover .ig-tile:nth-child(2) { transform: translateY(-20px); }
.ig-tile:hover img { transform: scale(1.05); transition: transform .5s var(--ease); }
.ig-play { position: relative; z-index: 1; width: 46px; height: 46px; border-radius: 50%; background: rgba(255,255,255,.92); color: #C13584;
  display: flex; align-items: center; justify-content: center; padding-left: 3px; box-shadow: 0 6px 18px rgba(0,0,0,.35); }
@media (max-width: 820px) {
  .ig-band { grid-template-columns: 1fr; gap: 28px; padding: 34px 26px; }
  .ig-reels { max-width: 340px; }
}
@media (max-width: 560px) {
  .ig-handle { display: block; margin: 14px 0 0; }
}

/* ---------- reach / mapa województw ---------- */
.reach { background: var(--bg2); }
.reach-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 40px; align-items: center; }
.reach-map { position: relative; }
.pl-map { width: 100%; height: auto; display: block; overflow: visible; }
.pl-map .voi {
  fill: #D8E0DF; stroke: var(--bg2); stroke-width: 1.4;
  transform-box: fill-box; transform-origin: center;
  cursor: pointer; transition: fill .25s var(--ease), transform .25s var(--ease);
  outline: none; -webkit-tap-highlight-color: transparent;
}
/* 8. Bez kwadratowego focus-ringu na tap/klik - zaznaczenie pokazuje sam obrys/fill województwa */
.pl-map .voi:focus, .pl-map .voi:focus-visible, .pl-map .voi:active { outline: none; }
.pl-map .voi:hover { fill: var(--light); }
.pl-map .voi.is-sel { fill: var(--light); }
.pl-map .voi.mal, .pl-map .voi.is-mal { fill: var(--primary); }
.pl-map .voi.is-mal:hover { fill: var(--dark); }
.reach-hint { text-align: center; margin-top: 12px; font-size: 12px; color: var(--ink-muted); text-transform: uppercase; letter-spacing: .08em; }
.reach-panel {
  background: #fff; border: 1px solid var(--border); border-radius: var(--r);
  padding: 34px; box-shadow: 0 26px 66px -42px rgba(40,62,77,.45); min-height: 300px;
}
.reach-view { display: none; animation: fadeUp .5s var(--ease); }
.reach-view.is-active { display: block; }
.reach-kicker { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: var(--primary); }
.reach-view h3 { font-size: 26px; margin: 8px 0 16px; color: var(--deep); }
.reach-view p { color: var(--ink-muted); font-size: 15px; }
.reach-addr { display: flex; gap: 12px; align-items: flex-start; margin: 4px 0 16px; color: var(--ink); }
.reach-addr svg { color: var(--primary); flex: none; margin-top: 2px; }
.reach-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

/* ---------- responsive ---------- */
@media (max-width: 960px) {
  .hero-grid, .contact-grid, .book-inner, .about-grid, .praca-grid, .news-inner { grid-template-columns: 1fr; }
  .hero-visual { max-width: 420px; margin-inline: auto; }
  .hero-badge { left: 0; }
  .stats-grid { grid-template-columns: repeat(3, 1fr); gap: 30px 16px; }
  .why-grid, .calc-grid, .insta-grid, .life-grid { grid-template-columns: repeat(2, 1fr); }
  .svc-scroll { grid-template-columns: 1fr; gap: 30px; }
  .svc-sticky { position: static; }
  .svc-track { max-width: 340px; }
  .svc-panels { gap: 18px; }
  .svc-panel { opacity: 1; transform: none; filter: none; }
  .calc-live { grid-template-columns: 1fr; }
  .cl-result { border-left: 0; border-top: 1px solid rgba(255,255,255,.1); }
  .reach-grid { grid-template-columns: 1fr; gap: 28px; }
  .reach-map { max-width: 500px; margin-inline: auto; }
  .rv-grid { grid-template-columns: 1fr; }
  /* 5+9. Fotki hero i Praca: kadr poziomy na mobile, żeby nie były przesadnie wysokie */
  .hero-photo img, .praca-media img { aspect-ratio: 16/10; }
  .hero-visual { max-width: 460px; }
  .btn-call span { display: none; }
  .btn-call { padding: 10px; }
  .book-side { padding: 34px; }
  .nav-links { display: none; }
  .nav-toggle { display: inline-flex; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
  .nav-toggle span { width: 22px; height: 2px; background: currentColor; border-radius: 2px; }
  .nav.open .nav-links { display: flex; position: absolute; top: 62px; right: 22px; left: 22px; flex-direction: column; background: var(--bg); border: 1px solid var(--border); border-radius: 16px; padding: 16px; box-shadow: 0 20px 50px -20px rgba(0,0,0,.3); }
  .site-header.on-dark:not(.scrolled) .nav.open .nav-links a { color: var(--ink); }
  /* 10. Górny CTA znika na mobile (odsłania menu); trafia do menu + zostaje sticky na dole */
  .nav-cta-btn { display: none; }
  .nav.open .nav-menu-cta { display: inline-flex; justify-content: center; margin-top: 8px; color: #fff; }
  .site-header.on-dark:not(.scrolled) .nav.open .nav-links a.nav-menu-cta { color: #fff; }
}
@media (max-width: 620px) {
  .hero { padding: 150px 0 80px; }
  .sec { padding: 74px 0; }
  .stats-grid, .why-grid, .calc-grid, .insta-grid, .two-col, .praca-feats { grid-template-columns: 1fr; }
  .cl-controls, .cl-result { padding: 28px; }
  .cl-extra { grid-template-columns: 1fr 1fr; }
  .life-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 140px; }
  .life-big { grid-column: span 2; grid-row: span 1; }
  .rv-top { flex-direction: column; align-items: flex-start; }
  .rv-stars-big { padding-left: 0; border-left: 0; }
  /* 6. Opinie jako karuzela (swipe) na mobile */
  .rv-grid { display: flex; grid-template-columns: none; overflow-x: auto; scroll-snap-type: x mandatory; gap: 14px; margin-inline: -22px; padding: 4px 22px 10px; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
  .rv-grid::-webkit-scrollbar { display: none; }
  .rv-card { flex: 0 0 84%; scroll-snap-align: center; }
  .rv-note { margin-top: 8px; }
  .reach-panel { padding: 26px; }
  .news-inner { padding: 30px; }
  #sticky-cta { display: block; }
  #chat { right: 16px; bottom: 84px; }
}

/* ============ Poprawki feedback 2026-08-09 ============ */
/* 1. Przyciski zawsze w jednej linii */
.btn { white-space: nowrap; }
/* 2. Adres w nav zawsze w jednej linii */
.brand small { white-space: nowrap; }
/* 8. Zero outline'ów po kliknięciu / tapnięciu; delikatny ring tylko dla klawiatury */
.btn, .btn-more, .member-more, a, button { -webkit-tap-highlight-color: transparent; }
.btn:focus { outline: none; }
.btn:focus:not(:focus-visible) { outline: none; box-shadow: 0 12px 30px -12px rgba(40,62,77,.7); }
.btn-primary:focus:not(:focus-visible) { box-shadow: 0 12px 30px -12px rgba(40,62,77,.7); }
.btn:focus-visible { outline: none; box-shadow: 0 12px 30px -12px rgba(40,62,77,.7), 0 0 0 2px rgba(124,163,186,.55); }
.magnetic:focus, .magnetic:focus-within { outline: none; }
/* 4. „Poznaj usługi" - czytelniejszy, drugorzędny wobec CTA, bez outline'u */
.hero .btn-ghost, .on-dark .btn-ghost {
  color: #fff;
  border-color: transparent;
  background: rgba(255,255,255,.14);
  backdrop-filter: blur(4px);
}
.hero .btn-ghost:hover, .on-dark .btn-ghost:hover { background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.8); }
/* Stopka - kredyt wykonawcy */
.footer-credit { margin-top: 16px; text-align: center; font-size: 12px; opacity: .55; }
.footer-credit a { color: inherit; text-decoration: underline; text-underline-offset: 3px; }
/* 3. Mapa statyczna - notka online w panelu */
.reach-online-note { margin-top: 26px; padding-top: 22px; border-top: 1px solid var(--border); display: flex; flex-direction: column; gap: 8px; }
.reach-online-note b { color: var(--deep); font-size: 15px; }
.reach-online-note span { color: var(--ink-muted); font-size: 14px; }
.reach-online-note .btn { align-self: flex-start; margin-top: 8px; }

/* ---------- team cards (2026-08-10, inline expand) ---------- */
.member { display: flex; flex-direction: column; text-align: left; padding: 0;
  flex: 0 0 clamp(214px, 23vw, 268px); scroll-snap-align: start;
  background: var(--bg2); border: 1px solid var(--border); border-radius: var(--r); overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.member:hover { transform: translateY(-4px); box-shadow: 0 18px 40px -22px rgba(40,62,77,.55); border-color: var(--primary); }
.member.is-open { transform: none; box-shadow: 0 22px 50px -26px rgba(40,62,77,.6); border-color: var(--primary); }
.team-nav {
  position: absolute; top: 40%; translate: 0 -50%; z-index: 2;
  width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center;
  background: #fff; color: var(--deep); border: 1px solid var(--border);
  box-shadow: 0 14px 30px -14px rgba(40,62,77,.5); cursor: pointer;
  transition: background .3s, transform .3s var(--ease), opacity .3s;
}
.team-nav:hover { background: var(--primary); color: #fff; }
.team-nav.prev { left: -14px; }
.team-nav.next { right: -14px; }
.team-nav[disabled] { opacity: 0; pointer-events: none; }
@media (max-width: 900px) { .team-nav { display: none; } }
.member .ph { aspect-ratio: 4/5; overflow: hidden; position: relative;
  background: linear-gradient(160deg, var(--primary), var(--deep)); }
.member .ph img { width: 100%; height: 100%; object-fit: cover; object-position: center 22%; display: block; transition: transform .5s ease; }
.member:hover .ph img { transform: scale(1.05); }
.member .ph::after { content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(to top, rgba(40,62,77,.30), transparent 42%); }
.member .mono-av { width: 100%; height: 100%; display: grid; place-items: center;
  font-size: 42px; font-weight: 700; color: rgba(255,255,255,.85);
  background: linear-gradient(160deg, var(--primary), var(--deep)); letter-spacing: 2px; }
.member .body { padding: 15px 17px 16px; display: flex; flex-direction: column; gap: 2px; flex: 1; }
.member .body b { font-size: 15.5px; line-height: 1.25; }
.member .body span { font-size: 12px; color: var(--primary); font-weight: 600; }
.member-exc { font-size: 12.5px; color: var(--ink-muted); line-height: 1.55; margin: 9px 0 0;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.member.is-open .member-exc { display: none; }
.member-full { margin: 9px 0 0; animation: bkFade .28s ease; }
.member-full p, .member-full blockquote { font-size: 12.5px; color: var(--ink-muted); line-height: 1.6; margin: 0 0 9px; }
.member-full p:last-child, .member-full blockquote:last-child, .member-full ul:last-child { margin-bottom: 0; }
.member-full blockquote { padding-left: 11px; border-left: 2px solid var(--primary); font-style: italic; color: var(--dark); }
.member-full .bio-h { font-weight: 700; color: var(--ink); font-style: normal; margin: 4px 0 6px; }
.member-full .bio-svc { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 6px; }
.member-full .bio-svc li { font-size: 11.5px; font-weight: 600; color: var(--dark);
  background: var(--bg); border: 1px solid var(--border); border-radius: 100px; padding: 4px 10px; line-height: 1.25; }
.member-more { margin-top: 11px; align-self: flex-start; font: inherit; font-size: 12px; font-weight: 700;
  color: var(--dark); background: none; border: none; padding: 4px 0 0; cursor: pointer;
  display: inline-flex; align-items: center; gap: 5px; }
.member-more:hover { color: var(--primary); }
.member-more:focus-visible { outline: 2px solid var(--primary); outline-offset: 3px; border-radius: 4px; }
.member-more .mm-ic { font-size: 13px; transition: transform .25s ease; }
.member { cursor: pointer; }

/* ---------- modal doradcy (2026-08-10) ---------- */
.mem-modal { position: fixed; inset: 0; z-index: 1300; display: none; padding: 24px; }
.mem-modal.is-open { display: grid; place-items: center; }
.mem-modal__backdrop { position: absolute; inset: 0; background: rgba(20,32,40,.62);
  backdrop-filter: blur(4px); animation: bkFade .3s ease; }
.mem-modal__card { position: relative; z-index: 1; width: min(920px, 100%); max-height: 88vh;
  display: grid; grid-template-columns: 340px 1fr; background: var(--bg); border-radius: 24px;
  overflow: hidden; box-shadow: 0 60px 120px -50px rgba(20,32,40,.75);
  animation: mmIn .38s var(--ease) both; }
@keyframes mmIn { from { opacity: 0; transform: translateY(22px) scale(.98); } to { opacity: 1; transform: none; } }
.mem-modal__x { position: absolute; top: 14px; right: 14px; z-index: 3; width: 38px; height: 38px;
  border-radius: 50%; border: none; cursor: pointer; font-size: 24px; line-height: 1; color: #fff;
  background: rgba(20,32,40,.42); display: grid; place-items: center; transition: background .2s; }
.mem-modal__x:hover { background: rgba(20,32,40,.7); }
.mem-modal__photo { position: relative; background: linear-gradient(160deg, var(--primary), var(--deep)); min-height: 100%; }
.mem-modal__photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; display: block; }
.mem-modal__photo .mono-av { width: 100%; height: 100%; display: grid; place-items: center;
  font-size: 76px; font-weight: 700; color: rgba(255,255,255,.9); letter-spacing: 3px; }
.mem-modal__body { padding: 34px 36px; overflow-y: auto; }
.mem-modal__head b { display: block; font-size: 25px; line-height: 1.2; }
.mem-modal__head > span { display: block; font-size: 13.5px; color: var(--primary); font-weight: 600; margin-top: 4px; }
.mem-modal__soc { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 14px; }
.mem-modal__soc a { display: inline-flex; align-items: center; gap: 7px; font-size: 12.5px; font-weight: 600;
  color: var(--dark); background: var(--bg2); border: 1px solid var(--border); border-radius: 100px;
  padding: 7px 13px; text-decoration: none; transition: background .2s, border-color .2s, color .2s; }
.mem-modal__soc a:hover { background: var(--primary); border-color: var(--primary); color: #fff; }
.mem-modal__soc a svg { width: 15px; height: 15px; }
.mem-modal__bio { margin: 20px 0 26px; padding-top: 20px; border-top: 1px solid var(--border); }
.mem-modal__bio p, .mem-modal__bio blockquote { font-size: 14.5px; color: var(--ink-muted); line-height: 1.7; margin: 0 0 13px; }
.mem-modal__bio p:last-child, .mem-modal__bio blockquote:last-child, .mem-modal__bio ul:last-child { margin-bottom: 0; }
.mem-modal__bio blockquote { padding-left: 14px; border-left: 3px solid var(--primary); font-style: italic; color: var(--dark); }
.mem-modal__bio .bio-h { font-weight: 700; color: var(--ink); font-style: normal; font-size: 15px; margin: 20px 0 10px; }
.mem-modal__bio .bio-svc { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 7px; }
.mem-modal__bio .bio-svc li { font-size: 12.5px; font-weight: 600; color: var(--dark);
  background: var(--bg2); border: 1px solid var(--border); border-radius: 100px; padding: 5px 12px; line-height: 1.3; }
body.mm-lock { overflow: hidden; }
@media (max-width: 720px) {
  .mem-modal { padding: 0; }
  .mem-modal.is-open { place-items: stretch; }
  .mem-modal__card { grid-template-columns: 1fr; width: 100%; max-height: 100vh; border-radius: 0;
    grid-template-rows: auto 1fr; }
  .mem-modal__photo { min-height: 0; aspect-ratio: 16/9; }
  .mem-modal__photo img { object-position: center 25%; }
  .mem-modal__photo .mono-av { font-size: 54px; }
  .mem-modal__body { padding: 24px 22px 30px; }
  .mem-modal__head b { font-size: 22px; }
}

/* ---------- services tabs + grid (2026-08-10) ---------- */
.svc-tabs { display: inline-flex; gap: 6px; padding: 6px; margin: 26px 0 34px;
  background: var(--bg2); border: 1px solid var(--border); border-radius: 999px; }
.svc-tab { border: none; background: transparent; padding: 11px 24px; border-radius: 999px;
  font: inherit; font-size: 14.5px; font-weight: 600; color: var(--ink-muted); cursor: pointer;
  transition: color .2s, background .2s, box-shadow .2s; }
.svc-tab.is-active { color: #fff; background: linear-gradient(165deg,var(--deep),var(--primary) 60%,var(--light));
  box-shadow: 0 10px 24px -12px rgba(40,62,77,.6); }
.svc-tab:focus-visible { outline: 2px solid var(--primary); outline-offset: 2px; }
.svc2-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.svc2-grid[hidden] { display: none; }
.svc2-card { background: var(--bg2); border: 1px solid var(--border); border-radius: var(--r);
  padding: 30px 26px; transition: transform .25s, box-shadow .25s, border-color .25s; }
.svc2-card:hover { transform: translateY(-4px); box-shadow: 0 22px 46px -26px rgba(40,62,77,.5); border-color: var(--light); }
.svc2-card .ic { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center;
  background: linear-gradient(160deg, rgba(84,131,160,.16), rgba(40,62,77,.10)); color: var(--primary); margin-bottom: 18px; }
.svc2-card .ic svg { width: 26px; height: 26px; }
.svc2-card h3 { font-size: 19px; margin-bottom: 9px; line-height: 1.25; }
.svc2-card p { font-size: 14px; color: var(--ink-muted); line-height: 1.6; }
@media (max-width: 900px) { .svc2-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .svc2-grid { grid-template-columns: 1fr; } .svc-tabs { display: flex; width: 100%; } .svc-tab { flex: 1; padding: 11px 10px; } }

/* ---------- home: "pokaż więcej kalkulatorów" ---------- */
.calc-more { margin-top: 30px; display: flex; flex-wrap: wrap; align-items: center; gap: 12px 22px;
  padding: 22px 26px; border-radius: var(--r); background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12); }
.calc-more p { flex: 1 1 320px; font-size: 14.5px; color: rgba(255,255,255,.72); line-height: 1.55; }

/* ---------- strona kalkulatorów (2026-08-10) ---------- */
.calc-hero { padding-top: 148px; padding-bottom: 40px; background: var(--bg2); }
.calc-hero .sec-head { max-width: 720px; margin-bottom: 30px; }
.calc-hero h1 { font-size: clamp(34px, 5vw, 52px); margin: 12px 0 16px; }
.calc-nav { display: flex; flex-wrap: wrap; gap: 10px; }
.calc-nav a { font-size: 13.5px; font-weight: 600; color: var(--dark); background: var(--bg);
  border: 1px solid var(--border); border-radius: 100px; padding: 9px 17px;
  transition: background .2s, border-color .2s, color .2s; }
.calc-nav a:hover { background: var(--primary); border-color: var(--primary); color: #fff; }
.calc-suite-sec { padding-top: 56px; }

.ck-cat { margin-bottom: 60px; scroll-margin-top: 96px; }
.ck-cat:last-of-type { margin-bottom: 0; }
.ck-cat-title { font-size: 24px; margin-bottom: 22px; padding-bottom: 14px;
  border-bottom: 2px solid var(--border); }
.ck-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; align-items: start; }
.ck-card { background: var(--bg2); border: 1px solid var(--border); border-radius: var(--r);
  padding: 26px 26px 28px; transition: border-color .25s, box-shadow .25s; }
.ck-card:hover { border-color: var(--light); box-shadow: 0 20px 46px -30px rgba(40,62,77,.4); }
.ck-card h3 { font-size: 19px; line-height: 1.25; margin-bottom: 7px; }
.ck-desc { font-size: 13.5px; color: var(--ink-muted); line-height: 1.55; margin-bottom: 20px; }
.ck-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px 16px; }
.ck-field { display: flex; flex-direction: column; }
.ck-field > label { font-size: 12.5px; font-weight: 600; color: var(--ink-muted); margin-bottom: 6px; }
.ck-field > label em { font-style: normal; color: var(--primary); font-weight: 600; }
.ck-field input[type="text"], .ck-field select { width: 100%; padding: 11px 13px; border-radius: 12px;
  border: 1.5px solid var(--border); background: var(--bg); font: inherit; font-size: 14.5px; color: var(--ink);
  transition: border-color .25s, box-shadow .25s; }
.ck-field input[type="text"]:focus, .ck-field select:focus { outline: none; border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(84,131,160,.16); }
.ck-field--check { grid-column: 1 / -1; }
.ck-check { display: flex; align-items: center; gap: 10px; cursor: pointer; font-size: 13.5px;
  color: var(--dark); font-weight: 600; }
.ck-check input { width: 18px; height: 18px; accent-color: var(--primary); flex: 0 0 auto; }
.ck-go { margin-top: 18px; width: 100%; justify-content: center; }
.ck-result { margin-top: 20px; padding-top: 20px; border-top: 1px dashed var(--border); display: grid; gap: 8px; }
.ck-result[hidden] { display: none; }
.ck-res-row { display: flex; align-items: baseline; justify-content: space-between; gap: 14px;
  padding: 9px 14px; border-radius: 12px; background: var(--bg); }
.ck-res-row.is-primary { background: linear-gradient(160deg, rgba(84,131,160,.16), rgba(40,62,77,.08));
  border: 1px solid rgba(84,131,160,.3); }
.ck-res-l { font-size: 13px; color: var(--ink-muted); }
.ck-res-row.is-primary .ck-res-l { color: var(--dark); font-weight: 600; }
.ck-res-v { font-size: 15px; font-weight: 700; color: var(--ink); text-align: right; white-space: nowrap; }
.ck-res-row.is-primary .ck-res-v { font-size: 18px; color: var(--deep); }
.ck-sched { margin-top: 6px; }
.ck-sched > summary { cursor: pointer; font-size: 13px; font-weight: 700; color: var(--primary);
  padding: 8px 0; list-style: none; }
.ck-sched > summary::-webkit-details-marker { display: none; }
.ck-sched > summary::before { content: "▸ "; }
.ck-sched[open] > summary::before { content: "▾ "; }
.ck-sched-scroll { max-height: 320px; overflow: auto; border: 1px solid var(--border); border-radius: 12px; margin-top: 8px; }
.ck-sched-scroll table { width: 100%; border-collapse: collapse; font-size: 12.5px; }
.ck-sched-scroll th, .ck-sched-scroll td { padding: 7px 10px; text-align: right; white-space: nowrap; }
.ck-sched-scroll th { position: sticky; top: 0; background: var(--bg2); font-weight: 700; color: var(--dark);
  border-bottom: 1px solid var(--border); }
.ck-sched-scroll td:first-child, .ck-sched-scroll th:first-child { text-align: left; }
.ck-sched-scroll tbody tr:nth-child(even) { background: rgba(84,131,160,.05); }

.calc-disclaimer { margin-top: 50px; font-size: 12.5px; color: var(--ink-muted); line-height: 1.6;
  max-width: 760px; }
.calc-cta { margin-top: 40px; padding: 40px; border-radius: var(--r); text-align: center;
  background: var(--grad-cta); color: #fff; }
.calc-cta h2 { font-size: 26px; margin-bottom: 8px; }
.calc-cta p { font-size: 15px; color: rgba(255,255,255,.85); margin-bottom: 22px; }

@media (max-width: 820px) {
  .ck-cards { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .calc-hero { padding-top: 122px; }
  .ck-grid { grid-template-columns: 1fr; }
  .ck-card { padding: 22px 20px 24px; }
  .calc-cta { padding: 32px 22px; }
  .ck-res-v { font-size: 14px; }
  .ck-res-row.is-primary .ck-res-v { font-size: 16px; }
}

/* ============ COOKIE CONSENT ============ */
.cc { position: fixed; left: 0; right: 0; bottom: 0; z-index: 1200; display: none;
  padding: 16px; pointer-events: none; }
.cc.cc--on { display: block; }
.cc__card { pointer-events: auto; max-width: 720px; margin: 0 auto;
  background: #fff; border: 1px solid var(--border); border-radius: 18px;
  box-shadow: 0 30px 70px -30px rgba(14,27,32,.55); padding: 22px 24px;
  animation: ccIn .35s var(--ease) both; }
@keyframes ccIn { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
.cc__main b { display: block; font-size: 16px; margin-bottom: 6px; }
.cc__main p { font-size: 13.5px; color: var(--ink-muted); line-height: 1.6; }
.cc__main a { color: var(--primary); text-decoration: underline; }
.cc__opts { margin-top: 16px; display: grid; gap: 10px; }
.cc__opts[hidden] { display: none; }
.cc__opt { display: flex; align-items: center; justify-content: space-between; gap: 14px;
  background: var(--bg); border: 1px solid var(--border); border-radius: 12px; padding: 12px 14px; cursor: pointer; }
.cc__opt span { display: flex; flex-direction: column; }
.cc__opt b { font-size: 13.5px; }
.cc__opt small { font-size: 12px; color: var(--ink-muted); margin-top: 2px; }
.cc__opt input { width: 18px; height: 18px; accent-color: var(--primary); flex: 0 0 auto; }
.cc__btns { margin-top: 18px; display: flex; flex-wrap: wrap; gap: 10px; justify-content: flex-end; }
.cc__btns .btn { font-size: 13.5px; padding: 10px 18px; }
@media (max-width: 560px) { .cc__btns { flex-direction: column-reverse; } .cc__btns .btn { width: 100%; } }

/* ============ LEGAL PAGES ============ */
.legal-top { display: flex; align-items: center; justify-content: space-between; gap: 16px;
  max-width: var(--wrap); margin: 0 auto; padding: 22px 24px; }
.legal-logo { font-weight: 800; letter-spacing: .5px; color: var(--ink); text-decoration: none; }
.legal-back { font-size: 14px; color: var(--primary); text-decoration: none; }
.legal-back:hover { text-decoration: underline; }
.legal-wrap { max-width: 820px; margin: 0 auto; padding: 8px 24px 64px; }
.legal-wrap h1 { font-size: clamp(28px, 5vw, 40px); margin-bottom: 16px; }
.legal-wrap h2 { font-size: 20px; margin: 34px 0 10px; }
.legal-wrap p, .legal-wrap li { font-size: 15px; color: #33393E; line-height: 1.7; }
.legal-wrap ul { margin: 8px 0 8px 20px; }
.legal-wrap li { margin-bottom: 6px; }
.legal-wrap a { color: var(--primary); text-decoration: underline; }
.legal-lead { font-size: 16px !important; color: var(--ink-muted) !important; margin-bottom: 10px; }
.legal-note { font-size: 13px !important; color: var(--ink-muted) !important; margin-bottom: 20px; }
.legal-flag { display: block; background: rgba(181,101,74,.10); border: 1px solid rgba(181,101,74,.35);
  color: #8A4632; border-radius: 12px; padding: 12px 16px; font-size: 13.5px; margin-bottom: 24px; }
.legal-back-bottom { margin-top: 40px; }
.legal-foot { max-width: var(--wrap); margin: 0 auto; padding: 24px; border-top: 1px solid var(--border);
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: space-between;
  font-size: 13px; color: var(--ink-muted); }
.legal-foot a { color: var(--primary); text-decoration: none; }
.legal-foot a:hover { text-decoration: underline; }

/* ============ POPUP POWITALNY ============ */
.entry-pop { position: fixed; inset: 0; z-index: 140; display: none; }
.entry-pop.open { display: block; }
.entry-pop__backdrop { position: absolute; inset: 0; background: rgba(14,27,32,.66); backdrop-filter: blur(3px); }
.entry-pop__card { position: relative; z-index: 1; max-width: 820px; width: calc(100% - 40px);
  margin: 7vh auto; background: #fff; border-radius: 20px; overflow: hidden;
  display: grid; grid-template-columns: .92fr 1.08fr; box-shadow: 0 30px 80px rgba(14,27,32,.35);
  animation: epopIn .32s cubic-bezier(.2,.8,.25,1); max-height: 88vh; }
@keyframes epopIn { from { opacity: 0; transform: translateY(18px) scale(.98); } to { opacity: 1; transform: none; } }
.entry-pop__side { background: linear-gradient(160deg, var(--deep) 0%, var(--dark) 100%); color: #fff;
  padding: 34px 30px; display: flex; flex-direction: column; }
.entry-pop__side h3 { font-size: 23px; line-height: 1.25; margin: 10px 0 12px; color: #fff; }
.entry-pop__side p { font-size: 14px; line-height: 1.65; color: rgba(255,255,255,.82); margin: 0 0 16px; }
.entry-pop__list { list-style: none; margin: 0 0 auto; padding: 0; display: grid; gap: 9px; }
.entry-pop__list li { display: flex; align-items: center; gap: 9px; font-size: 13.5px; color: rgba(255,255,255,.9); }
.entry-pop__list svg { color: var(--light); flex: 0 0 auto; }
.entry-pop__call { display: flex; align-items: center; gap: 9px; margin-top: 22px; padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.16); color: #fff; text-decoration: none; font-size: 13.5px; font-weight: 600; }
.entry-pop__call svg { color: var(--light); flex: 0 0 auto; }
.entry-pop__call:hover { color: var(--light); }
.entry-pop__form { padding: 34px 32px; overflow-y: auto; }
.entry-pop__form .field { margin-bottom: 12px; }
.entry-pop__form .consent { margin: 8px 0 16px; }
.entry-pop__form .btn { width: 100%; justify-content: center; }
.entry-pop__x { position: absolute; top: 12px; right: 14px; z-index: 2; width: 38px; height: 38px;
  border: none; border-radius: 50%; background: rgba(255,255,255,.85); color: var(--deep);
  font-size: 24px; line-height: 1; cursor: pointer; box-shadow: 0 4px 14px rgba(14,27,32,.18); }
.entry-pop__x:hover { background: #fff; }
@media (max-width: 720px) {
  .entry-pop__card { grid-template-columns: 1fr; margin: 4vh auto; max-height: 92vh; overflow-y: auto; }
  .entry-pop__side { padding: 28px 24px 24px; }
  .entry-pop__side h3 { font-size: 20px; }
  .entry-pop__list { margin-bottom: 4px; }
  .entry-pop__form { padding: 24px; }
}
