/* ============================================
   BAJLEX BHP — Global Stylesheet
   Deep inveni.pl inspiration:
   Blue gradient footer, #008BD0 accent blue,
   #E5A835 CTA yellow, Ubuntu + Open Sans
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@300;400;500;700&family=Open+Sans:wght@300;400;500;600;700&display=swap');

/* ---------- Custom Properties ---------- */
:root {
  /* Primary blue — used for links, heading accents, footer */
  --blue: #008BD0;
  --blue-light: #82C5E7;
  --blue-dark: #006FA8;
  --blue-bg: #E8F4FA;

  /* Yellow/Orange — CTA buttons, bullet icons, small accents */
  --yellow: #E5A835;
  --yellow-dark: #C48F20;
  --yellow-light: #F2C35A;

  /* Neutrals */
  --gray-50: #F4F7F9;
  --gray-100: #ECEDF1;
  --gray-150: #E3E5EA;
  --gray-200: #D9DBE1;
  --gray-300: #BFC2CA;
  --gray-400: #9DA1AB;
  --gray-500: #777777;
  --gray-600: #555555;
  --gray-700: #333333;
  --gray-800: #1A1F2B;
  --white: #FFFFFF;

  --bg-page: var(--gray-50);
  --bg-card: var(--white);
  --text-heading: var(--gray-600);
  --text-body: var(--gray-500);
  --text-dark: var(--gray-700);

  --font-heading: 'Ubuntu', Tahoma, sans-serif;
  --font-body: 'Open Sans', Tahoma, sans-serif;

  --container: 1140px;
  --header-h: 80px;
  --r-sm: 8px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 30px;
  --r-full: 100px;

  --ease: 200ms ease;
  --ease-slow: 350ms ease;
}

/* ---------- Reset ---------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-body); font-size: 16px; font-weight: 400;
  line-height: 1.7; color: var(--text-body); background: var(--bg-page);
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea { font-family: inherit; font-size: inherit; }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); color: var(--text-dark); }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 32px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* ============================================
   HEADER
   ============================================ */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: var(--white);
  height: var(--header-h);
  transition: box-shadow var(--ease);
  border-bottom: 1px solid transparent;
}
.header--scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
  border-bottom-color: var(--gray-100);
}
.header__inner { display: flex; align-items: center; justify-content: space-between; height: 100%; }
.header__logo { display: flex; align-items: center; }
.header__logo img { height: 54px; width: auto; }
.header__right { display: flex; align-items: center; gap: 12px; }

/* Phone CTA — styled as yellow pill button, pushed last via order */
.header__phone {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 24px; border-radius: var(--r-full);
  background: var(--yellow); color: var(--white);
  font-weight: 600; font-size: 14px; white-space: nowrap;
  transition: background var(--ease), box-shadow var(--ease);
  order: 10;
}
.header__phone:hover { background: var(--yellow-dark); box-shadow: 0 4px 12px rgba(229,168,53,0.3); }
.header__phone svg { width: 16px; height: 16px; color: var(--white); }

/* Nav */
.nav__list { display: flex; align-items: center; gap: 0; }
.nav__item { position: relative; }
.nav__link {
  display: flex; align-items: center; gap: 4px;
  padding: 10px 18px; color: var(--gray-600);
  font-size: 14px; font-weight: 500;
  transition: color var(--ease); white-space: nowrap;
}
.nav__link:hover { color: var(--blue); }
.nav__link--active { color: var(--blue); font-weight: 600; }
.nav__link svg { width: 12px; height: 12px; color: var(--gray-400); transition: transform var(--ease); }

