/* ===== Design tokens (identyfikacja GRUPA LOCA) ===== */
:root {
  --brand: #1a558f;        /* LOCA primary blue (--main-color) */
  --brand-dark: #123f6b;
  --brand-700: #16497c;
  --accent: #00a8e8;       /* LOCA cyan (znak słowny "Loca") */
  --accent-light: #5fd4f7;
  --orange: #ea7317;
  --green: #1f9867;
  --purple: #7c3aed;
  --pink: #db2777;
  --ink: #0f2540;
  --ink-2: #3a4d63;
  --muted: #6b7d92;
  --line: #e4e9f0;
  --bg: #ffffff;
  --bg-alt: #f3f7fb;
  --bg-soft: #e8f1f9;
  --bg-blue: #e6f2fa;
  --bg-cyan: #e0f6fc;
  --white: #ffffff;
  --gradient-brand: linear-gradient(135deg, var(--brand-dark) 0%, var(--brand) 45%, var(--accent) 100%);
  --gradient-hero: linear-gradient(160deg, #e8f4fc 0%, #f0f8ff 35%, #fff 70%);
  --gradient-section: linear-gradient(180deg, var(--bg-alt) 0%, #fff 100%);
  --radius: 16px;
  --radius-sm: 10px;
  --shadow-sm: 0 1px 2px rgba(18, 63, 107, .07), 0 1px 3px rgba(18, 63, 107, .06);
  --shadow-md: 0 10px 30px -12px rgba(26, 85, 143, .28);
  --shadow-lg: 0 24px 60px -20px rgba(18, 63, 107, .28);
  --container: 1180px;
  --font: "Nunito", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-body: "Open Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, .brand, .btn, .nav__link, .filter, .chip, .eyebrow, .hero__stats strong {
  font-family: var(--font);
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn--white { background: var(--white); color: var(--brand-dark); }
.btn--white:hover { box-shadow: var(--shadow-lg); }
.btn--outline-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,.6); }
.btn--outline-light:hover { background: rgba(255,255,255,.12); }
.btn--ghost { border-color: var(--accent); color: var(--brand); background: rgba(0,168,232,.08); }
.btn--ghost:hover { border-color: var(--brand); color: #fff; background: var(--gradient-brand); }

/* ===== Topbar ===== */
.topbar {
  background: var(--gradient-brand);
  color: #d4ecfa;
  font-size: 13px;
}
.topbar__inner {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 38px;
}
.topbar__sep { opacity: .5; }
.topbar__spacer { flex: 1; }
.topbar__phone { color: #fff; font-weight: 700; }
.topbar__phone:hover { color: var(--accent); }

/* ===== Header ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.9);
  backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
}
.brand { display: inline-flex; align-items: center; gap: 9px; }
.brand__logo { height: 38px; width: auto; display: block; }
.brand__sub {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--muted);
  text-transform: uppercase;
}

.nav { display: flex; align-items: center; gap: 4px; }
.nav__link {
  padding: 9px 14px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  color: var(--ink-2);
  transition: background .2s, color .2s;
}
.nav__link:hover { background: rgba(0,168,232,.12); color: var(--brand); }
.nav__link--active { background: rgba(0,168,232,.14); color: var(--brand); font-weight: 800; }
.nav__link:active,
.nav__link:focus-visible { background: rgba(26,85,143,.1); color: var(--brand); outline: none; }
.nav__login { margin-left: 8px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  padding: 8px;
  cursor: pointer;
}
.nav-toggle span {
  width: 24px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .25s, opacity .25s;
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== Hero ===== */
.hero { position: relative; overflow: hidden; background: var(--gradient-hero); }
.hero__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(700px 420px at 92% 8%, rgba(0,168,232,.28), transparent 55%),
    radial-gradient(600px 400px at 0% 20%, rgba(26,85,143,.22), transparent 50%),
    radial-gradient(400px 300px at 50% 100%, rgba(234,115,23,.08), transparent 60%);
  pointer-events: none;
}
.hero__bg::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: var(--gradient-brand);
  opacity: .85;
}
.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.35fr .9fr;
  gap: 48px;
  align-items: center;
  padding: 72px 24px 64px;
}
.badge {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(0,168,232,.15), rgba(26,85,143,.12));
  color: var(--brand-dark);
  font-weight: 700;
  font-size: 13px;
  border: 1px solid rgba(0,168,232,.35);
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0,168,232,.12);
}
.hero__title {
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -1px;
  margin: 0 0 18px;
}
.hero__title-accent {
  background: linear-gradient(120deg, var(--brand), var(--accent));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero__lead {
  font-size: 18px;
  color: var(--ink-2);
  max-width: 560px;
  margin: 0 0 28px;
}

/* Finder */
.finder { max-width: 560px; }
.finder__label {
  display: block;
  font-weight: 700;
  font-size: 14px;
  color: var(--ink);
  margin-bottom: 8px;
}
.finder__box {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: 999px;
  padding: 6px 18px;
  box-shadow: var(--shadow-sm);
  transition: border-color .2s, box-shadow .2s;
}
.finder__box:focus-within {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(0,168,232,.2);
}
.finder__icon { width: 20px; height: 20px; color: var(--accent); flex-shrink: 0; }
.finder__box input {
  flex: 1;
  border: 0;
  outline: 0;
  font-size: 16px;
  font-family: inherit;
  padding: 10px 0;
  background: transparent;
  color: var(--ink);
}
.finder__chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.chip {
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink-2);
  padding: 7px 13px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: all .18s;
}
.chip:nth-child(1) { border-color: rgba(26,85,143,.35); background: rgba(26,85,143,.06); }
.chip:nth-child(2) { border-color: rgba(234,115,23,.35); background: rgba(234,115,23,.06); }
.chip:nth-child(3) { border-color: rgba(0,168,232,.35); background: rgba(0,168,232,.08); }
.chip:nth-child(4) { border-color: rgba(124,58,237,.35); background: rgba(124,58,237,.06); }
.chip:nth-child(5) { border-color: rgba(31,152,103,.35); background: rgba(31,152,103,.06); }
.chip:hover {
  color: #fff;
  border-color: transparent;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.chip:nth-child(1):hover { background: var(--brand); }
.chip:nth-child(2):hover { background: var(--orange); }
.chip:nth-child(3):hover { background: var(--accent); }
.chip:nth-child(4):hover { background: var(--purple); }
.chip:nth-child(5):hover { background: var(--green); }

/* Hero stats */
.hero__stats {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.hero__stats li {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 20px;
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--brand);
  transition: transform .2s, box-shadow .2s;
}
.hero__stats li:nth-child(1) { border-top-color: var(--brand); }
.hero__stats li:nth-child(2) { border-top-color: var(--accent); }
.hero__stats li:nth-child(3) { border-top-color: var(--orange); }
.hero__stats li:nth-child(4) { border-top-color: var(--green); }
.hero__stats li:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.hero__stats strong {
  display: block;
  font-size: 34px;
  font-weight: 800;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
}
.hero__stats li:nth-child(2) strong {
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  -webkit-background-clip: text; background-clip: text;
}
.hero__stats li:nth-child(3) strong {
  background: linear-gradient(135deg, var(--orange), #f5a623);
  -webkit-background-clip: text; background-clip: text;
}
.hero__stats li:nth-child(4) strong {
  background: linear-gradient(135deg, var(--green), #34d399);
  -webkit-background-clip: text; background-clip: text;
}
.hero__stats span { font-size: 14px; color: var(--muted); }

/* ===== Sections ===== */
.section { padding: 84px 0; }
.section--alt { background: var(--gradient-section); }
#ekosystem.section--alt {
  background: linear-gradient(180deg, #e6f2fa 0%, #f3f7fb 50%, #fff 100%);
}
#opinie.section--alt {
  background: linear-gradient(180deg, #f0f9ff 0%, #e8f4fc 100%);
}
#realizacje { background: linear-gradient(180deg, #fff 0%, var(--bg-blue) 100%); }
.section__head { text-align: center; max-width: 680px; margin: 0 auto 44px; }
.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 12px;
  padding: 6px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(26,85,143,.1), rgba(0,168,232,.12));
  border: 1px solid rgba(0,168,232,.25);
}
.eyebrow--light { color: var(--accent); }
.section__title {
  font-size: clamp(26px, 3.4vw, 38px);
  font-weight: 800;
  letter-spacing: -.5px;
  margin: 0 0 14px;
}
.section__desc { font-size: 17px; color: var(--ink-2); margin: 0; }

/* ===== Filters ===== */
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 36px;
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}
.filter {
  border: 1.5px solid var(--line);
  background: var(--white);
  color: var(--ink-2);
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 14.5px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: all .18s;
}
.filter:hover { border-color: var(--brand); color: var(--brand); }
.filter.is-active {
  background: var(--gradient-brand);
  border-color: transparent;
  color: var(--white);
  box-shadow: 0 6px 20px rgba(26,85,143,.35);
}

