/* Fortis-CAD quick SEO/CRO layer
   Aktualizacja: kolorystyka dopasowana do logo Fortis-CAD.
   Paleta: granat konstrukcyjny + żółty akcent techniczny + jasne tło.
*/

:root {
  --fc-navy: #273252;
  --fc-navy-2: #1f2946;
  --fc-navy-3: #151d35;
  --fc-yellow: #fff200;
  --fc-yellow-2: #ffe600;
  --fc-yellow-soft: #fff9b8;
  --fc-light: #f7f8fb;
  --fc-white: #ffffff;
  --fc-text: #1e2436;
  --fc-muted: #667085;
  --fc-border: #e1e5ee;
  --fc-steel: #465066;
  --fc-radius: 16px;
  --fc-shadow: 0 18px 45px rgba(31, 41, 70, 0.16);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body.fc-body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--fc-text);
  background: var(--fc-light);
  line-height: 1.6;
}

a { color: inherit; }

.fc-container {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.fc-topbar {
  background: var(--fc-navy-3);
  color: #eef2ff;
  font-size: 14px;
  border-bottom: 4px solid var(--fc-yellow);
}

.fc-topbar__inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 0;
  align-items: center;
}

.fc-topbar a {
  color: var(--fc-yellow);
  text-decoration: none;
  font-weight: 800;
}

.fc-header {
  background: rgba(255, 255, 255, 0.98);
  color: var(--fc-navy);
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 10px 30px rgba(31, 41, 70, .12);
  border-bottom: 1px solid var(--fc-border);
}

.fc-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 13px 0;
}

.fc-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--fc-navy);
  text-decoration: none;
  font-weight: 900;
  letter-spacing: .04em;
}

.fc-logo img {
  display: block;
  max-height: 74px;
  max-width: 310px;
  object-fit: contain;
}

/* Logo zawiera pełny podpis marki, więc nie dodajemy osobnego tekstu obok. */

.fc-nav {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.fc-nav a {
  color: var(--fc-navy);
  text-decoration: none;
  padding: 10px 13px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  transition: background .2s ease, color .2s ease, box-shadow .2s ease;
}

.fc-nav a:hover,
.fc-nav a.fc-active {
  background: var(--fc-yellow);
  color: var(--fc-navy);
  box-shadow: 0 8px 20px rgba(255, 242, 0, .28);
}

.fc-hero {
  position: relative;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(21, 29, 53, 0.96), rgba(39, 50, 82, 0.88), rgba(39, 50, 82, 0.74)),
    url("/images/zdjciaOFERTA-KONSTR.STAL.1.jpg") center/cover no-repeat;
  overflow: hidden;
}

.fc-hero::after,
.fc-page-hero::after {
  content: "";
  position: absolute;
  right: -80px;
  top: -80px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: var(--fc-yellow);
  opacity: .15;
  pointer-events: none;
}

.fc-hero__inner {
  min-height: 640px;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(300px, .82fr);
  gap: 42px;
  align-items: center;
  padding: 92px 0;
  position: relative;
  z-index: 1;
}

.fc-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 242, 0, .16);
  border: 1px solid rgba(255, 242, 0, .55);
  color: var(--fc-yellow);
  padding: 8px 13px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 14px;
  margin-bottom: 18px;
}

.fc-hero h1,
.fc-page-hero h1 {
  margin: 0 0 18px;
  font-size: clamp(38px, 5vw, 68px);
  line-height: 1.03;
  letter-spacing: -.045em;
}

.fc-lead {
  font-size: clamp(18px, 2vw, 23px);
  color: #eef2ff;
  max-width: 790px;
  margin: 0 0 28px;
}

.fc-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0;
}

.fc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
  border: 2px solid transparent;
  transition: transform .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.fc-btn:hover { transform: translateY(-1px); }

.fc-btn--primary {
  color: var(--fc-navy);
  background: var(--fc-yellow);
  box-shadow: 0 12px 30px rgba(255, 242, 0, .34);
}

.fc-btn--primary:hover { background: var(--fc-yellow-2); }

.fc-btn--secondary {
  color: #fff;
  border-color: rgba(255,255,255,.64);
  background: rgba(255,255,255,.08);
}