/* Dropdown */
.nav__dropdown {
  position: absolute; top: calc(100% + 10px); left: 0;
  min-width: 280px; background: var(--white);
  border-radius: var(--r-md); box-shadow: 0 12px 48px rgba(0,0,0,0.1);
  padding: 10px 0; opacity: 0; visibility: hidden;
  transform: translateY(8px); transition: opacity var(--ease), transform var(--ease), visibility var(--ease);
  z-index: 100;
}
.nav__item:hover .nav__dropdown, .nav__item--open .nav__dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.nav__item:hover .nav__link svg, .nav__item--open .nav__link svg { transform: rotate(180deg); }

.nav__dropdown-link {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 24px; color: var(--gray-600);
  font-size: 14px; font-weight: 400;
  transition: background var(--ease), color var(--ease);
}
.nav__dropdown-link:hover { background: var(--gray-50); color: var(--blue); }
.nav__dropdown-link::before {
  content: ''; width: 6px; height: 6px;
  background: var(--yellow); border-radius: 50%; flex-shrink: 0;
}

/* Hamburger */
.hamburger { display: none; flex-direction: column; justify-content: center; gap: 6px; width: 28px; height: 28px; }
.hamburger span { display: block; width: 100%; height: 2px; background: var(--gray-700); border-radius: 2px; transition: transform var(--ease), opacity var(--ease); }
.hamburger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative; margin-top: var(--header-h);
  min-height: 620px; display: flex; align-items: center;
  overflow: hidden; background: var(--gray-800);
}
.hero__bg { position: absolute; inset: 0; z-index: 1; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.30; }
.hero__overlay {
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(160deg,
    rgba(0,139,208,0.88) 0%,
    rgba(0,111,168,0.65) 40%,
    rgba(0,80,130,0.80) 100%);
}
.hero__content { position: relative; z-index: 3; max-width: 620px; padding: 80px 0; }
.hero__accent { display: block; width: 56px; height: 4px; background: var(--yellow); border-radius: 2px; margin-bottom: 28px; }
.hero__title { font-size: 3.25rem; font-weight: 700; color: var(--white); line-height: 1.08; letter-spacing: -0.025em; margin-bottom: 20px; }
.hero__subtitle { font-size: 1.125rem; color: rgba(255,255,255,0.92); font-weight: 300; line-height: 1.7; max-width: 520px; }
.hero__buttons { display: flex; gap: 14px; margin-top: 36px; flex-wrap: wrap; }
.btn--lg { padding: 16px 40px; font-size: 0.9375rem; }

/* ---- Trust Bar ---- */
.trust-bar {
  background: var(--white); border-bottom: 1px solid var(--gray-150);
  box-shadow: 0 4px 24px rgba(0,0,0,0.04);
  position: relative; z-index: 10;
}
.trust-bar__inner {
  display: flex; align-items: center; justify-content: center;
  padding: 28px 32px; gap: 40px;
  max-width: 100%; width: 100%;
}
.trust-bar__item { text-align: center; }
.trust-bar__number {
  font-family: var(--font-heading); font-size: 2rem;
  font-weight: 700; color: var(--blue); line-height: 1;
}
.trust-bar__suffix {
  font-family: var(--font-heading); font-size: 1.25rem;
  font-weight: 700; color: var(--blue); margin-left: 2px;
}
.trust-bar__label {
  display: block; font-size: 0.75rem; color: var(--gray-500);
  text-transform: uppercase; letter-spacing: 0.08em;
  margin-top: 4px; font-weight: 500;
}
.trust-bar__divider {
  width: 1px; height: 40px; background: var(--gray-200); flex-shrink: 0;
}

/* ---- Fade-in animations ---- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-in {
  opacity: 0; animation: fadeInUp 0.7s ease forwards;
}
.fade-in--d1 { animation-delay: 0.15s; }
.fade-in--d2 { animation-delay: 0.30s; }
.fade-in--d3 { animation-delay: 0.45s; }

/* ---- Scroll Reveal ---- */
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1; transform: translateY(0);
}

/* ============================================
   SECTION SYSTEM
   ============================================ */
.section { padding: 80px 0; }
.section--white { background: var(--white); }
.section--gray { background: var(--gray-50); }
.section--blue {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
}

