/* =================================================================
   AZT Soft — arkusz stylów
   Mobile-first, responsywny. System projektowy oparty o markę (fiolet z logo).
   ================================================================= */

/* ---------- 1. Zmienne / design tokens ---------- */
:root {
  /* Kolory marki */
  --brand:        #7c1fa6;   /* fiolet z logo AZT */
  --brand-600:    #6a1690;
  --brand-700:    #57117a;
  --brand-300:    #b266d6;
  --brand-50:     #f6eefc;   /* tint tła */
  --accent:       #c026d3;   /* magenta — koniec gradientu */
  --accent-warm:  #f97316;   /* ciepły akcent dla wyróżnień */

  /* Neutralne */
  --ink:          #1b1430;   /* tekst główny */
  --ink-soft:     #4b4360;   /* tekst drugorzędny */
  --muted:        #6b6480;   /* opisy */
  --line:         #e8e3f0;   /* obramowania */
  --surface:      #ffffff;
  --surface-2:    #f7f5fb;   /* delikatne tło sekcji */
  --surface-3:    #efeaf6;

  /* Stopka / ciemne tło */
  --dark:         #1a1330;
  --dark-2:       #241a40;

  /* Typografia */
  --font: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;

  /* Skala / odstępy */
  --container: 1180px;
  --radius:    14px;
  --radius-sm: 10px;
  --radius-lg: 22px;

  /* Cienie */
  --shadow-sm: 0 1px 2px rgba(27, 20, 48, .06), 0 1px 3px rgba(27, 20, 48, .08);
  --shadow:    0 8px 24px rgba(27, 20, 48, .09);
  --shadow-lg: 0 20px 48px rgba(27, 20, 48, .14);

  /* Gradient marki */
  --gradient: linear-gradient(135deg, var(--brand) 0%, var(--accent) 100%);

  /* Wysokość nagłówka */
  --header-h: 72px;
}

/* ---------- 2. Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--surface);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: var(--brand); text-decoration: none; transition: color .15s ease; }
a:hover { color: var(--brand-700); }
ul { padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; }
:focus-visible { outline: 3px solid var(--brand-300); outline-offset: 2px; border-radius: 4px; }

/* ---------- 3. Typografia ---------- */
h1, h2, h3, h4 { line-height: 1.18; font-weight: 800; letter-spacing: -.02em; color: var(--ink); overflow-wrap: break-word; }
h1 { font-size: clamp(1.75rem, 5.2vw, 3.3rem); }
h2 { font-size: clamp(1.6rem, 3.8vw, 2.4rem); }
h3 { font-size: clamp(1.15rem, 2.2vw, 1.4rem); }
p { color: var(--ink-soft); }
.lead { font-size: clamp(1.05rem, 2.2vw, 1.25rem); color: var(--ink-soft); }

/* ---------- 4. Layout ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 20px; }
.section { padding-block: clamp(56px, 9vw, 104px); }
.section--tint { background: var(--surface-2); }
.section--dark { background: var(--dark); color: #efeaf6; }
.section--dark h2, .section--dark h3 { color: #fff; }
.section--dark p { color: #c9c0dd; }

.section-head { max-width: 760px; margin-bottom: clamp(32px, 5vw, 56px); }
.section-head.center { margin-inline: auto; text-align: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .8rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--brand); background: var(--brand-50);
  padding: 6px 14px; border-radius: 100px; margin-bottom: 18px;
}
.section--dark .eyebrow { color: #e9d5f5; background: rgba(192, 38, 211, .18); }
.section-head p { margin-top: 14px; }

/* Grid pomocniczy */
.grid { display: grid; gap: 22px; }
@media (min-width: 640px)  { .grid.cols-2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px)  { .grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
                             .grid.cols-4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .grid.cols-4 { grid-template-columns: repeat(4, 1fr); } }

