/* ============================================================
   DANE W RYZACH — style.css
   Nowoczesna strona-wizytówka | 2026
   ============================================================ */

:root {
  /* Kolory */
  --bg: #f8f7f4;
  --bg-alt: #ffffff;
  --ink: #101c2c;
  --ink-soft: #3d4a5c;
  --muted: #6b7686;
  --line: #e6e3dc;

  --teal: #0e7c6b;
  --teal-dark: #0a5f52;
  --teal-light: #e3f2ee;
  --indigo: #4f5dd3;
  --amber: #f0b429;

  --grad: linear-gradient(120deg, #12a58c 0%, #0e7c6b 45%, #4f5dd3 120%);
  --grad-soft: linear-gradient(120deg, rgba(18,165,140,.10), rgba(79,93,211,.08));

  /* Typografia */
  --font-head: "Sora", "Avenir Next", "Segoe UI", system-ui, sans-serif;
  --font-body: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;

  --fs-hero: clamp(2.4rem, 5.5vw, 4.2rem);
  --fs-h2: clamp(1.7rem, 3.2vw, 2.5rem);
  --fs-h3: clamp(1.15rem, 1.8vw, 1.4rem);
  --fs-body: clamp(1rem, 1.1vw, 1.09rem);

  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 6px 30px rgba(16, 28, 44, .08);
  --shadow-lg: 0 20px 60px rgba(16, 28, 44, .14);

  --container: 1160px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
a { color: var(--teal); text-decoration: none; }
a:hover { color: var(--teal-dark); }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }

h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.15; letter-spacing: -.02em; }

.container { max-width: var(--container); margin-inline: auto; padding-inline: clamp(1.2rem, 4vw, 2.5rem); }