.fc-btn--secondary:hover { background: rgba(255,255,255,.16); }

.fc-section .fc-btn--secondary,
.fc-contact-panel .fc-btn--secondary {
  color: var(--fc-navy);
  border-color: var(--fc-navy);
  background: #fff;
}

.fc-section .fc-btn--secondary:hover,
.fc-contact-panel .fc-btn--secondary:hover {
  background: var(--fc-navy);
  color: #fff;
}

.fc-trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.fc-trust-list li {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,242,0,.32);
  border-radius: 999px;
  padding: 8px 12px;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
}

.fc-quote-card {
  background: rgba(255,255,255,.97);
  color: var(--fc-text);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--fc-shadow);
  border: 1px solid rgba(255,242,0,.7);
  border-top: 7px solid var(--fc-yellow);
}

.fc-quote-card h2 {
  margin: 0 0 10px;
  font-size: 26px;
  line-height: 1.2;
  color: var(--fc-navy);
}

.fc-quote-card p {
  color: var(--fc-muted);
  margin: 0 0 18px;
}

.fc-mini-list { margin: 0; padding-left: 20px; }
.fc-mini-list li { margin: 7px 0; }

.fc-section { padding: 72px 0; background: #fff; }
.fc-section--muted { background: #f1f3f8; }
.fc-section--dark { background: var(--fc-navy); color: #fff; }

.fc-section__head { max-width: 820px; margin-bottom: 34px; }
.fc-section__head.center { text-align: center; margin-left: auto; margin-right: auto; }

.fc-section h2 {
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.15;
  letter-spacing: -.03em;
  margin: 0 0 14px;
  color: var(--fc-navy);
}

.fc-section--dark h2 { color: #fff; }
.fc-section p { color: var(--fc-muted); }
.fc-section--dark p { color: #e6ebf5; }

.fc-grid { display: grid; gap: 22px; }
.fc-grid--3 { grid-template-columns: repeat(3, 1fr); }
.fc-grid--2 { grid-template-columns: repeat(2, 1fr); }

.fc-card {
  background: #fff;
  border: 1px solid var(--fc-border);
  border-radius: var(--fc-radius);
  padding: 26px;
  box-shadow: 0 10px 30px rgba(31,41,70,.07);
}

.fc-card--dark { background: var(--fc-navy-2); border-color: rgba(255,255,255,.09); }

.fc-card h3 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.25;
  color: var(--fc-navy);
}

.fc-card p { margin-bottom: 0; }
.fc-card ul { margin-bottom: 0; padding-left: 20px; }
.fc-card li { margin: 7px 0; }

.fc-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--fc-yellow);
  color: var(--fc-navy);
  font-weight: 900;
  margin-bottom: 14px;
  box-shadow: 0 8px 18px rgba(255, 242, 0, .28);
}

.fc-highlight { border-left: 5px solid var(--fc-yellow); }

.fc-split {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 36px;
  align-items: center;
}

.fc-image-box {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--fc-shadow);
  background: var(--fc-navy);
  min-height: 320px;
  border: 1px solid rgba(39, 50, 82, .18);
}

.fc-image-box img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  display: block;
}

.fc-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 28px;
}

.fc-kpi {
  background: #fff;
  border: 1px solid var(--fc-border);
  border-radius: 18px;
  padding: 20px;
  text-align: center;
}

.fc-kpi strong {
  display: block;
  font-size: 26px;
  color: var(--fc-navy);
  line-height: 1.1;
}

.fc-kpi span { color: var(--fc-muted); font-size: 14px; }

.fc-page-hero {
  position: relative;
  background: linear-gradient(135deg, var(--fc-navy-3), var(--fc-navy));
  color: #fff;
  padding: 76px 0;
  overflow: hidden;
}