/* ---------- 5. Przyciski ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-weight: 700; font-size: .98rem; line-height: 1;
  padding: 14px 24px; border-radius: 100px; border: 2px solid transparent;
  cursor: pointer; transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  white-space: normal; text-align: center; max-width: 100%;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--gradient); color: #fff; box-shadow: 0 8px 20px rgba(124, 31, 166, .28); }
.btn-primary:hover { color: #fff; transform: translateY(-2px); box-shadow: 0 12px 26px rgba(124, 31, 166, .38); }
.btn-outline { background: transparent; color: var(--brand); border-color: var(--line); }
.btn-outline:hover { color: var(--brand-700); border-color: var(--brand-300); background: var(--brand-50); transform: translateY(-2px); }
.btn-light { background: #fff; color: var(--brand); }
.btn-light:hover { color: var(--brand-700); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-ghost { background: transparent; color: var(--ink); border-color: transparent; padding-inline: 6px; }
.btn-ghost:hover { color: var(--brand); }
.btn-lg { padding: 17px 30px; font-size: 1.05rem; }
.btn-block { width: 100%; }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---------- 6. Nagłówek / nawigacja ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, .82);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.site-header.scrolled { border-bottom-color: var(--line); box-shadow: var(--shadow-sm); }
.nav { display: flex; align-items: center; justify-content: space-between; height: var(--header-h); gap: 18px; }
.brand { display: inline-flex; align-items: center; gap: 11px; font-weight: 800; font-size: 1.18rem; color: var(--ink); letter-spacing: -.02em; }
.brand:hover { color: var(--ink); }
.brand img { width: 36px; height: 36px; }
.brand span b { color: var(--brand); }

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a.navlink {
  color: var(--ink-soft); font-weight: 600; font-size: .96rem;
  padding: 9px 14px; border-radius: 100px; transition: color .15s ease, background .15s ease;
}
.nav-links a.navlink:hover { color: var(--brand); background: var(--brand-50); }
.nav-links a.navlink.active { color: var(--brand); }
.nav-cta { display: flex; align-items: center; gap: 10px; }

/* Hamburger */
.nav-toggle {
  display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 44px; height: 44px; padding: 10px; background: transparent; border: 1px solid var(--line);
  border-radius: 12px;
}
.nav-toggle span { display: block; height: 2px; width: 100%; background: var(--ink); border-radius: 2px; transition: transform .25s ease, opacity .2s 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); }

/* Mobile: chowamy poziome menu, pokazujemy hamburger */
@media (max-width: 899px) {
  .nav-toggle { display: inline-flex; }
  .nav-menu {
    position: fixed; inset: var(--header-h) 0 auto 0;
    background: #fff; border-bottom: 1px solid var(--line); box-shadow: var(--shadow-lg);
    flex-direction: column; align-items: stretch; gap: 0;
    padding: 14px 20px 22px; transform: translateY(-130%); transition: transform .28s ease; visibility: hidden;
    max-height: calc(100dvh - var(--header-h)); overflow-y: auto;
  }
  .nav-menu.open { transform: translateY(0); visibility: visible; }
  .nav-links { flex-direction: column; align-items: stretch; gap: 2px; }
  .nav-links a.navlink { padding: 13px 14px; font-size: 1.05rem; border-radius: 12px; }
  .nav-cta { flex-direction: column; align-items: stretch; margin-top: 14px; padding-top: 16px; border-top: 1px solid var(--line); }
  .nav-cta .btn { width: 100%; }
}
@media (min-width: 900px) {
  .nav-toggle { display: none; }
  .nav-menu { display: flex; align-items: center; gap: 18px; }
}