.section__header { text-align: center; margin-bottom: 48px; }
.section__label {
  display: inline-block; font-family: var(--font-body);
  font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--blue);
  margin-bottom: 10px;
}
.section__title {
  font-family: var(--font-heading); font-size: 2.25rem;
  font-weight: 500; color: var(--text-dark);
  line-height: 1.2; letter-spacing: -0.015em;
}
.section__title span { color: var(--blue); }

.section__subtitle {
  max-width: 560px; margin: 16px auto 0; text-align: center;
  font-size: 1rem; color: var(--gray-500); font-weight: 300; line-height: 1.7;
}

/* Blue section overlays */
.section--blue .section__label { color: var(--yellow); }
.section--blue .section__title { color: var(--white); }
.section--blue .section__title span { color: var(--yellow); }
.section--blue .section__subtitle { color: rgba(255,255,255,0.65); }

/* ============================================
   ABOUT
   ============================================ */
.about__grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: center;
}
.about__image { border-radius: var(--r-lg); overflow: hidden; }
.about__image img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; }
.about__text {
  font-size: 0.9375rem; color: var(--gray-500);
  line-height: 1.75; font-weight: 400;
}
.about__text + .about__text { margin-top: 16px; }
.about__stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; margin-top: 32px; padding-top: 28px;
  border-top: 1px solid var(--gray-150);
}
.about__stat-number {
  font-family: var(--font-heading); font-size: 1.75rem;
  font-weight: 700; color: var(--blue); line-height: 1.1;
}
.about__stat-label {
  font-size: 0.8125rem; color: var(--gray-500); margin-top: 4px; font-weight: 400;
}

/* ============================================
   SERVICES GRID
   ============================================ */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.service-card {
  background: var(--white); border-radius: var(--r-lg);
  padding: 32px 28px 28px; text-align: left;
  box-shadow: 0 1px 8px rgba(0,0,0,0.04);
  position: relative; overflow: hidden;
  transition: transform var(--ease-slow), box-shadow var(--ease-slow);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0,139,208,0.10);
}

.service-card__icon { margin-bottom: 20px; }
.service-card__icon svg { width: 36px; height: 36px; color: var(--blue); stroke: var(--blue); fill: none; stroke-width: 1.5; }

.service-card__title { font-size: 1.125rem; font-weight: 600; margin-bottom: 8px; line-height: 1.35; color: var(--text-dark); }
.service-card__desc { font-size: 0.875rem; color: var(--gray-500); line-height: 1.7; font-weight: 400; }

.service-card__link {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 16px; font-size: 0.8125rem; font-weight: 600;
  color: var(--blue); transition: gap var(--ease);
}
.service-card:hover .service-card__link { gap: 10px; }
.service-card__link svg { width: 14px; height: 14px; transition: transform var(--ease); }
.service-card:hover .service-card__link svg { transform: translateX(3px); }

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  padding: 64px 40px; text-align: center;
  color: var(--white);
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; top: -60px; right: -60px;
  width: 240px; height: 240px; border-radius: 50%;
  background: rgba(255,255,255,0.05);
}
.cta-banner::after {
  content: ''; position: absolute; bottom: -80px; left: -40px;
  width: 200px; height: 200px; border-radius: 50%;
  background: rgba(255,255,255,0.03);
}
.cta-banner__title { font-size: 1.75rem; font-weight: 500; margin-bottom: 10px; color: var(--white); position: relative; z-index: 1; }
.cta-banner__desc { font-size: 0.9375rem; color: rgba(255,255,255,0.7); font-weight: 300; margin-bottom: 28px; position: relative; z-index: 1; max-width: 560px; margin-left: auto; margin-right: auto; }