.fc-page-hero .fc-container { position: relative; z-index: 1; }
.fc-page-hero h1 { color: #fff; }
.fc-page-hero p { max-width: 820px; color: #eef2ff; font-size: 19px; }

.fc-contact-panel {
  background: #fff;
  border-radius: 24px;
  padding: 30px;
  box-shadow: var(--fc-shadow);
  border: 1px solid var(--fc-border);
  border-top: 7px solid var(--fc-yellow);
}

.fc-contact-list { list-style: none; padding: 0; margin: 0; }
.fc-contact-list li { padding: 13px 0; border-bottom: 1px solid var(--fc-border); }
.fc-contact-list li:last-child { border-bottom: 0; }
.fc-contact-list strong { display: block; font-size: 14px; color: var(--fc-muted); text-transform: uppercase; letter-spacing: .06em; }
.fc-contact-list a { color: var(--fc-navy); text-decoration: none; font-weight: 900; }

.fc-form-note {
  margin-top: 20px;
  padding: 16px;
  background: var(--fc-yellow-soft);
  border: 1px solid var(--fc-yellow);
  border-radius: 14px;
  color: var(--fc-navy);
}

.fc-footer {
  background: var(--fc-navy-3);
  color: #d7deef;
  padding: 34px 0;
  border-top: 5px solid var(--fc-yellow);
}

.fc-footer__inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}

.fc-footer a { color: var(--fc-yellow); font-weight: 900; text-decoration: none; }

.fc-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.fc-gallery img {
  display: block;
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(31,41,70,.14);
  border: 1px solid var(--fc-border);
}

.fc-note { font-size: 14px; color: var(--fc-muted); }
.fc-sr-only { position: absolute; left: -9999px; }

@media (max-width: 980px) {
  .fc-hero__inner,
  .fc-split { grid-template-columns: 1fr; }
  .fc-hero__inner { min-height: auto; padding: 64px 0; }
  .fc-grid--3,
  .fc-grid--2,
  .fc-kpis,
  .fc-gallery { grid-template-columns: 1fr; }
  .fc-header__inner { align-items: flex-start; flex-direction: column; }
  .fc-nav { justify-content: flex-start; }
}

@media (max-width: 620px) {
  .fc-topbar__inner { flex-direction: column; align-items: flex-start; }
  .fc-actions { flex-direction: column; }
  .fc-btn { width: 100%; }
  .fc-nav a { padding: 8px 10px; font-size: 13px; }
  .fc-section { padding: 54px 0; }
  .fc-hero h1,
  .fc-page-hero h1 { font-size: 38px; }
  .fc-logo img { max-width: 160px; }
}


/* Podstrona O nas i logo */
.fc-logo-panel {
  background: #fff;
  padding: 34px;
  min-height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fc-logo-panel img {
  width: min(100%, 640px);
  height: auto;
  min-height: 0;
  object-fit: contain;
}

.fc-timeline {
  position: relative;
  display: grid;
  gap: 18px;
  max-width: 980px;
  margin: 0 auto;
}

.fc-timeline::before {
  content: "";
  position: absolute;
  left: 72px;
  top: 12px;
  bottom: 12px;
  width: 4px;
  background: var(--fc-yellow);
  border-radius: 999px;
}

.fc-timeline__item {
  position: relative;
  display: grid;
  grid-template-columns: 145px 1fr;
  gap: 24px;
  align-items: start;
}

.fc-timeline__year {
  position: relative;
  z-index: 1;
  background: var(--fc-navy);
  color: var(--fc-yellow);
  border: 3px solid var(--fc-yellow);
  border-radius: 999px;
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(31, 41, 70, .16);
}

.fc-timeline__content {
  background: #fff;
  border: 1px solid var(--fc-border);
  border-left: 5px solid var(--fc-yellow);
  border-radius: var(--fc-radius);
  padding: 24px;
  box-shadow: 0 10px 30px rgba(31,41,70,.07);
}

.fc-timeline__content h3 {
  color: var(--fc-navy);
  margin: 0 0 8px;
}

.fc-timeline__content p {
  margin: 0;
  color: var(--fc-muted);
}

@media (max-width: 620px) {
  .fc-logo img { max-height: 62px; max-width: 250px; }
  .fc-timeline::before { display: none; }
  .fc-timeline__item { grid-template-columns: 1fr; gap: 10px; }
  .fc-timeline__year { width: fit-content; padding: 0 24px; }
}

/* Mobile friendly update — 2026-05-01
   Cel: wygodne menu, czytelne sekcje, duże przyciski i brak poziomego przewijania na telefonach.
*/
html,
body.fc-body {
  max-width: 100%;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}

img,
svg,
video,
iframe {
  max-width: 100%;
}

.fc-btn,
.fc-nav a,
.fc-topbar a,
.fc-contact-list a,
.fc-footer a {
  -webkit-tap-highlight-color: rgba(255, 242, 0, .35);
}

.fc-btn,
.fc-nav a {
  touch-action: manipulation;
}

.fc-mobile-cta {
  display: none;
}

@media (max-width: 980px) {
  .fc-container {
    width: min(100% - 28px, 760px);
  }

  .fc-header {
    position: sticky;
  }

  .fc-header__inner {
    gap: 10px;
    padding: 10px 0 8px;
  }

  .fc-logo img {
    max-height: 58px;
    max-width: min(280px, 72vw);
  }

  .fc-nav {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    justify-content: flex-start;
    gap: 8px;
    padding: 6px 0 7px;
    margin-inline: -2px;
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
  }

  .fc-nav a {
    flex: 0 0 auto;
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 14px;
    white-space: nowrap;
    background: #f5f6fa;
    border: 1px solid var(--fc-border);
  }

  .fc-nav a.fc-active {
    border-color: var(--fc-yellow);
  }

  .fc-hero {
    background-position: center;
  }

  .fc-hero__inner {
    gap: 24px;
    padding: 48px 0 42px;
  }

  .fc-quote-card,
  .fc-contact-panel,
  .fc-card {
    border-radius: 18px;
  }

  .fc-image-box,
  .fc-image-box img {
    min-height: 240px;
  }

  .fc-page-hero {
    padding: 52px 0;
  }

  .fc-footer__inner {
    align-items: flex-start;
  }
}

@media (max-width: 720px) {
  body.fc-body {
    padding-bottom: calc(74px + env(safe-area-inset-bottom));
  }

  .fc-topbar {
    font-size: 13px;
  }

  .fc-topbar__inner {
    gap: 6px;
    padding: 7px 0;
  }

  .fc-topbar__inner > div:first-child {
    line-height: 1.35;
  }

  .fc-hero h1,
  .fc-page-hero h1 {
    font-size: clamp(32px, 9vw, 42px);
    line-height: 1.08;
    letter-spacing: -.035em;
  }

  .fc-lead,
  .fc-page-hero p {
    font-size: 17px;
    line-height: 1.55;
  }

  .fc-eyebrow {
    max-width: 100%;
    border-radius: 14px;
    line-height: 1.35;
    align-items: flex-start;
  }

  .fc-actions {
    gap: 10px;
  }

  .fc-btn {
    width: 100%;
    min-height: 52px;
    padding: 13px 16px;
    border-radius: 14px;
    text-align: center;
    line-height: 1.25;
  }

  .fc-section {
    padding: 46px 0;
  }

  .fc-section__head {
    margin-bottom: 24px;
  }

  .fc-section h2 {
    font-size: clamp(26px, 7vw, 34px);
    line-height: 1.18;
  }

  .fc-card,
  .fc-quote-card,
  .fc-contact-panel,
  .fc-timeline__content {
    padding: 20px;
  }

  .fc-card h3,
  .fc-quote-card h2 {
    font-size: 21px;
  }

  .fc-grid,
  .fc-gallery,
  .fc-kpis {
    gap: 14px;
  }

  .fc-kpi {
    text-align: left;
  }

  .fc-gallery img {
    height: 210px;
  }

  .fc-logo-panel {
    min-height: 180px;
    padding: 18px;
  }

  .fc-contact-list li {
    padding: 11px 0;
  }

  .fc-footer {
    padding-bottom: 94px;
  }

  .fc-mobile-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 100;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
    background: rgba(21, 29, 53, .96);
    border-top: 3px solid var(--fc-yellow);
    box-shadow: 0 -12px 32px rgba(21, 29, 53, .25);
    backdrop-filter: blur(8px);
  }

  .fc-mobile-cta a {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 900;
    line-height: 1;
    text-align: center;
    font-size: 15px;
  }

  .fc-mobile-cta__phone {
    color: var(--fc-navy);
    background: var(--fc-yellow);
  }

  .fc-mobile-cta__email {
    color: #fff;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.42);
  }
}

@media (max-width: 420px) {
  .fc-container {
    width: calc(100% - 22px);
  }

  .fc-logo img {
    max-height: 52px;
    max-width: 74vw;
  }

  .fc-nav a {
    font-size: 13px;
    padding: 8px 12px;
  }

  .fc-hero__inner {
    padding: 38px 0 34px;
  }

  .fc-trust-list li {
    border-radius: 12px;
    width: 100%;
  }

  .fc-card,
  .fc-quote-card,
  .fc-contact-panel,
  .fc-timeline__content {
    padding: 18px;
  }

  .fc-mobile-cta {
    gap: 6px;
    padding-left: 9px;
    padding-right: 9px;
  }

  .fc-mobile-cta a {
    font-size: 14px;
    min-height: 46px;
  }
}

/* Hamburger menu mobile — update 2026-05-04
   Menu desktopowe zostaje bez zmian. Na mobile przechodzi w dostępny przycisk hamburger.
*/
.fc-menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 2px solid var(--fc-navy);
  border-radius: 14px;
  background: #fff;
  color: var(--fc-navy);
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(31, 41, 70, .10);
  -webkit-tap-highlight-color: rgba(255, 242, 0, .35);
}