/* ---------- 7. Hero ---------- */
.hero { position: relative; overflow: hidden; background: var(--surface-2); }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(60% 80% at 85% 0%, rgba(192, 38, 211, .12), transparent 60%),
    radial-gradient(50% 70% at 0% 100%, rgba(124, 31, 166, .12), transparent 60%);
}
.hero .container { position: relative; z-index: 1; }
.hero-grid { display: grid; gap: 38px; align-items: center; padding-block: clamp(48px, 8vw, 88px); }
@media (min-width: 940px) { .hero-grid { grid-template-columns: 1.05fr .95fr; gap: 56px; } }
.hero h1 { margin-bottom: 20px; }
.hero h1 .hl { background: var(--gradient); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero .lead { margin-bottom: 30px; max-width: 560px; }
.hero-points { display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 28px; }
.hero-points li { display: inline-flex; align-items: center; gap: 9px; font-weight: 600; font-size: .95rem; color: var(--ink-soft); }
.hero-points svg { width: 20px; height: 20px; color: var(--brand); flex: none; }

.hero-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); padding: 26px;
}
.hero-card h3 { margin-bottom: 6px; }
.hero-card .muted { color: var(--muted); font-size: .92rem; margin-bottom: 20px; }
.hero-stat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; text-align: center; }
.hero-stat .num { font-size: clamp(1.5rem, 4vw, 2rem); font-weight: 800; background: var(--gradient); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-stat .lbl { font-size: .8rem; color: var(--muted); font-weight: 600; }

/* ---------- 7b. Hero wg struktury: video + opinie + CTA ---------- */
.hero-head { max-width: 840px; margin-inline: auto; text-align: center; margin-bottom: clamp(28px, 4vw, 40px); }
.hero-head h1 { margin-bottom: 16px; }
.hero-head .hl { background: var(--gradient); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-head .lead { max-width: 640px; margin-inline: auto; }

.hero-video {
  position: relative; max-width: 940px; margin: 0 auto; aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg);
  border: 1px solid var(--line); background: var(--dark-2);
}
.hero-video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-facade {
  position: absolute; inset: 0; width: 100%; height: 100%; border: 0; cursor: pointer;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px;
  background: linear-gradient(135deg, #241a40 0%, #4a1d63 55%, #7c1fa6 100%); color: #fff; padding: 20px;
}
.video-facade::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 50% 42%, rgba(192,38,211,.4), transparent 62%); }
.video-facade .poster { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .35; }
.video-play-btn {
  position: relative; z-index: 2; width: clamp(64px, 12vw, 88px); height: clamp(64px, 12vw, 88px);
  border-radius: 50%; background: rgba(255,255,255,.96); display: grid; place-items: center;
  box-shadow: 0 12px 34px rgba(0,0,0,.35); transition: transform .2s ease;
}
.video-facade:hover .video-play-btn { transform: scale(1.08); }
.video-play-btn svg { width: clamp(26px, 5vw, 34px); height: clamp(26px, 5vw, 34px); color: var(--brand); margin-left: 4px; }
.video-cap { position: relative; z-index: 2; font-weight: 700; font-size: clamp(1rem, 2.4vw, 1.2rem); text-align: center; max-width: 80%; }

/* Opinie pod video */
.hero-opinions { display: grid; gap: 16px; margin-top: clamp(28px, 4vw, 38px); }
@media (min-width: 760px) { .hero-opinions { grid-template-columns: repeat(3, 1fr); } }
.op { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; }
.op .stars { color: var(--accent-warm); letter-spacing: 2px; margin-bottom: 10px; font-size: .92rem; }
.op p { color: var(--ink); font-size: .96rem; margin-bottom: 14px; }
.op .who { margin-top: auto; }
.op .nm { font-weight: 700; color: var(--ink); font-size: .92rem; }
.op .role { color: var(--muted); font-size: .82rem; }

/* Osobiste CTA */
.hero-cta { margin-top: clamp(28px, 4vw, 40px); background: var(--gradient); color: #fff; border-radius: var(--radius-lg); padding: clamp(28px, 5vw, 46px); text-align: center; box-shadow: var(--shadow-lg); }
.hero-cta .lab { font-size: .82rem; text-transform: uppercase; letter-spacing: .1em; opacity: .92; font-weight: 700; }
.hero-cta .person { font-size: clamp(1.5rem, 4.5vw, 2.1rem); font-weight: 800; letter-spacing: -.02em; margin: 6px 0 20px; }
.hero-cta .btn-row { justify-content: center; }
.btn-outline-white { background: transparent; color: #fff; border-color: rgba(255,255,255,.65); }
.btn-outline-white:hover { background: #fff; color: var(--brand); border-color: #fff; transform: translateY(-2px); }

/* ---------- 8. Karty / cechy ---------- */
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 26px; box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  height: 100%;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--brand-300); }
.card .ico {
  width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center;
  background: var(--brand-50); color: var(--brand); margin-bottom: 18px;
}
.card .ico svg { width: 26px; height: 26px; }
.card h3 { margin-bottom: 10px; }
.card p { font-size: .97rem; }
.card .more { display: inline-flex; align-items: center; gap: 6px; margin-top: 16px; font-weight: 700; font-size: .92rem; }
.card .more svg { width: 16px; height: 16px; transition: transform .15s ease; }
.card:hover .more svg { transform: translateX(3px); }

/* ---------- 9. Logotypy partnerów ---------- */
.logos { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; align-items: center; }
@media (min-width: 720px) { .logos { grid-template-columns: repeat(4, 1fr); } }
.logos .logo-box {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm);
  display: grid; place-items: center; padding: 22px; min-height: 96px;
}
.logos .logo-box img { max-height: 50px; width: auto; opacity: .92; filter: grayscale(15%); transition: filter .2s ease, opacity .2s ease; }
.logos .logo-box:hover img { filter: none; opacity: 1; }