/* ============================================
   CONTACT
   ============================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.contact__image { border-radius: var(--r-xl); overflow: hidden; aspect-ratio: 4/3; }
.contact__image img { width: 100%; height: 100%; object-fit: cover; }

.form { display: flex; flex-direction: column; gap: 20px; }
.form__group { display: flex; flex-direction: column; gap: 6px; }
.form__label { font-size: 0.8125rem; font-weight: 600; color: var(--text-dark); text-transform: uppercase; letter-spacing: 0.04em; }
.form__input, .form__textarea {
  padding: 12px 16px; border: 1px solid var(--gray-200);
  border-radius: var(--r-sm); font-size: 0.9375rem; color: var(--text-dark);
  background: var(--white); transition: border-color var(--ease), box-shadow var(--ease);
  outline: none;
}
.form__input:focus, .form__textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(0,139,208,0.1); }
.form__input::placeholder, .form__textarea::placeholder { color: var(--gray-300); font-weight: 300; }
.form__textarea { resize: vertical; min-height: 120px; }
.form__input.error, .form__textarea.error { border-color: #D32F2F; }
.form__error-msg { font-size: 12px; color: #D32F2F; display: none; }
.form__error-msg.visible { display: block; }

.form__checkbox { display: flex; align-items: flex-start; gap: 10px; cursor: pointer; font-size: 12px; color: var(--gray-500); line-height: 1.6; }
.form__checkbox input[type="checkbox"] { width: 18px; height: 18px; margin-top: 2px; flex-shrink: 0; accent-color: var(--blue); cursor: pointer; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 36px; font-family: var(--font-body);
  font-size: 0.875rem; font-weight: 600; border-radius: var(--r-full);
  transition: background var(--ease), box-shadow var(--ease);
  position: relative; z-index: 1; letter-spacing: 0.02em;
}
.btn--primary { background: var(--yellow); color: var(--white); }
.btn--primary:hover { background: var(--yellow-dark); box-shadow: 0 4px 12px rgba(229,168,53,0.3); }
.btn--outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.3); }
.btn--outline:hover { border-color: var(--yellow); color: var(--yellow); }

.form__success { display: none; padding: 20px; background: #E8F5E9; border-radius: var(--r-sm); color: #2E7D32; font-weight: 500; text-align: center; font-size: 14px; }
.form__success.visible { display: block; }

/* ============================================
   FOOTER — white, clean, institutional
   ============================================ */
.footer {
  background: var(--white); color: var(--gray-600); padding: 0;
  border-top: 1px solid var(--gray-150);
}

/* Footer top — logo + description + social */
.footer__top {
  padding: 56px 0 40px;
  border-bottom: 1px solid var(--gray-150);
}
.footer__top-inner {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 32px;
}
.footer__brand-info { max-width: 360px; }
.footer__brand-info img { height: 54px; width: auto; margin-bottom: 16px; }
.footer__brand-desc {
  font-size: 0.875rem; color: var(--gray-500); line-height: 1.7; font-weight: 400;
}
.footer__social { display: flex; gap: 12px; margin-top: 20px; }
.footer__social a {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--gray-50); color: var(--gray-600);
  transition: background var(--ease), color var(--ease);
}
.footer__social a:hover { background: var(--blue); color: var(--white); }
.footer__social svg { width: 18px; height: 18px; }

/* Footer columns */
.footer__columns {
  display: grid; grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 40px; padding: 48px 0;
}
.footer__col-title {
  font-family: var(--font-heading); font-size: 0.9375rem;
  font-weight: 700; color: var(--text-dark); margin-bottom: 16px;
  text-transform: uppercase; letter-spacing: 0.06em;
}
.footer__col-list { display: flex; flex-direction: column; gap: 10px; }
.footer__col-link {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.875rem; color: var(--gray-500);
  transition: color var(--ease); font-weight: 400;
}
.footer__col-link:hover { color: var(--blue); }
.footer__col-link::before {
  content: ''; width: 5px; height: 5px; flex-shrink: 0;
  border-radius: 50%; background: var(--yellow);
  display: inline-block;
}