::selection { background: var(--teal); color: #fff; }

/* ---------- Utility ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .8rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1rem;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--grad); border-radius: 2px; }

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

.section { padding-block: clamp(4rem, 9vw, 7rem); }
.section-alt { background: var(--bg-alt); }
.section-dark { background: #0f1b2c; color: #eef1f5; }
.section-dark .eyebrow { color: #3fd0b3; }
.section-dark h2, .section-dark h3 { color: #fff; }
.section-dark p { color: #b8c2cf; }

.section-head { max-width: 720px; margin-bottom: clamp(2.2rem, 5vw, 3.5rem); }
.section-head h2 { font-size: var(--fs-h2); margin-bottom: .9rem; }
.section-head p { color: var(--muted); font-size: 1.06rem; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-head.center .eyebrow::before { display: none; }

/* ---------- Przyciski ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .95rem 1.8rem;
  border-radius: 999px;
  font-family: var(--font-head);
  font-weight: 600; font-size: .98rem;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
  will-change: transform;
}
.btn svg { width: 18px; height: 18px; transition: transform .25s ease; }
.btn:hover svg { transform: translateX(4px); }

.btn-primary {
  background: var(--grad);
  color: #fff !important;
  box-shadow: 0 8px 24px rgba(14, 124, 107, .32);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(14, 124, 107, .42); }

.btn-ghost {
  color: var(--ink);
  border: 1.5px solid var(--line);
  background: var(--bg-alt);
}
.btn-ghost:hover { border-color: var(--teal); color: var(--teal); transform: translateY(-2px); }

.section-dark .btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.3); }
.section-dark .btn-ghost:hover { border-color: #3fd0b3; color: #3fd0b3; }

/* ---------- Nawigacja ---------- */
.site-header {
  position: fixed; inset-inline: 0; top: 0; z-index: 100;
  transition: background .3s ease, box-shadow .3s ease;
}
.site-header.scrolled {
  background: rgba(248, 247, 244, .86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: 76px;
}
.nav-logo { display: flex; align-items: center; gap: .65rem; font-family: var(--font-head); font-weight: 700; font-size: 1.22rem; color: var(--ink); letter-spacing: -.02em; }
.nav-logo:hover { color: var(--ink); }
.nav-logo svg { width: 34px; height: 34px; }

.nav-links { display: flex; align-items: center; gap: clamp(1rem, 2.2vw, 2rem); }
.nav-links a {
  color: var(--ink-soft); font-weight: 500; font-size: .95rem;
  position: relative; padding-block: .3rem;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 0; height: 2px; background: var(--grad); border-radius: 2px;
  transition: width .25s ease;
}
.nav-links a:hover::after, .nav-links a[aria-current="page"]::after { width: 100%; }
.nav-links a[aria-current="page"] { color: var(--ink); font-weight: 600; }
.nav-links .btn { padding: .6rem 1.3rem; font-size: .9rem; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: .6rem; z-index: 102; }
.nav-toggle span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .3s ease, opacity .3s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 880px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed; inset: 0; z-index: 101;
    flex-direction: column; justify-content: center; gap: 1.6rem;
    background: rgba(248, 247, 244, .97);
    backdrop-filter: blur(20px);
    opacity: 0; pointer-events: none; transition: opacity .3s ease;
  }
  .nav-links.open { opacity: 1; pointer-events: auto; }
  .nav-links a { font-size: 1.3rem; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding-top: clamp(8rem, 16vw, 11rem);
  padding-bottom: clamp(4rem, 8vw, 6.5rem);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: 0; z-index: -2;
  background:
    radial-gradient(46rem 30rem at 88% -10%, rgba(79, 93, 211, .10), transparent 60%),
    radial-gradient(40rem 28rem at -10% 30%, rgba(18, 165, 140, .12), transparent 60%);
}
.hero-grid-bg {
  position: absolute; inset: 0; z-index: -1;
  background-image:
    linear-gradient(rgba(16,28,44,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16,28,44,.045) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(70% 60% at 50% 30%, #000 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(70% 60% at 50% 30%, #000 30%, transparent 100%);
}

.hero-inner { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
@media (max-width: 960px) { .hero-inner { grid-template-columns: 1fr; } }

.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--bg-alt); border: 1px solid var(--line);
  padding: .45rem 1rem; border-radius: 999px;
  font-size: .84rem; font-weight: 500; color: var(--ink-soft);
  box-shadow: var(--shadow);
  margin-bottom: 1.4rem;
}
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: #12a58c; box-shadow: 0 0 0 4px rgba(18,165,140,.18); }

.hero h1 { font-size: var(--fs-hero); font-weight: 700; margin-bottom: 1.3rem; }
.hero-sub { font-size: clamp(1.05rem, 1.4vw, 1.25rem); color: var(--muted); max-width: 34rem; margin-bottom: 2.2rem; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: .9rem; margin-bottom: 2.4rem; }

.hero-props { display: flex; flex-wrap: wrap; gap: 1.4rem 2.2rem; }
.hero-props li { display: flex; align-items: center; gap: .55rem; font-size: .92rem; color: var(--ink-soft); font-weight: 500; }
.hero-props svg { width: 18px; height: 18px; color: var(--teal); flex-shrink: 0; }

/* Dashboard mock w hero */
.hero-visual { position: relative; }
.dash-card {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 1.4rem;
  transform: rotate(1.2deg);
}
.dash-card svg { width: 100%; height: auto; }
.float-chip {
  position: absolute; z-index: 2;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  padding: .7rem 1rem;
  display: flex; align-items: center; gap: .6rem;
  font-size: .82rem; font-weight: 600; font-family: var(--font-head);
  animation: floaty 5s ease-in-out infinite;
}
.float-chip .ic { width: 30px; height: 30px; border-radius: 9px; display: grid; place-items: center; color: #fff; flex-shrink: 0; }
.float-chip small { display: block; font-family: var(--font-body); font-weight: 400; color: var(--muted); font-size: .72rem; }
.chip-1 { top: -1.4rem; left: -1.2rem; animation-delay: 0s; }
.chip-2 { bottom: -1.2rem; right: -.8rem; animation-delay: 2.5s; }
@media (max-width: 960px) {
  .chip-1 { left: 0; }
  .chip-2 { right: 0; }
}
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}

/* ---------- Problem ---------- */
.problem-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
@media (max-width: 900px) { .problem-wrap { grid-template-columns: 1fr; } }
.problem-list { display: grid; gap: 1rem; }
.problem-item {
  display: flex; gap: .9rem; align-items: flex-start;
  background: var(--bg-alt); border: 1px solid var(--line);
  border-radius: var(--radius-sm); padding: 1.05rem 1.2rem;
  transition: transform .25s ease, box-shadow .25s ease;
}
.problem-item:hover { transform: translateX(6px); box-shadow: var(--shadow); }
.problem-item svg { width: 21px; height: 21px; color: #d1495b; flex-shrink: 0; margin-top: .15rem; }
.problem-item p { color: var(--ink-soft); font-size: .97rem; }
.problem-punch {
  font-family: var(--font-head); font-size: clamp(1.25rem, 2vw, 1.55rem);
  font-weight: 600; line-height: 1.4;
  padding-left: 1.4rem; border-left: 4px solid; border-image: var(--grad) 1;
  margin-top: 1.8rem;
}

/* ---------- Karty usług ---------- */
.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
@media (max-width: 1000px) { .cards-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .cards-grid { grid-template-columns: 1fr; } }

.card {
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.8rem 1.6rem;
  position: relative;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  display: flex; flex-direction: column; gap: .8rem;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(14,124,107,.35); }
.card-icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: grid; place-items: center;
  background: var(--teal-light); color: var(--teal);
  margin-bottom: .4rem;
}
.card-icon svg { width: 26px; height: 26px; }
.card h3 { font-size: var(--fs-h3); }
.card p { color: var(--muted); font-size: .95rem; flex-grow: 1; }
.card-link { font-weight: 600; font-size: .9rem; display: inline-flex; align-items: center; gap: .35rem; }
.card-link svg { width: 15px; height: 15px; transition: transform .2s ease; }
.card-link:hover svg { transform: translateX(3px); }

/* ---------- Dla kogo ---------- */
.audience-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; margin-top: 2.5rem; }
@media (max-width: 1000px) { .audience-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .audience-grid { grid-template-columns: 1fr; } }
.audience-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 1.6rem 1.4rem;
  transition: background .3s ease, transform .3s ease;
}
.audience-card:hover { background: rgba(255,255,255,.09); transform: translateY(-4px); }
.audience-card .emoji { font-size: 1.9rem; margin-bottom: .8rem; display: block; }
.audience-card h3 { font-size: 1.05rem; margin-bottom: .45rem; }
.audience-card p { font-size: .88rem; }