.fc-menu-toggle__bar {
  display: block;
  width: 22px;
  height: 3px;
  border-radius: 999px;
  background: currentColor;
  transition: transform .18s ease, opacity .18s ease;
}

.fc-menu-toggle[aria-expanded="true"] {
  background: var(--fc-yellow);
  border-color: var(--fc-yellow);
}

.fc-menu-toggle[aria-expanded="true"] .fc-menu-toggle__bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.fc-menu-toggle[aria-expanded="true"] .fc-menu-toggle__bar:nth-child(2) {
  opacity: 0;
}

.fc-menu-toggle[aria-expanded="true"] .fc-menu-toggle__bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 980px) {
  .fc-header__inner {
    position: relative;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 0;
  }

  .fc-menu-toggle {
    display: inline-flex;
  }

  .fc-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    z-index: 90;
    width: 100%;
    display: none;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 8px;
    padding: 12px;
    margin: 0;
    overflow: visible;
    border-radius: 18px;
    border: 1px solid var(--fc-border);
    border-top: 5px solid var(--fc-yellow);
    background: rgba(255, 255, 255, .98);
    box-shadow: 0 22px 50px rgba(21, 29, 53, .24);
  }

  .fc-nav.is-open {
    display: flex;
  }

  .fc-nav a {
    width: 100%;
    min-height: 46px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 11px 14px;
    border-radius: 13px;
    background: #f5f6fa;
    border: 1px solid var(--fc-border);
    font-size: 15px;
    white-space: normal;
  }

  .fc-nav a:hover,
  .fc-nav a.fc-active {
    background: var(--fc-yellow);
    border-color: var(--fc-yellow);
    color: var(--fc-navy);
  }

  .fc-body.fc-menu-open .fc-header {
    box-shadow: 0 16px 38px rgba(21, 29, 53, .20);
  }
}