/* ---------- 9b. Pas klientów (Zaufali nam) ---------- */
.clients-strip { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.client-badge {
  display: inline-flex; align-items: center;
  background: #fff; border: 1px solid var(--line); border-radius: 100px;
  padding: 12px 22px; font-weight: 700; color: var(--ink-soft); font-size: .95rem;
  box-shadow: var(--shadow-sm);
}

/* ---------- 10. Split (obraz + tekst) ---------- */
.split { display: grid; gap: 30px; align-items: center; }
@media (min-width: 880px) { .split { grid-template-columns: 1fr 1fr; gap: 52px; } .split.reverse .split-media { order: 2; } }
.split-media { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 36px; box-shadow: var(--shadow-sm); display: grid; place-items: center; }
.split-media img { max-height: 220px; width: auto; }
.split h2 { margin-bottom: 16px; }
.split .check-list { margin-top: 20px; display: grid; gap: 12px; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; color: var(--ink-soft); }
.check-list svg { width: 22px; height: 22px; color: var(--brand); flex: none; margin-top: 1px; }
.check-list b { color: var(--ink); }

/* ---------- 11. Cennik ---------- */
.price-grid { display: grid; gap: 22px; }
@media (min-width: 860px) { .price-grid { grid-template-columns: repeat(3, 1fr); align-items: start; } }
.price {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 30px 26px; box-shadow: var(--shadow-sm); position: relative; height: 100%;
  display: flex; flex-direction: column;
}
.price.featured { border-color: var(--brand); box-shadow: var(--shadow-lg); padding-top: 38px; }
.price .tag { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--gradient); color: #fff; font-size: .72rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; padding: 6px 16px; border-radius: 100px; white-space: nowrap; }
.price .name { font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .04em; font-size: .85rem; }
.price .amount { margin: 14px 0 4px; font-size: clamp(2rem, 5vw, 2.6rem); font-weight: 800; color: var(--ink); }
.price .amount small { font-size: 1rem; font-weight: 600; color: var(--muted); }
.price .net { color: var(--muted); font-size: .9rem; margin-bottom: 22px; }
.price ul { display: grid; gap: 12px; margin-bottom: 26px; }
.price ul li { display: flex; gap: 10px; align-items: flex-start; font-size: .95rem; color: var(--ink-soft); }
.price ul svg { width: 19px; height: 19px; color: var(--brand); flex: none; margin-top: 2px; }
.price .btn { margin-top: auto; }

/* ---------- 12. Referencje ---------- */
.quote-grid { display: grid; gap: 22px; }
@media (min-width: 800px) { .quote-grid { grid-template-columns: repeat(3, 1fr); } }
.quote { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow-sm); height: 100%; display: flex; flex-direction: column; }
.quote .stars { color: var(--accent-warm); letter-spacing: 2px; margin-bottom: 12px; }
.quote p { font-size: 1rem; color: var(--ink); margin-bottom: 18px; }
.quote .who { margin-top: auto; }
.quote .who .nm { font-weight: 700; color: var(--ink); }
.quote .who .role { font-size: .88rem; color: var(--muted); }