/* ---------- Proces / kroki ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; counter-reset: step; }
@media (max-width: 1000px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }
.step {
  background: var(--bg-alt); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.7rem 1.5rem;
  position: relative; overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease;
}
.step:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.step-num {
  font-family: var(--font-head); font-weight: 700;
  font-size: 3.2rem; line-height: 1;
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: .9; margin-bottom: .9rem; display: block;
}
.step h3 { font-size: 1.12rem; margin-bottom: .5rem; }
.step p { color: var(--muted); font-size: .92rem; }
.steps-note {
  margin-top: 2.2rem; text-align: center; color: var(--ink-soft);
  background: var(--teal-light); border-radius: var(--radius-sm);
  padding: 1rem 1.4rem; font-size: .95rem;
}
.steps-note strong { color: var(--teal-dark); }

/* Proces szczegółowy (podstrona) */
.process-list { display: grid; gap: 1.6rem; max-width: 820px; }
.process-item {
  display: grid; grid-template-columns: 74px 1fr; gap: 1.4rem;
  background: var(--bg-alt); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.8rem;
  transition: box-shadow .3s ease;
}
.process-item:hover { box-shadow: var(--shadow-lg); }
@media (max-width: 560px) { .process-item { grid-template-columns: 1fr; } }
.process-num {
  width: 62px; height: 62px; border-radius: 16px;
  background: var(--grad); color: #fff;
  display: grid; place-items: center;
  font-family: var(--font-head); font-weight: 700; font-size: 1.5rem;
  box-shadow: 0 8px 20px rgba(14,124,107,.3);
}
.process-item h3 { font-size: 1.25rem; margin-bottom: .55rem; }
.process-item p { color: var(--ink-soft); font-size: .97rem; }
.process-effect {
  margin-top: .9rem; padding: .65rem 1rem;
  background: var(--teal-light); border-radius: 10px;
  font-size: .9rem; color: var(--teal-dark);
}
.process-effect strong { font-weight: 600; }

/* ---------- Kompetencje / zaufanie ---------- */
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
@media (max-width: 900px) { .trust-grid { grid-template-columns: 1fr; } }
.trust-card {
  background: var(--bg-alt); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.7rem 1.5rem;
}
.trust-card svg { width: 34px; height: 34px; color: var(--teal); margin-bottom: 1rem; }
.trust-card h3 { font-size: 1.08rem; margin-bottom: .5rem; }
.trust-card p { color: var(--muted); font-size: .92rem; }