/* ===== Product grid ===== */
.grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .25s ease, border-color .2s ease;
  overflow: hidden;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.card.is-hidden { display: none; }

/* Kolorowe akcenty kart wg kategorii */
.card[data-cat="legitymacje"] { --card-accent: var(--brand); }
.card[data-cat="oswiata"] { --card-accent: var(--orange); }
.card[data-cat="firmy"] { --card-accent: var(--green); }
.card[data-cat="legitymacje firmy"],
.card[data-cat="oswiata firmy"] { --card-accent: var(--accent); }
.card[data-cat~="instytucje"] { --card-accent: #0d9488; }
.card[data-cat~="wyposazenie"] { --card-accent: #dc2626; }
.card[data-cat="wyposazenie oswiata"] { --card-accent: var(--purple); }
#produkty { background: linear-gradient(180deg, #fff 0%, var(--bg-cyan) 8%, #fff 100%); }
.card::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: var(--card-accent, var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.card:hover::after { transform: scaleX(1); }

.card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: linear-gradient(135deg, #eef4fa, #e2eef7);
}
.card__media::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(18,63,107,.45) 0%, transparent 55%);
  opacity: 0;
  transition: opacity .3s;
  z-index: 1;
  pointer-events: none;
}
.card:hover .card__media::before { opacity: 1; }
.card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}
.card:hover .card__media img { transform: scale(1.06); }