/* Footer contact info */
.footer__contact-item {
  font-size: 0.875rem; color: var(--gray-500); line-height: 1.7; margin-bottom: 14px; font-weight: 400;
}
.footer__contact-item strong { font-weight: 600; color: var(--text-dark); display: block; margin-bottom: 4px; font-size: 0.8125rem; text-transform: uppercase; letter-spacing: 0.03em; }
.footer__contact-item a { color: var(--blue); font-weight: 600; transition: color var(--ease); }
.footer__contact-item a:hover { color: var(--yellow); }

/* Footer bottom bar */
.footer__bottom {
  padding: 20px 0; border-top: 1px solid var(--gray-150);
  text-align: center;
}
.footer__copy { font-size: 12px; color: var(--gray-400); }
.footer__credit { font-size: 12px; color: var(--gray-400); margin-top: 4px; }
.footer__credit a { color: var(--blue); font-weight: 600; transition: color var(--ease); }
.footer__credit a:hover { color: var(--yellow); }

/* ============================================
   SERVICE SUBPAGE — with hero banner
   ============================================ */
.page-hero {
  position: relative; margin-top: var(--header-h);
  height: 300px; display: flex; align-items: center;
  justify-content: center; overflow: hidden; background: var(--gray-800);
}
.page-hero__bg { position: absolute; inset: 0; z-index: 1; }
.page-hero__bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.30; }
.page-hero__overlay {
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(160deg,
    rgba(0,139,208,0.88) 0%,
    rgba(0,111,168,0.65) 40%,
    rgba(0,80,130,0.80) 100%);
}
.page-hero__content { position: relative; z-index: 3; text-align: center; }
.page-hero__accent { display: block; width: 36px; height: 3px; background: var(--yellow); border-radius: 2px; margin: 0 auto 16px; }
.page-hero__title { font-size: 2.25rem; font-weight: 700; color: var(--white); letter-spacing: -0.015em; }
.page-hero__breadcrumb { margin-top: 12px; font-size: 0.8125rem; color: rgba(255,255,255,0.5); }
.page-hero__breadcrumb a { color: rgba(255,255,255,0.7); transition: color var(--ease); }
.page-hero__breadcrumb a:hover { color: var(--yellow); }

.service-page__content { max-width: 720px; margin: 0 auto; padding: 64px 0 80px; }
.service-page__content > p:first-child { font-size: 1rem; color: var(--gray-500); line-height: 1.75; font-weight: 400; margin-bottom: 20px; }
.service-page__content h2 { font-size: 1.125rem; font-weight: 700; color: var(--text-dark); margin: 40px 0 12px; }
.service-page__content p { color: var(--gray-500); line-height: 1.75; margin-bottom: 14px; font-weight: 400; font-size: 0.9375rem; }
.service-page__content ul { padding: 0; margin-bottom: 20px; }
.service-page__content ul li { position: relative; padding-left: 20px; color: var(--gray-600); line-height: 1.75; margin-bottom: 6px; font-weight: 400; font-size: 0.9375rem; }
.service-page__content ul li::before { content: ''; position: absolute; left: 0; top: 11px; width: 5px; height: 5px; background: var(--yellow); border-radius: 50%; }

/* Service page CTA at bottom */
.service-cta {
  background: var(--blue-bg); border-radius: var(--r-lg);
  padding: 48px; text-align: center; margin-top: 48px;
  border: 1px solid rgba(0,139,208,0.1);
}
.service-cta__title { font-size: 1.25rem; font-weight: 600; margin-bottom: 8px; color: var(--text-dark); }
.service-cta__desc { font-size: 0.875rem; color: var(--gray-500); font-weight: 400; margin-bottom: 20px; }

/* ============================================
   REALIZACJE PAGE
   ============================================ */