.tools-strip {
  margin-top: 2.6rem;
  display: flex; flex-wrap: wrap; gap: .7rem; justify-content: center;
}
.tool-pill {
  padding: .5rem 1.1rem; border-radius: 999px;
  background: var(--bg-alt); border: 1px solid var(--line);
  font-size: .88rem; font-weight: 500; color: var(--ink-soft);
  font-family: var(--font-head);
  transition: border-color .25s ease, color .25s ease, transform .25s ease;
}
.tool-pill:hover { border-color: var(--teal); color: var(--teal); transform: translateY(-2px); }

/* ---------- CTA banner ---------- */
.cta-banner {
  position: relative; overflow: hidden;
  background: #0f1b2c;
  border-radius: calc(var(--radius) + 6px);
  padding: clamp(2.6rem, 6vw, 4.5rem);
  text-align: center; color: #fff;
}
.cta-banner::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(34rem 20rem at 15% 110%, rgba(18,165,140,.28), transparent 60%),
    radial-gradient(30rem 18rem at 90% -20%, rgba(79,93,211,.3), transparent 60%);
}
.cta-banner > * { position: relative; }
.cta-banner h2 { font-size: var(--fs-h2); margin-bottom: 1rem; }
.cta-banner p { color: #b8c2cf; max-width: 34rem; margin: 0 auto 2rem; }

/* ---------- Strony usług ---------- */
.page-hero {
  padding-top: clamp(7.5rem, 14vw, 10rem);
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(38rem 22rem at 80% -20%, rgba(18,165,140,.1), transparent 60%);
}
.page-hero h1 { font-size: clamp(2.1rem, 4.4vw, 3.3rem); margin-bottom: 1rem; }
.page-hero .lead { color: var(--muted); font-size: 1.12rem; max-width: 44rem; }

.service-block {
  display: grid; grid-template-columns: 1fr; gap: 0;
  background: var(--bg-alt); border: 1px solid var(--line);
  border-radius: var(--radius); padding: clamp(1.6rem, 3.5vw, 2.6rem);
  margin-bottom: 1.6rem;
  transition: box-shadow .3s ease;
  scroll-margin-top: 100px;
}
.service-block:hover { box-shadow: var(--shadow-lg); }
.service-head { display: flex; align-items: flex-start; gap: 1.1rem; margin-bottom: 1.2rem; flex-wrap: wrap; }
.service-head .card-icon { margin-bottom: 0; }
.service-head h2 { font-size: clamp(1.35rem, 2.4vw, 1.75rem); }
.service-tagline { color: var(--muted); font-size: .95rem; margin-top: .2rem; }
.service-body { display: grid; grid-template-columns: 1.5fr 1fr; gap: 2rem; }
@media (max-width: 800px) { .service-body { grid-template-columns: 1fr; } }
.service-body h4 { font-size: .85rem; text-transform: uppercase; letter-spacing: .1em; color: var(--teal); margin-bottom: .5rem; margin-top: 1.1rem; }
.service-body h4:first-child { margin-top: 0; }
.service-body p { color: var(--ink-soft); font-size: .96rem; }
.service-meta {
  background: var(--bg); border-radius: var(--radius-sm);
  padding: 1.4rem; height: fit-content;
  border: 1px solid var(--line);
}
.service-meta div + div { margin-top: 1.1rem; padding-top: 1.1rem; border-top: 1px dashed var(--line); }
.service-meta .label { font-size: .78rem; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); margin-bottom: .25rem; }
.service-meta .value { font-family: var(--font-head); font-weight: 600; font-size: 1.05rem; }
.service-meta .value.price { color: var(--teal); }

/* ---------- Cennik ---------- */
.price-table-wrap { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--line); background: var(--bg-alt); box-shadow: var(--shadow); }
table.price-table { width: 100%; border-collapse: collapse; min-width: 560px; }
.price-table th, .price-table td { padding: 1.05rem 1.4rem; text-align: left; }
.price-table thead th {
  font-family: var(--font-head); font-size: .82rem; letter-spacing: .1em; text-transform: uppercase;
  background: #0f1b2c; color: #fff;
}
.price-table tbody tr { border-top: 1px solid var(--line); transition: background .2s ease; }
.price-table tbody tr:hover { background: var(--teal-light); }
.price-table td.price { font-family: var(--font-head); font-weight: 600; color: var(--teal-dark); white-space: nowrap; }
.price-table td.time { color: var(--muted); font-size: .92rem; white-space: nowrap; }