.card__tag {
  position: absolute;
  top: 12px; left: 12px;
  z-index: 2;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .3px;
  color: #fff;
  background: var(--accent);
  padding: 5px 11px;
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(0,168,232,.4);
}
.card__tag--new {
  background: #dc2626;
  box-shadow: 0 4px 12px rgba(220,38,38,.45);
}
.card__body { display: flex; flex-direction: column; flex: 1; padding: 20px 22px 22px; }
.card__title { font-size: 18px; font-weight: 800; margin: 0 0 8px; letter-spacing: -.3px; color: var(--ink); }
.card__text { font-size: 14.5px; color: var(--ink-2); margin: 0 0 18px; flex: 1; }
.card__link {
  font-size: 14px;
  font-weight: 700;
  color: var(--card-accent, var(--brand));
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.card .arrow { transition: transform .2s; }
.card:hover .arrow { transform: translateX(4px); }

.grid__empty { text-align: center; color: var(--muted); margin: 32px 0 0; font-size: 16px; }
.link-btn {
  border: 0; background: none; color: var(--brand);
  font: inherit; font-weight: 700; cursor: pointer; text-decoration: underline;
}

/* ===== Ecosystem ===== */
.eco {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.eco__center { display: grid; place-items: center; }
.eco__card-visual {
  display: grid;
  place-items: center;
  gap: 16px;
  width: 100%;
  max-width: 320px;
  aspect-ratio: 16/11;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--brand-dark), var(--brand) 60%, var(--accent));
  color: #fff;
  font-weight: 700;
  text-align: center;
  padding: 24px;
  box-shadow: var(--shadow-md);
}
.eco__card-visual svg { width: 76px; height: 76px; opacity: .95; }
.eco__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.eco__list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 16px;
  color: var(--ink-2);
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 4px solid var(--eco-accent, var(--brand));
  border-radius: 12px;
  padding: 14px 18px;
  box-shadow: var(--shadow-sm);
  transition: transform .2s, box-shadow .2s;
}
.eco__list li:hover { transform: translateX(4px); box-shadow: var(--shadow-md); }
.eco__list li:nth-child(1) { --eco-accent: var(--green); background: rgba(31,152,103,.06); }
.eco__list li:nth-child(2) { --eco-accent: var(--orange); background: rgba(234,115,23,.06); }
.eco__list li:nth-child(3) { --eco-accent: var(--purple); background: rgba(124,58,237,.06); }
.eco__list li:nth-child(4) { --eco-accent: var(--accent); background: rgba(0,168,232,.06); }
.eco__list li:nth-child(5) { --eco-accent: var(--brand); background: rgba(26,85,143,.06); }
.eco__list strong { color: var(--ink); margin-right: 4px; }
.eco__dot { width: 12px; height: 12px; border-radius: 50%; flex-shrink: 0; }
.eco__dot--green { background: #16a34a; }
.eco__dot--orange { background: #ea7317; }
.eco__dot--purple { background: #7c3aed; }
.eco__dot--cyan { background: #0891b2; }
.eco__dot--blue { background: #1d4ed8; }

/* ===== Audience ===== */
.audience { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 22px; }
.audience__card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: var(--shadow-sm);
  transition: transform .2s, box-shadow .25s;
  border-top: 5px solid var(--audience-accent, var(--brand));
  overflow: hidden;
}
.audience__card:nth-child(1) { --audience-accent: var(--brand); background: linear-gradient(180deg, rgba(26,85,143,.06) 0%, #fff 40%); }
.audience__card:nth-child(2) { --audience-accent: var(--purple); background: linear-gradient(180deg, rgba(124,58,237,.06) 0%, #fff 40%); }
.audience__card:nth-child(3) { --audience-accent: var(--green); background: linear-gradient(180deg, rgba(31,152,103,.06) 0%, #fff 40%); }
.audience__card:nth-child(4) { --audience-accent: var(--orange); background: linear-gradient(180deg, rgba(234,115,23,.06) 0%, #fff 40%); }
.audience__card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.audience__card h3 { font-size: 22px; margin: 0 0 10px; color: var(--audience-accent, var(--ink)); }
.audience__card p { color: var(--ink-2); margin: 0 0 18px; font-size: 15px; }
.audience__links { display: flex; flex-wrap: wrap; gap: 8px; }
.audience__links a {
  font-size: 13px;
  font-weight: 600;
  color: var(--brand-dark);
  background: var(--bg-soft);
  border: 1px solid var(--line);
  padding: 6px 12px;
  border-radius: 999px;
  transition: all .18s;
}
.audience__links a:hover { background: var(--brand); color: #fff; border-color: var(--brand); }

/* ===== Features ===== */
.features { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.feature {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
}
.feature__icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: grid; place-items: center;
  font-size: 22px;
  background: var(--gradient-brand);
  color: #fff;
  margin-bottom: 16px;
  box-shadow: 0 4px 14px rgba(26,85,143,.25);
}
.feature:nth-child(1) .feature__icon { background: linear-gradient(135deg, var(--brand), var(--accent)); }
.feature:nth-child(2) .feature__icon { background: linear-gradient(135deg, #f5a623, var(--orange)); box-shadow: 0 4px 14px rgba(234,115,23,.3); }
.feature:nth-child(3) .feature__icon { background: linear-gradient(135deg, var(--accent), var(--accent-light)); box-shadow: 0 4px 14px rgba(0,168,232,.3); }
.feature:nth-child(4) .feature__icon { background: linear-gradient(135deg, var(--green), #34d399); box-shadow: 0 4px 14px rgba(31,152,103,.3); }
.feature h3 { font-size: 17px; margin: 0 0 8px; }
.feature p { font-size: 14.5px; color: var(--ink-2); margin: 0; }

/* ===== Realizacje gallery ===== */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 180px;
  gap: 16px;
}
.gallery__item {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  border: 2px solid transparent;
  box-shadow: var(--shadow-sm);
  transition: border-color .25s, box-shadow .25s;
}
.gallery__item:hover {
  border-color: var(--accent);
  box-shadow: 0 8px 24px rgba(0,168,232,.25);
}
.gallery__item--lg { grid-column: span 2; grid-row: span 2; }
.gallery__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.gallery__item:hover img { transform: scale(1.07); }

/* ===== Trust logos strip ===== */
.logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 44px;
}
.logos__item {
  font-weight: 700;
  font-family: var(--font);
  font-size: 15px;
  color: var(--brand-dark);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 11px 22px;
  box-shadow: var(--shadow-sm);
  transition: transform .2s, color .2s, background .2s, border-color .2s;
}
.logos__item:nth-child(odd) { border-color: rgba(26,85,143,.25); background: rgba(26,85,143,.05); }
.logos__item:nth-child(even) { border-color: rgba(0,168,232,.3); background: rgba(0,168,232,.08); }
.logos__item:hover {
  transform: translateY(-2px);
  background: var(--gradient-brand);
  color: #fff;
  border-color: transparent;
  box-shadow: var(--shadow-md);
}

/* ===== Testimonials ===== */
.testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.testimonial {
  margin: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 5px solid var(--testimonial-accent, var(--accent));
  border-radius: var(--radius);
  padding: 28px 26px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform .2s, box-shadow .2s;
}
.testimonial:nth-child(1) { --testimonial-accent: var(--brand); }
.testimonial:nth-child(2) { --testimonial-accent: var(--orange); }
.testimonial:nth-child(3) { --testimonial-accent: var(--green); }
.testimonial:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.testimonial__stars { color: #f5a623; letter-spacing: 2px; font-size: 16px; }
.testimonial blockquote {
  margin: 0;
  font-size: 15.5px;
  color: var(--ink-2);
  line-height: 1.65;
  flex: 1;
}
.testimonial figcaption {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
  padding-top: 14px;
}
.testimonial figcaption strong { font-family: var(--font); color: var(--ink); font-size: 15px; }
.testimonial figcaption span { color: var(--muted); font-size: 13px; }

/* ===== CTA ===== */
.cta {
  background: var(--gradient-brand);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: "";
  position: absolute;
  top: -50%; right: -20%;
  width: 60%; height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,.12) 0%, transparent 70%);
  pointer-events: none;
}
.cta__inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 72px 24px;
}
.cta__title { font-size: clamp(26px, 3.4vw, 38px); font-weight: 800; margin: 0 0 14px; letter-spacing: -.5px; }
.cta__text p { font-size: 17px; color: #d7e2fb; margin: 0 0 26px; max-width: 480px; }
.cta__actions { display: flex; flex-wrap: wrap; gap: 14px; }
.cta__details {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 20px;
  padding: 30px;
  backdrop-filter: blur(4px);
}
.cta__details h3 { margin: 0 0 18px; font-size: 19px; }
.cta__details ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.cta__details li {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 8px;
  font-size: 15px;
  color: #eaf1ff;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.cta__details li:last-child { border-bottom: 0; padding-bottom: 0; }
.cta__details span { color: #9fb6ec; font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: .5px; }

/* ===== Footer ===== */
.footer { background: #0b1220; color: #aeb9d0; padding-top: 56px; }
.footer__inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 36px;
  padding-bottom: 44px;
}
.brand__logo--footer { height: 40px; filter: brightness(0) invert(1); }
.footer__brand p { font-size: 14.5px; max-width: 320px; margin: 16px 0 0; }
.footer__stores {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 14px;
  margin-top: 18px;
}
.footer__store-badge {
  display: inline-flex;
  align-items: center;
  height: 40px;
  line-height: 0;
}
.footer__store-badge img {
  display: block;
  height: 40px;
  width: auto;
  max-height: 40px;
  object-fit: contain;
  opacity: .92;
  transition: opacity .2s, transform .2s;
}
.footer__store-badge--soon img {
  /* większe marginesy w pliku PNG — skala dopasowana do wysokości App Store */
  transform: scale(1.14);
  transform-origin: left center;
}
a.footer__store-badge:hover img { opacity: 1; transform: translateY(-1px); }
.footer__store-badge--soon {
  cursor: default;
  opacity: .85;
}
.footer__col h4 { color: #fff; font-size: 14px; letter-spacing: .5px; margin: 0 0 16px; text-transform: uppercase; }
.footer__col a, .footer__col span { display: block; font-size: 14.5px; color: #aeb9d0; margin-bottom: 10px; transition: color .18s; }
.footer__col a:hover { color: var(--accent); }
/* Pasek logotypów — białe tło nad ciemną stopką */
.product-logos {
  background: #fff;
  border-top: 1px solid var(--line);
  padding: 28px 0 32px;
}
.product-logos__label {
  margin: 0 0 18px;
  text-align: center;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--muted);
}
.product-logos__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px 32px;
}
.product-logos__list a {
  display: flex;
  align-items: center;
  padding: 6px 4px;
  transition: opacity .2s, transform .2s;
}
.product-logos__list a:hover { opacity: .85; transform: translateY(-2px); }
.product-logos__list img {
  display: block;
  height: 30px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
}

.footer__bottom { border-top: 1px solid rgba(255,255,255,.08); }
.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
  font-size: 13px;
  color: #7c89a6;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .grid { grid-template-columns: repeat(2, 1fr); }
  .features { grid-template-columns: repeat(2, 1fr); }
  .hero__inner { grid-template-columns: 1fr; gap: 36px; }
  .hero__stats { max-width: 520px; }
}

@media (max-width: 860px) {
  .nav {
    position: fixed;
    inset: 0 0 auto 0;
    top: 106px;
    flex-direction: column;
    align-items: stretch;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    padding: 16px 24px 24px;
    gap: 4px;
    box-shadow: var(--shadow-lg);
    transform: translateY(-130%);
    transition: transform .3s ease;
    visibility: hidden;
  }
  .nav.is-open { transform: translateY(0); visibility: visible; }
  .nav__link { padding: 13px 12px; border-radius: 10px; }
  .nav__login { margin: 8px 0 0; text-align: center; }
  .nav-toggle { display: flex; }
  .topbar__item:nth-child(1) { display: none; }
  .topbar__sep { display: none; }
}

@media (max-width: 1024px) {
  .audience { grid-template-columns: repeat(2, 1fr); }
  .testimonials { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .section { padding: 60px 0; }
  .eco { grid-template-columns: 1fr; gap: 28px; }
  .audience { grid-template-columns: 1fr; }
  .cta__inner { grid-template-columns: 1fr; gap: 32px; padding: 56px 24px; }
  .cta__details { order: -1; }
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 140px; }
  .gallery__item--lg { grid-column: span 2; grid-row: span 1; }
}

@media (max-width: 540px) {
  .grid { grid-template-columns: 1fr; }
  .features { grid-template-columns: 1fr; }
  .hero__stats { grid-template-columns: 1fr 1fr; }
  .container { padding: 0 18px; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
  .footer__bottom-inner { flex-direction: column; gap: 6px; }
}

/* ===== Product subpages ===== */
.breadcrumb {
  font-size: 14px;
  color: var(--muted);
  padding: 18px 0 0;
}
.breadcrumb a { color: var(--brand); font-weight: 600; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { margin: 0 6px; }

.phero { background: var(--gradient-hero); position: relative; overflow: hidden; }
.phero__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(700px 420px at 90% 0%, rgba(0,168,232,.25), transparent 55%),
    radial-gradient(600px 400px at 0% 30%, rgba(26,85,143,.18), transparent 50%);
  pointer-events: none;
}
.phero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 48px;
  align-items: center;
  padding: 40px 24px 64px;
}
.phero__eyebrow {
  display: inline-block;
  font-family: var(--font);
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  font-size: 13px;
  color: var(--brand);
  margin-bottom: 12px;
  padding: 6px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(26,85,143,.1), rgba(0,168,232,.12));
  border: 1px solid rgba(0,168,232,.25);
}
.phero__title {
  font-size: clamp(30px, 4.4vw, 46px);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -1px;
  margin: 0 0 16px;
  color: var(--ink);
}
.phero__lead { font-size: 18px; color: var(--ink-2); margin: 0 0 26px; max-width: 540px; }
.phero__actions { display: flex; flex-wrap: wrap; gap: 12px; }
.btn--brand { background: var(--gradient-brand); color: #fff; border: none; }
.btn--brand:hover { filter: brightness(1.08); box-shadow: 0 8px 24px rgba(26,85,143,.4); }
.phero__media {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  background: #fff;
}
.phero__media img { width: 100%; height: 100%; object-fit: cover; display: block; }

.specs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.specs--wide { grid-template-columns: repeat(3, 1fr); }
.specs--wide .spec:nth-child(4) { --spec-accent: #7c3aed; background: linear-gradient(180deg, rgba(124,58,237,.06) 0%, #fff 35%); }
.specs--wide .spec:nth-child(5) { --spec-accent: var(--green, #059669); background: linear-gradient(180deg, rgba(5,150,105,.06) 0%, #fff 35%); }
.specs--wide .spec:nth-child(6) { --spec-accent: var(--brand); }
.spec {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--spec-accent, var(--brand));
  transition: transform .2s, box-shadow .2s;
}
.spec:nth-child(1) { --spec-accent: var(--brand); background: linear-gradient(180deg, rgba(26,85,143,.05) 0%, #fff 35%); }
.spec:nth-child(2) { --spec-accent: var(--accent); background: linear-gradient(180deg, rgba(0,168,232,.06) 0%, #fff 35%); }
.spec:nth-child(3) { --spec-accent: var(--orange); background: linear-gradient(180deg, rgba(234,115,23,.05) 0%, #fff 35%); }
.spec:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.spec__num {
  font-family: var(--font);
  font-weight: 800;
  font-size: 14px;
  color: var(--spec-accent, var(--accent));
  margin-bottom: 10px;
}
.spec h3 { font-size: 17px; margin: 0 0 8px; color: var(--ink); }
.spec p { font-size: 14.5px; color: var(--ink-2); margin: 0; }

.checklist { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; max-width: 720px; }
.checklist li {
  position: relative;
  padding-left: 38px;
  font-size: 16px;
  color: var(--ink-2);
}
.checklist li::before {
  content: "✓";
  position: absolute; left: 0; top: 0;
  width: 26px; height: 26px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  color: #fff;
  border-radius: 50%;
  font-weight: 800;
  font-size: 14px;
  box-shadow: 0 2px 8px rgba(0,168,232,.3);
}
.checklist strong { color: var(--ink); }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: center;
}
.split__media {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}
.split__media img { width: 100%; display: block; }
.split h2 { font-size: clamp(24px, 3vw, 32px); margin: 0 0 16px; letter-spacing: -.5px; }
.split p { color: var(--ink-2); font-size: 16px; }

.prose-block { max-width: 780px; }
.prose-block__p { color: var(--ink-2); font-size: 16px; line-height: 1.65; margin: 0 0 18px; }
.prose-block__p:last-child { margin-bottom: 0; }

.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feat-grid__item {
  padding: 22px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.feat-grid__item h3 { font-size: 16px; margin: 0 0 8px; color: var(--ink); }
.feat-grid__item p { font-size: 14.5px; color: var(--ink-2); margin: 0; line-height: 1.55; }

.faq-list { margin: 0; padding: 0; max-width: 800px; display: grid; gap: 20px; }
.faq-list__item {
  padding: 20px 24px;
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid var(--line);
}
.faq-list__item dt { font-weight: 700; font-size: 16px; color: var(--ink); margin: 0 0 10px; }
.faq-list__item dd { margin: 0; font-size: 15px; color: var(--ink-2); line-height: 1.6; }

.related { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.related__card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px 18px;
  box-shadow: var(--shadow-sm);
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.related__card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: transparent; }
.related__card img { width: 54px; height: 40px; object-fit: cover; border-radius: 8px; flex-shrink: 0; }
.related__card span { font-family: var(--font); font-weight: 700; font-size: 14.5px; color: var(--ink); }

@media (max-width: 960px) {
  .phero__inner { grid-template-columns: 1fr; gap: 32px; }
  .specs, .specs--wide, .feat-grid { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; gap: 28px; }
  .related { grid-template-columns: repeat(2, 1fr); }
}

/* ===== Aktualności ===== */
.news-hero {
  padding: 48px 0 40px;
  background: var(--gradient-hero);
  border-bottom: 1px solid var(--line);
}
.news-hero__title {
  font-size: clamp(28px, 4vw, 42px);
  margin: 12px 0 14px;
  letter-spacing: -.5px;
  color: var(--ink);
}
.news-hero__lead { color: var(--ink-2); font-size: 17px; max-width: 640px; margin: 0; }

.news-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}
.news-filter {
  font-family: var(--font);
  font-size: 14px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1.5px solid var(--line);
  background: #fff;
  color: var(--ink-2);
  cursor: pointer;
  transition: background .15s, border-color .15s, color .15s;
}
.news-filter:hover { border-color: var(--accent); color: var(--brand); }
.news-filter.is-active {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
}
.news-card.is-hidden { display: none; }
.news-card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .2s, box-shadow .2s;
}
.news-card__link:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.news-card__media {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--bg-soft);
}
.news-card__media img { width: 100%; height: 100%; object-fit: cover; }
.news-card__body { padding: 22px 24px 26px; flex: 1; display: flex; flex-direction: column; }
.news-card__date { font-size: 13px; color: var(--muted); font-weight: 600; }
.news-card__title {
  font-size: 20px;
  margin: 8px 0 10px;
  color: var(--ink);
  line-height: 1.3;
}
.news-card__excerpt { font-size: 15px; color: var(--ink-2); margin: 0 0 14px; flex: 1; }
.news-card__tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 12px; }
.news-card__more { font-family: var(--font); font-weight: 700; font-size: 14px; color: var(--brand); }
.news-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(26,85,143,.08);
  color: var(--brand);
}
.news-tag-link { text-decoration: none; }
.news-tag-link:hover .news-tag { background: var(--brand); color: #fff; }
.news-empty { text-align: center; color: var(--muted); padding: 40px 0; }

.news-article__header { padding-bottom: 0; }
.news-article__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin: 16px 0 12px;
}
.news-article__meta time { font-weight: 700; color: var(--muted); font-size: 14px; }
.news-article__tags { display: flex; flex-wrap: wrap; gap: 6px; }
.news-article__title {
  font-size: clamp(26px, 4vw, 38px);
  margin: 0 0 14px;
  letter-spacing: -.5px;
  line-height: 1.2;
}
.news-article__lead { font-size: 18px; color: var(--ink-2); max-width: 720px; margin: 0 0 28px; }
.news-article__hero {
  margin: 0 0 40px;
  background: var(--bg-alt);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.news-article__hero img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  border-radius: var(--radius);
  margin: 28px 0;
}
.news-article__content {
  max-width: 760px;
  padding-bottom: 48px;
}
.news-article__content p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-2);
  margin: 0 0 20px;
}
.news-article__content a { color: var(--brand); font-weight: 600; text-decoration: underline; }
.news-article__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 32px 0 24px;
}
.news-article__product { margin-top: 24px; padding-top: 24px; border-top: 1px solid var(--line); }

.news-gallery__title { font-size: 22px; margin: 0 0 20px; }
.news-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}
.news-gallery__item {
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .2s, box-shadow .2s;
}
.news-gallery__item:hover { transform: scale(1.02); box-shadow: var(--shadow-md); }
.news-gallery__item img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }

.news-lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(15, 37, 64, .92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.news-lightbox[hidden] { display: none; }
.news-lightbox img { max-width: 100%; max-height: 90vh; border-radius: var(--radius-sm); }
.news-lightbox__close {
  position: absolute;
  top: 20px;
  right: 24px;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  line-height: 1;
}

.news-related { display: grid; gap: 12px; max-width: 640px; }
.news-card--compact {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  transition: border-color .2s, box-shadow .2s;
}
.news-card--compact:hover { border-color: var(--accent); box-shadow: var(--shadow-sm); }
.news-card--compact time { font-size: 12px; color: var(--muted); font-weight: 600; }
.news-card--compact span { font-family: var(--font); font-weight: 700; font-size: 15px; color: var(--ink); }

.news-slider { max-width: 100%; }
.news-slider__viewport {
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  background: #fff;
}
.news-slider__track {
  display: flex;
  transition: transform 0.45s ease;
  will-change: transform;
}
.news-slider__slide { flex: 0 0 100%; min-width: 100%; }
.news-slider__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 22px;
}
.news-slider__btn {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  background: #fff;
  color: var(--brand);
  font-size: 28px;
  line-height: 1;
  font-family: var(--font);
  font-weight: 700;
  cursor: pointer;
  transition: border-color .2s, background .2s, color .2s, box-shadow .2s;
  box-shadow: var(--shadow-sm);
}
.news-slider__btn:hover:not(:disabled) {
  border-color: var(--brand);
  background: var(--brand);
  color: #fff;
}
.news-slider__btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  box-shadow: none;
}
.news-slider__dots {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 20px;
}
.news-slider__dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(26, 85, 143, .2);
  cursor: pointer;
  transition: transform .2s, background .2s;
}
.news-slider__dot.is-active {
  background: var(--brand);
  transform: scale(1.25);
}
.news-slider__dot:hover { background: var(--accent); }

.news-teaser {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 32px;
  align-items: center;
  background: #fff;
  overflow: hidden;
}
.news-teaser__media {
  display: block;
  height: 100%;
  min-height: 220px;
}
.news-teaser__media img { width: 100%; height: 100%; object-fit: cover; min-height: 220px; }
.news-teaser__body { padding: 28px 32px 28px 0; }
.news-teaser__date { font-size: 13px; color: var(--muted); font-weight: 600; }
.news-teaser__title { font-size: 22px; margin: 8px 0 12px; }
.news-teaser__title a { color: inherit; text-decoration: none; }
.news-teaser__title a:hover { color: var(--brand); }
.news-teaser__text { color: var(--ink-2); margin: 0 0 16px; font-size: 15px; }

@media (max-width: 768px) {
  .news-teaser { grid-template-columns: 1fr; }
  .news-teaser__body { padding: 24px; }
  .news-slider__btn { width: 42px; height: 42px; font-size: 24px; }
}

@media (prefers-reduced-motion: reduce) {
  .news-slider__track { transition: none; }
}

/* ===== Logowanie ===== */
.nav__login--active {
  border-color: var(--brand);
  color: var(--brand);
  background: var(--brand-50);
}
.login-section { padding-top: 0; }
.login-list { display: flex; flex-direction: column; gap: 32px; }
.login-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.login-card__head {
  display: grid;
  grid-template-columns: minmax(200px, 280px) 1fr;
  gap: 28px;
  padding: 28px 32px;
  border-bottom: 1px solid var(--line);
  background: var(--gradient-hero);
}
.login-card__media {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #fff;
}
.login-card__media img { width: 100%; height: 100%; object-fit: cover; }
.login-card__title {
  font-size: clamp(22px, 3vw, 28px);
  margin: 0 0 12px;
  letter-spacing: -.3px;
}
.login-card__who { font-size: 14px; color: var(--ink-2); margin: 0 0 12px; }
.login-card__lead { font-size: 15px; color: var(--ink-2); margin: 0 0 18px; line-height: 1.6; }
.login-card__lead code {
  font-size: 13px;
  padding: 2px 6px;
  border-radius: 4px;
  background: rgba(0, 0, 0, .06);
}
.login-card__cta { margin-bottom: 12px; }
.login-card__no-url {
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  margin: 0 0 12px;
  padding: 10px 14px;
  border-radius: var(--radius);
  background: var(--surface-2);
  border: 1px dashed var(--line);
}
.login-card__product {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
}
.login-card__product:hover { text-decoration: underline; }
.login-card__body { padding: 28px 32px 32px; }
.login-card__steps-title { font-size: 18px; margin: 0 0 16px; }
.login-card__steps {
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.login-card__steps li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.55;
}
.login-card__steps a { color: var(--brand); font-weight: 600; }
.login-card__step-num {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  font-family: var(--font);
  font-weight: 800;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.login-card__help {
  margin: 0;
  padding: 16px 18px;
  font-size: 14px;
  color: var(--ink-2);
  background: var(--surface-2);
  border-radius: var(--radius);
  border-left: 4px solid var(--accent);
  line-height: 1.55;
}
.login-card__help a { color: var(--brand); font-weight: 600; }

@media (max-width: 768px) {
  .login-card__head { grid-template-columns: 1fr; padding: 24px; }
  .login-card__body { padding: 24px; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
}