.realizacja-card {
  background: var(--white); border-radius: var(--r-lg);
  overflow: hidden; box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  margin-bottom: 48px;
}
.realizacja-card:last-child { margin-bottom: 0; }

.realizacja-card__gallery {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px;
}
.realizacja-card__gallery--single {
  grid-template-columns: 1fr;
}
.realizacja-card__gallery img {
  width: 100%; height: 280px; object-fit: cover;
}

.realizacja-card__body { padding: 36px 40px 40px; }

.realizacja-card__tag {
  display: inline-block; padding: 5px 14px;
  background: var(--blue-bg); color: var(--blue);
  font-size: 0.6875rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.12em; border-radius: var(--r-full);
  margin-right: 10px;
}
.realizacja-card__date {
  font-size: 0.75rem; color: var(--gray-400); font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.06em;
}
.realizacja-card__title {
  font-family: var(--font-heading); font-size: 1.5rem;
  font-weight: 700; color: var(--text-dark); margin: 16px 0 12px;
  line-height: 1.3;
}

.realizacja-card__meta {
  display: flex; flex-wrap: wrap; gap: 8px 24px;
  padding: 16px 0; border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
  margin-bottom: 20px;
}
.realizacja-card__meta span {
  font-size: 0.8125rem; color: var(--gray-500); font-weight: 400;
}
.realizacja-card__meta strong {
  color: var(--text-dark); font-weight: 600;
}

.realizacja-card__text p {
  font-size: 0.9375rem; color: var(--gray-500); line-height: 1.75;
  font-weight: 400; margin-bottom: 12px;
}
.realizacja-card__text p:last-child { margin-bottom: 0; }
.realizacja-card__text ul { padding: 0; margin: 8px 0 16px; }
.realizacja-card__text ul li {
  position: relative; padding-left: 20px;
  color: var(--gray-600); line-height: 1.75;
  margin-bottom: 6px; font-weight: 400; font-size: 0.9375rem;
}
.realizacja-card__text ul li::before {
  content: ''; position: absolute; left: 0; top: 11px;
  width: 5px; height: 5px; background: var(--yellow); border-radius: 50%;
}

.realizacja-card__source {
  margin-top: 20px; font-size: 0.75rem; color: var(--gray-400); font-style: italic;
}
.realizacja-card__source a {
  color: var(--blue); font-weight: 600; transition: color var(--ease);
}
.realizacja-card__source a:hover { color: var(--yellow); }

@media (max-width: 768px) {
  .realizacja-card__gallery { grid-template-columns: 1fr; }
  .realizacja-card__gallery img { height: 220px; }
  .realizacja-card__body { padding: 24px 20px 28px; }
  .realizacja-card__title { font-size: 1.25rem; }
  .realizacja-card__meta { flex-direction: column; gap: 6px; }
}

/* ============================================
   NEWS PAGE
   ============================================ */
.news-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.news-card { background: var(--white); border-radius: var(--r-lg); overflow: hidden; box-shadow: 0 1px 8px rgba(0,0,0,0.04); }
.news-card__body { padding: 28px; }
.news-card__date { font-size: 0.6875rem; font-weight: 600; color: var(--blue); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 10px; }
.news-card__title { font-family: var(--font-heading); font-size: 1.0625rem; font-weight: 600; color: var(--text-dark); margin-bottom: 8px; line-height: 1.4; }
.news-card__excerpt { font-size: 0.875rem; color: var(--gray-500); line-height: 1.7; font-weight: 400; }