.price-note {
  margin-top: 1.4rem;
  display: flex; gap: .8rem; align-items: flex-start;
  background: var(--teal-light); border-radius: var(--radius-sm);
  padding: 1.1rem 1.3rem; font-size: .93rem; color: var(--teal-dark);
}
.price-note svg { width: 20px; height: 20px; flex-shrink: 0; margin-top: .1rem; }

.hourly-card {
  background: var(--grad); color: #fff;
  border-radius: var(--radius); padding: 2rem;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.2rem;
}
.hourly-card h3 { font-size: 1.3rem; margin-bottom: .3rem; }
.hourly-card p { opacity: .9; font-size: .93rem; }
.hourly-rate { font-family: var(--font-head); font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 700; white-space: nowrap; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 780px; margin-inline: auto; display: grid; gap: .9rem; }
.faq-item {
  background: var(--bg-alt); border: 1px solid var(--line);
  border-radius: var(--radius-sm); overflow: hidden;
  transition: box-shadow .3s ease, border-color .3s ease;
}
.faq-item[open] { box-shadow: var(--shadow); border-color: rgba(14,124,107,.35); }
.faq-item summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.15rem 1.4rem;
  font-family: var(--font-head); font-weight: 600; font-size: 1.02rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .faq-icon {
  width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0;
  display: grid; place-items: center;
  background: var(--teal-light); color: var(--teal);
  transition: transform .3s ease, background .3s ease, color .3s ease;
}
.faq-item summary .faq-icon svg { width: 14px; height: 14px; }
.faq-item[open] summary .faq-icon { transform: rotate(45deg); background: var(--teal); color: #fff; }
.faq-item .faq-body { padding: 0 1.4rem 1.3rem; color: var(--ink-soft); font-size: .96rem; }

/* ---------- O mnie ---------- */
.about-hero { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
@media (max-width: 900px) { .about-hero { grid-template-columns: 1fr; } }
.about-photo {
  position: relative;
  border-radius: calc(var(--radius) + 6px);
  overflow: hidden;
  aspect-ratio: 4 / 4.6;
  background: var(--grad-soft);
  border: 1px solid var(--line);
  display: grid; place-items: center;
}
.about-photo .photo-placeholder { text-align: center; color: var(--muted); padding: 2rem; }
.about-photo .photo-placeholder svg { width: 84px; height: 84px; margin: 0 auto 1rem; color: var(--teal); opacity: .55; }
.about-photo .photo-placeholder span { font-size: .85rem; }
.quali-list { display: grid; gap: 1rem; max-width: 820px; }
.quali-item {
  display: flex; gap: 1rem; align-items: flex-start;
  background: var(--bg-alt); border: 1px solid var(--line);
  border-radius: var(--radius-sm); padding: 1.3rem 1.4rem;
}
.quali-item svg { width: 26px; height: 26px; color: var(--teal); flex-shrink: 0; margin-top: .1rem; }
.quali-item h3 { font-size: 1.05rem; margin-bottom: .3rem; }
.quali-item p { color: var(--muted); font-size: .92rem; }
.values-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.2rem; }
@media (max-width: 700px) { .values-grid { grid-template-columns: 1fr; } }

/* ---------- Kontakt ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: clamp(2rem, 5vw, 4rem); }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-channels { display: grid; gap: 1rem; margin-top: 1.8rem; }
.contact-channel {
  display: flex; align-items: center; gap: 1rem;
  background: var(--bg-alt); border: 1px solid var(--line);
  border-radius: var(--radius-sm); padding: 1.1rem 1.3rem;
  color: var(--ink); font-weight: 500;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.contact-channel:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: rgba(14,124,107,.35); color: var(--ink); }
.contact-channel .ic {
  width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0;
  display: grid; place-items: center;
  background: var(--teal-light); color: var(--teal);
}
.contact-channel .ic svg { width: 21px; height: 21px; }
.contact-channel small { display: block; color: var(--muted); font-weight: 400; font-size: .8rem; }

.contact-form {
  background: var(--bg-alt); border: 1px solid var(--line);
  border-radius: var(--radius); padding: clamp(1.6rem, 3vw, 2.4rem);
  box-shadow: var(--shadow);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }
.form-group { margin-bottom: 1.1rem; }
.form-group label { display: block; font-weight: 600; font-size: .88rem; margin-bottom: .4rem; font-family: var(--font-head); }
.form-group label .opt { color: var(--muted); font-weight: 400; }
.form-group input, .form-group textarea {
  width: 100%; padding: .85rem 1rem;
  border: 1.5px solid var(--line); border-radius: 10px;
  font: inherit; font-size: .95rem; color: var(--ink);
  background: var(--bg);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.form-group input:focus, .form-group textarea:focus {
  outline: none; border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(14,124,107,.12);
  background: #fff;
}
.form-group textarea { min-height: 140px; resize: vertical; }
.form-consent { display: flex; gap: .6rem; align-items: flex-start; font-size: .82rem; color: var(--muted); margin-bottom: 1.3rem; }
.form-consent input { margin-top: .25rem; accent-color: var(--teal); }
.form-status { margin-top: 1rem; font-size: .9rem; font-weight: 500; display: none; }
.form-status.ok { display: block; color: var(--teal-dark); }
.form-status.err { display: block; color: #d1495b; }

.map-note {
  margin-top: 2rem; display: flex; gap: .9rem; align-items: flex-start;
  color: var(--muted); font-size: .93rem;
}
.map-note svg { width: 20px; height: 20px; color: var(--teal); flex-shrink: 0; margin-top: .15rem; }

/* ---------- Dokumenty prawne ---------- */
.legal { max-width: 800px; }
.legal h2 { font-size: 1.4rem; margin: 2.4rem 0 .8rem; }
.legal h3 { font-size: 1.1rem; margin: 1.6rem 0 .6rem; }
.legal p, .legal li { color: var(--ink-soft); font-size: .96rem; margin-bottom: .7rem; }
.legal ul, .legal ol { padding-left: 1.4rem; margin-bottom: 1rem; }
.legal ul { list-style: disc; }
.legal ol { list-style: decimal; }
.legal .legal-updated { color: var(--muted); font-size: .85rem; margin-bottom: 2rem; }
.legal table { width: 100%; border-collapse: collapse; margin: 1rem 0 1.5rem; font-size: .9rem; }
.legal table th, .legal table td { border: 1px solid var(--line); padding: .7rem .9rem; text-align: left; color: var(--ink-soft); }
.legal table th { background: var(--bg-alt); font-family: var(--font-head); font-size: .82rem; }

/* ---------- Stopka ---------- */
.site-footer {
  background: #0f1b2c; color: #93a1b3;
  padding: clamp(3rem, 6vw, 4.5rem) 0 2rem;
  font-size: .92rem;
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.4rem; margin-bottom: 3rem;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand .nav-logo { color: #fff; margin-bottom: 1rem; }
.footer-brand p { max-width: 22rem; font-size: .9rem; }
.footer-col h4 { color: #fff; font-size: .95rem; margin-bottom: 1rem; }
.footer-col ul { display: grid; gap: .55rem; }
.footer-col a { color: #93a1b3; transition: color .2s ease; }
.footer-col a:hover { color: #3fd0b3; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 1.6rem;
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem;
  font-size: .84rem;
}
.footer-bottom a { color: #93a1b3; }
.footer-bottom a:hover { color: #3fd0b3; }

/* ---------- Cookie banner ---------- */
.cookie-banner {
  position: fixed; z-index: 200;
  bottom: 1.2rem; left: 1.2rem; right: 1.2rem;
  max-width: 460px;
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 1.4rem;
  transform: translateY(140%); opacity: 0;
  transition: transform .45s cubic-bezier(.2,.9,.3,1), opacity .45s ease;
}
.cookie-banner.visible { transform: translateY(0); opacity: 1; }
.cookie-banner h3 { font-size: 1rem; display: flex; align-items: center; gap: .5rem; margin-bottom: .5rem; }
.cookie-banner p { font-size: .84rem; color: var(--muted); margin-bottom: 1rem; }
.cookie-actions { display: flex; flex-wrap: wrap; gap: .6rem; }
.cookie-actions .btn { padding: .6rem 1.2rem; font-size: .85rem; }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: .1s; }
.reveal-d2 { transition-delay: .2s; }
.reveal-d3 { transition-delay: .3s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- Skip link ---------- */
.skip-link {
  position: absolute; top: -60px; left: 1rem; z-index: 999;
  background: var(--ink); color: #fff; padding: .7rem 1.2rem; border-radius: 0 0 10px 10px;
  transition: top .2s ease;
}
.skip-link:focus { top: 0; color: #fff; }