/* ---------- 13. Pasek CTA ---------- */
.cta-band { background: var(--gradient); border-radius: var(--radius-lg); padding: clamp(34px, 6vw, 60px); color: #fff; text-align: center; box-shadow: var(--shadow-lg); }
.cta-band h2 { color: #fff; margin-bottom: 14px; }
.cta-band p { color: rgba(255, 255, 255, .9); max-width: 620px; margin-inline: auto; margin-bottom: 28px; }

/* ---------- 14. FAQ (accordion) ---------- */
.faq { max-width: 800px; margin-inline: auto; display: grid; gap: 14px; }
.faq details { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 4px 22px; box-shadow: var(--shadow-sm); transition: border-color .2s ease; }
.faq details[open] { border-color: var(--brand-300); }
.faq summary { list-style: none; cursor: pointer; font-weight: 700; color: var(--ink); padding: 18px 0; display: flex; justify-content: space-between; gap: 16px; align-items: center; font-size: 1.04rem; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary .pm { flex: none; width: 26px; height: 26px; border-radius: 50%; background: var(--brand-50); color: var(--brand); display: grid; place-items: center; font-size: 1.2rem; line-height: 1; transition: transform .2s ease; }
.faq details[open] summary .pm { transform: rotate(45deg); }
.faq details > div { padding: 0 0 20px; color: var(--ink-soft); }

/* ---------- 15. Breadcrumb / nagłówek podstrony ---------- */
.page-hero { background: var(--surface-2); position: relative; overflow: hidden; padding-block: clamp(40px, 7vw, 72px); border-bottom: 1px solid var(--line); }
.page-hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(50% 120% at 90% 0%, rgba(192,38,211,.1), transparent 60%); }
.page-hero .container { position: relative; }
.breadcrumb { display: flex; flex-wrap: wrap; gap: 8px; font-size: .88rem; color: var(--muted); margin-bottom: 16px; }
.breadcrumb a { color: var(--muted); font-weight: 600; }
.breadcrumb a:hover { color: var(--brand); }
.breadcrumb span { color: var(--brand); font-weight: 600; }
.page-hero h1 { margin-bottom: 12px; }
.page-hero p { max-width: 680px; }

/* ---------- 16. Formularz ---------- */
.form-grid { display: grid; gap: 30px; }
@media (min-width: 920px) { .form-grid { grid-template-columns: 1fr 1fr; gap: 48px; } }
.field { display: grid; gap: 7px; margin-bottom: 18px; }
.field label { font-weight: 600; font-size: .92rem; color: var(--ink); }
.field input, .field textarea {
  font-family: inherit; font-size: 1rem; color: var(--ink);
  padding: 13px 15px; border: 1px solid var(--line); border-radius: 12px; background: #fff;
  transition: border-color .15s ease, box-shadow .15s ease; width: 100%;
}
.field textarea { resize: vertical; min-height: 130px; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 4px var(--brand-50); }
.form-note { font-size: .82rem; color: var(--muted); margin-top: 6px; }

.contact-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow-sm); margin-bottom: 18px; }
.contact-row { display: flex; gap: 14px; align-items: flex-start; padding: 12px 0; border-bottom: 1px solid var(--line); }
.contact-row:last-child { border-bottom: none; }
.contact-row .ci { flex: none; width: 42px; height: 42px; border-radius: 12px; background: var(--brand-50); color: var(--brand); display: grid; place-items: center; }
.contact-row .ci svg { width: 21px; height: 21px; }
.contact-row .ct .k { font-size: .8rem; color: var(--muted); font-weight: 600; }
.contact-row .ct .v { font-weight: 700; color: var(--ink); }
.contact-row .ct a { font-weight: 700; }

.map-embed { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.map-embed iframe { display: block; width: 100%; height: 320px; border: 0; }

/* ---------- 17. Stopka ---------- */
.site-footer { background: var(--dark); color: #c9c0dd; padding-block: 56px 28px; }
.footer-grid { display: grid; gap: 36px; }
@media (min-width: 760px) { .footer-grid { grid-template-columns: 1.6fr 1fr 1fr 1.2fr; } }
.site-footer .brand { color: #fff; margin-bottom: 14px; }
.site-footer .brand span b { color: var(--brand-300); }
.site-footer p { color: #a99cc4; font-size: .95rem; }
.footer-col h4 { color: #fff; font-size: .85rem; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 16px; }
.footer-col ul { display: grid; gap: 10px; }
.footer-col a { color: #c9c0dd; font-size: .95rem; }
.footer-col a:hover { color: #fff; }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; color: #c9c0dd; font-size: .95rem; margin-bottom: 10px; }
.footer-contact svg { width: 18px; height: 18px; color: var(--brand-300); flex: none; margin-top: 3px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 40px; padding-top: 22px; display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; align-items: center; font-size: .85rem; color: #8d80a8; }
.footer-bottom a { color: #a99cc4; }
.footer-bottom a:hover { color: #fff; }
.social { display: flex; gap: 10px; }
.social a { width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,.07); display: grid; place-items: center; color: #c9c0dd; }
.social a:hover { background: var(--brand); color: #fff; }
.social svg { width: 18px; height: 18px; }

/* ---------- 18. Reveal-on-scroll ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

/* ---------- 19. Utilities ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.skip-link { position: absolute; left: -9999px; top: 0; background: var(--brand); color: #fff; padding: 10px 16px; border-radius: 0 0 10px 0; z-index: 200; }
.skip-link:focus { left: 0; color: #fff; }
.notice { background: var(--brand-50); border: 1px solid var(--brand-300); border-radius: var(--radius); padding: 18px 22px; color: var(--brand-700); display: none; margin-bottom: 18px; }
.notice.show { display: block; }