/* ============================================
   PARTNERS / ZAUFALI NAM
   ============================================ */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  align-items: stretch;
}
.partner-logo {
  display: flex; align-items: center; justify-content: center;
  background: var(--white); border-radius: 10px; padding: 20px 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.partner-logo img {
  max-width: 100%; max-height: 60px; object-fit: contain;
}
.partner-logo--lg img {
  max-height: 160px;
  transform: scale(1.8) translateX(18%);
}
@media (max-width: 992px) {
  .partners-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 600px) {
  .partners-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .partner-logo { padding: 14px 10px; }
  .partner-logo img { max-height: 44px; }
}
@media (max-width: 400px) {
  .partners-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================
   CONTACT PAGE EXTRAS
   ============================================ */
.contact-info__title {
  font-family: var(--font-heading); font-size: 1.25rem;
  font-weight: 700; color: var(--text-dark); margin-bottom: 16px;
}
.contact-info__item {
  color: var(--gray-500); line-height: 1.75; margin-bottom: 16px; font-weight: 400; font-size: 0.9375rem;
}
.contact-info__item strong { font-weight: 700; color: var(--text-dark); display: block; margin-bottom: 4px; }
.contact-info__item a { color: var(--blue); font-weight: 600; transition: color var(--ease); }
.contact-info__item a:hover { color: var(--yellow); }

/* Contact page map */
.contact-map {
  margin-top: 40px; border-radius: 12px; overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.contact-map iframe { display: block; width: 100%; border: 0; }

/* ============================================
   PHONE WIDGET (pulsating)
   ============================================ */
.phone-widget {
  position: fixed; bottom: 28px; right: 28px;
  width: 60px; height: 60px; border-radius: 50%;
  background: linear-gradient(135deg, var(--yellow) 0%, #d4922a 100%);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); z-index: 9999;
  box-shadow: 0 6px 20px rgba(212,146,42,0.45), 0 2px 8px rgba(0,0,0,0.15);
  transition: transform var(--ease), box-shadow var(--ease);
  cursor: pointer; text-decoration: none;
}
.phone-widget svg { width: 26px; height: 26px; stroke: var(--white); }
.phone-widget:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 28px rgba(212,146,42,0.55), 0 4px 12px rgba(0,0,0,0.2);
}

.phone-widget::before,
.phone-widget::after {
  content: ''; position: absolute; inset: 0;
  border-radius: 50%; z-index: -1;
  background: linear-gradient(135deg, var(--yellow) 0%, #d4922a 100%);
}
.phone-widget::before { animation: pulseRing 2s ease-out infinite; }
.phone-widget::after  { animation: pulseRing 2s ease-out 1s infinite; }

@keyframes pulseRing {
  0%   { transform: scale(1);   opacity: 0.4; }
  80%  { transform: scale(1.5); opacity: 0; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* ============================================
   COOKIES BANNER
   ============================================ */
.cookies-banner {
  position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%);
  z-index: 9999; width: auto; max-width: 720px;
  background: var(--white); color: var(--text-dark); padding: 16px 28px;
  display: flex; align-items: center; justify-content: center; gap: 20px;
  font-size: 0.85rem; line-height: 1.5;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.12), 0 0 0 1px rgba(0,0,0,0.04);
  transition: transform 0.4s ease, opacity 0.4s ease;
}
.cookies-banner.hidden { transform: translateX(-50%) translateY(120%); opacity: 0; pointer-events: none; }
.cookies-banner__text { color: var(--gray-500); }
.cookies-banner__text a { color: var(--blue); font-weight: 600; text-decoration: none; }
.cookies-banner__text a:hover { text-decoration: underline; }
.cookies-banner__btn {
  background: var(--blue); color: #fff; border: none; padding: 10px 28px;
  border-radius: 8px; font-weight: 600; font-size: 0.85rem; cursor: pointer;
  white-space: nowrap; transition: background 0.2s;
}
.cookies-banner__btn:hover { background: #1a5fb5; }
@media (max-width: 600px) {
  .cookies-banner { left: 12px; right: 12px; transform: none; max-width: none; flex-direction: column; text-align: center; gap: 12px; padding: 16px; bottom: 12px; }
  .cookies-banner.hidden { transform: translateY(120%); }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1200px) {
  .hero__title { font-size: 2.75rem; }
  .hero { min-height: 560px; }
  .trust-bar__inner { gap: 28px; }
  .trust-bar__number { font-size: 1.75rem; }
}

@media (max-width: 1024px) {
  .hero__title { font-size: 2.25rem; }
  .hero { min-height: 520px; }
  .section__title { font-size: 1.75rem; }
  .section { padding: 64px 0; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid, .about__grid { grid-template-columns: 1fr; gap: 32px; }
  .news-grid { grid-template-columns: 1fr; }
  .about__stats { grid-template-columns: repeat(3, 1fr); }
  .footer__columns { grid-template-columns: 1fr 1fr; }
  .footer__top-inner { flex-direction: column; }

  .hamburger { display: flex; }
  .header__phone { padding: 8px 16px; font-size: 13px; }
  .header__phone-text { display: none; }
  .header__right { gap: 10px; }

  .nav {
    position: fixed; top: var(--header-h); left: 0; right: 0; bottom: 0;
    background: var(--white); padding: 20px;
    transform: translateX(100%); transition: transform var(--ease);
    overflow-y: auto; z-index: 999; border-top: 1px solid var(--gray-100);
  }
  .nav.open { transform: translateX(0); }
  .nav__list { flex-direction: column; align-items: stretch; }
  .nav__link { padding: 12px 0; font-size: 15px; color: var(--gray-700); border-bottom: 1px solid var(--gray-100); }
  .nav__dropdown { position: static; background: var(--gray-50); border-radius: var(--r-sm); box-shadow: none; opacity: 1; visibility: visible; transform: none; max-height: 0; overflow: hidden; transition: max-height var(--ease); padding: 0; margin-top: 8px; }
  .nav__item--open .nav__dropdown { max-height: 500px; padding: 8px 0; }
  .nav__dropdown-link { color: var(--gray-600); padding: 10px 16px; font-size: 14px; }

  .trust-bar__inner { gap: 20px; flex-wrap: wrap; }
  .trust-bar__divider:nth-child(4) { display: none; }
}

@media (max-width: 768px) {
  .hero__title { font-size: 2rem; }
  .hero__subtitle { font-size: 1rem; }
  .section__title { font-size: 1.5rem; }
  .container { padding: 0 20px; }
  .section { padding: 48px 0; }
  .section__header { margin-bottom: 32px; }
  .header { height: 64px; }
  .page-hero { height: 220px; margin-top: 64px; }
  .page-hero__title { font-size: 1.5rem; }

  .nav { top: 64px; }

  .hero { min-height: 480px; }
  .hero__content { padding: 48px 0; text-align: center; max-width: 100%; }
  .hero__accent { margin-left: auto; margin-right: auto; }
  .hero__subtitle { margin-left: auto; margin-right: auto; }
  .hero__buttons { flex-direction: row; gap: 10px; justify-content: center; }
  .hero__buttons .btn { text-align: center; justify-content: center; font-size: 0.85rem; padding: 10px 16px; }
  .btn--lg { padding: 14px 32px; font-size: 0.875rem; }

  .trust-bar__inner {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 20px 28px; padding: 24px 0;
  }
  .trust-bar__divider { display: none; }
  .trust-bar__number { font-size: 1.5rem; }

  .services-grid { grid-template-columns: 1fr; gap: 12px; }
  .about__stats { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .cta-banner { padding: 32px 20px; border-radius: var(--r-md); }
  .cta-banner__title { font-size: 1.25rem; }

  .footer__columns { grid-template-columns: 1fr; gap: 28px; }
  .footer__top { padding: 32px 0 24px; }
  .footer__columns { padding: 32px 0; }

  .service-page__content { padding: 40px 0 48px; }
  .service-cta { padding: 32px 20px; }
}

@media (max-width: 480px) {
  .hero__title { font-size: 1.75rem; }
  .hero { min-height: 440px; }
  .hero__content { padding: 36px 0; }
  .container { padding: 0 16px; }
}