@media (max-width: 420px) {
  .fc-menu-toggle {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
    border-radius: 13px;
  }

  .fc-nav {
    top: calc(100% + 6px);
    border-radius: 16px;
  }
}


/* SEO-friendly service navigation */
.fc-section--compact {
  padding-top: 28px;
  padding-bottom: 28px;
}

.fc-section--white {
  background: #fff;
}

.fc-service-intro {
  margin: 0 0 14px;
  color: var(--fc-muted);
  font-weight: 700;
}

.fc-service-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.fc-service-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 9px 14px;
  border-radius: 999px;
  text-decoration: none;
  color: var(--fc-navy);
  background: var(--fc-light);
  border: 1px solid var(--fc-border);
  font-weight: 900;
}

.fc-service-nav a:hover {
  background: var(--fc-yellow);
  border-color: var(--fc-yellow);
}

@media (max-width: 620px) {
  .fc-service-nav {
    flex-direction: column;
  }

  .fc-service-nav a {
    width: 100%;
    border-radius: 14px;
  }
}


/* Server-ready mobile topbar fix — 2026-05-04
   Problem: długi tekst i dane kontaktowe ściskały się na telefonie.
   Rozwiązanie: desktop zachowuje pełny opis, mobile pokazuje krótszy pasek i dwa wygodne przyciski kontaktu.
*/
.fc-topbar__claim-mobile,
.fc-topbar__email-short {
  display: none;
}

.fc-topbar__links {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.fc-topbar__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
}

@media (max-width: 720px) {
  .fc-topbar {
    font-size: 13px;
  }

  .fc-topbar__inner {
    flex-direction: row !important;
    align-items: center !important;
    justify-content: center;
    gap: 8px;
    padding: 6px 0;
  }

  .fc-topbar__claim {
    display: none;
  }

  .fc-topbar__links {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .fc-topbar__separator,
  .fc-topbar__email-full {
    display: none;
  }

  .fc-topbar__email-short {
    display: inline;
  }

  .fc-topbar__link {
    min-height: 34px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(255,255,255,.10);
    border: 1px solid rgba(255,255,255,.22);
    color: var(--fc-yellow);
    line-height: 1;
    white-space: nowrap;
  }
}

@media (min-width: 721px) and (max-width: 980px) {
  .fc-topbar__claim-desktop { display: none; }
  .fc-topbar__claim-mobile { display: inline; }
  .fc-topbar__inner {
    flex-direction: row !important;
    align-items: center !important;
  }
}

@media (max-width: 360px) {
  .fc-topbar__links {
    gap: 6px;
  }
  .fc-topbar__link {
    font-size: 12.5px;
    padding-left: 8px;
    padding-right: 8px;
  }
}


/* Final logo / header refinements — 2026-05-04
   - transparent logo without border
   - larger logo in header
   - stable sizing desktop/mobile
*/
.fc-logo img {
  max-height: 136px;
  max-width: 620px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.fc-header__inner {
  padding-top: 10px;
  padding-bottom: 10px;
}

@media (max-width: 980px) {
  .fc-logo img {
    max-height: 96px;
    max-width: min(420px, 78vw);
  }
}

@media (max-width: 720px) {
  .fc-logo img {
    max-height: 78px;
    max-width: min(320px, 76vw);
  }
}

@media (max-width: 420px) {
  .fc-logo img {
    max-height: 68px;
    max-width: 72vw;
  }
}

/* Richer quality content blocks */
.fc-list-check {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.fc-list-check li {
  position: relative;
  padding-left: 28px;
}

.fc-list-check li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 900;
  color: var(--fc-yellow-2);
}

.fc-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.fc-process-step {
  background: #fff;
  border: 1px solid var(--fc-border);
  border-top: 5px solid var(--fc-yellow);
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 10px 30px rgba(31,41,70,.08);
}

.fc-process-step__no {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: var(--fc-navy);
  color: var(--fc-yellow);
  font-weight: 900;
  margin-bottom: 12px;
}

.fc-process-step h3 {
  margin: 0 0 8px;
  color: var(--fc-navy);
}

.fc-process-step p {
  margin: 0;
  color: var(--fc-muted);
}

@media (max-width: 980px) {
  .fc-process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 620px) {
  .fc-process-grid {
    grid-template-columns: 1fr;
  }
}


/* Quality page card alignment — 2026-05-04
   Wyrównanie kart na /jakosc: nagłówki mają wspólną wysokość,
   więc tekst opisowy zaczyna się w jednej linii zamiast robić schodki.
*/
.fc-quality-page .fc-grid--3 {
  align-items: stretch;
}

.fc-quality-page .fc-grid--3 .fc-card,
.fc-quality-page .fc-process-step {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.fc-quality-page .fc-grid--3 .fc-card h2 {
  min-height: 3.15em;
  display: flex;
  align-items: flex-start;
  margin-bottom: 12px;
  line-height: 1.18;
}

.fc-quality-page .fc-grid--3 .fc-card p {
  margin-top: 0;
}

.fc-quality-page .fc-process-step__no {
  flex: 0 0 auto;
}

.fc-quality-page .fc-process-step h3 {
  min-height: 2.65em;
  display: flex;
  align-items: flex-start;
  margin-bottom: 10px;
  line-height: 1.22;
}

.fc-quality-page .fc-process-step p {
  margin-top: 0;
}

@media (max-width: 620px) {
  .fc-quality-page .fc-grid--3 .fc-card h2,
  .fc-quality-page .fc-process-step h3 {
    min-height: 0;
  }
}
