/* ============================================================
   Pola Global Freight — design tokens & base
   navy + biel + powściągliwe złoto · Newsreader + Hanken Grotesk
   ============================================================ */

:root {
  /* brand */
  --navy:      #14233D;
  --navy-700:  #1E3A5F;
  --navy-900:  #0E1A2E;
  --bg:        #FFFFFF;
  --bg-soft:   #F5F7FA;
  --accent:    #1E3A5F;  /* akcent = navy-700 (granat, bez złota) */
  --accent-700:#14233D;  /* navy */
  --steel:     #93A8C8;  /* jasny granat na ciemnym tle */
  --ink:       #0F1726;
  --muted:     #5B6B82;
  --line:      #E2E8F0;
  --line-navy: rgba(255,255,255,.14);
  --muted-navy:#A9B8CE;

  /* type */
  --serif: "Archivo", system-ui, sans-serif;
  --grotesk: "Manrope", system-ui, -apple-system, sans-serif;

  /* metrics */
  --maxw: 1360px;
  --gutter: clamp(20px, 5vw, 72px);
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 16px;
  --section-y: clamp(72px, 9vw, 132px);

  --shadow-sm: 0 1px 2px rgba(15,23,38,.06), 0 1px 1px rgba(15,23,38,.04);
  --shadow-md: 0 18px 40px -22px rgba(15,23,38,.30), 0 4px 12px -6px rgba(15,23,38,.12);
  --shadow-lg: 0 40px 80px -40px rgba(15,23,38,.45);
  --nav-shadow: 0 1px 0 var(--line), 0 8px 28px -18px rgba(15,23,38,.28);
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--grotesk);
  color: var(--ink);
  background: var(--bg);
  font-size: 17px;
  line-height: 1.6;
  letter-spacing: -0.003em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 700;
  line-height: 1.07;
  letter-spacing: -0.022em;
  margin: 0;
  text-wrap: balance;
}

p { margin: 0; text-wrap: pretty; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font-family: inherit; }

.tabular { font-variant-numeric: tabular-nums; }

/* ---------- layout helpers ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }

.eyebrow {
  font-family: var(--grotesk);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-700);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 1.5px;
  background: var(--accent);
  display: inline-block;
}
.eyebrow.on-navy { color: #fff; }
.eyebrow.on-navy::before { background: rgba(255,255,255,.55); }

.section-head { max-width: 680px; }
.section-head h2 {
  font-size: clamp(2rem, 3.6vw, 3rem);
  margin-top: 18px;
}
.section-head .lead {
  color: var(--muted);
  font-size: clamp(1.02rem, 1.4vw, 1.18rem);
  margin-top: 18px;
  max-width: 60ch;
}

/* ---------- buttons ---------- */
.btn {
  --bg-btn: var(--navy);
  --fg-btn: #fff;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: var(--r-sm);
  font-weight: 600;
  font-size: 15.5px;
  letter-spacing: -0.005em;
  border: 1px solid transparent;
  cursor: pointer;
  background: var(--bg-btn);
  color: var(--fg-btn);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn .arr { transition: transform .2s ease; }
.btn:hover .arr { transform: translateX(3px); }

.btn--light { --bg-btn: #fff; --fg-btn: var(--navy); }
.btn--light:hover { background: #fff; }

.btn--ghost {
  --bg-btn: transparent; --fg-btn: var(--navy);
  border-color: var(--line);
}
.btn--ghost:hover { border-color: var(--navy); background: #fff; }

.btn--ghost-navy {
  --bg-btn: transparent; --fg-btn: #fff;
  border-color: var(--line-navy);
}
.btn--ghost-navy:hover { border-color: rgba(255,255,255,.5); background: rgba(255,255,255,.06); }

.link-arrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; font-size: 15px; color: var(--navy-700);
}
.link-arrow .arr { transition: transform .2s ease; }
.link-arrow:hover .arr { transform: translateX(4px); }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.86);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .25s ease, border-color .25s ease, background .25s ease;
}
.nav.scrolled { box-shadow: var(--nav-shadow); border-bottom-color: var(--line); }
.nav__inner {
  display: flex; align-items: center; gap: 28px;
  height: 74px;
}

/* wordmark */
.wordmark { display: flex; flex-direction: column; line-height: 1; gap: 3px; flex: none; }
.wordmark__main {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 23px;
  letter-spacing: 0.02em;
  color: var(--navy);
  white-space: nowrap;
}
.wordmark__main b { color: var(--navy); font-weight: 600; }
.wordmark__sub {
  font-size: 9.5px; font-weight: 600; letter-spacing: 0.34em;
  text-transform: uppercase; color: var(--muted); white-space: nowrap;
}

/* logo image */
.brand { display: inline-flex; align-items: center; flex: none; }
.brand-logo { height: 46px; width: auto; display: block; }
.brand-logo--sm { height: 40px; }

.nav__menu { display: flex; align-items: center; gap: 4px; margin-left: 10px; }
.nav__link {
  position: relative;
  padding: 9px 14px; border-radius: 7px;
  font-size: 15px; font-weight: 500; color: var(--ink);
  display: inline-flex; align-items: center; gap: 6px; white-space: nowrap;
  transition: background .15s ease, color .15s ease;
}
.nav__link:hover { background: var(--bg-soft); color: var(--navy); }
.nav__link .chev { width: 9px; height: 9px; transition: transform .2s ease; opacity: .55; }

.nav__spacer { flex: 1; }
.nav__right { display: flex; align-items: center; gap: 12px; }

/* services dropdown */
.has-drop { position: relative; }
.drop {
  position: absolute; top: calc(100% + 12px); left: 50%; transform: translateX(-50%) translateY(6px);
  width: 600px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
  padding: 12px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 6px 14px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
}
/* invisible bridge so the cursor can travel from the trigger to the menu
   without crossing dead space and dropping the :hover state */
.drop::before {
  content: ""; position: absolute;
  top: -16px; left: 0; right: 0; height: 16px;
}
.has-drop:hover .drop,
.has-drop:focus-within .drop {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.has-drop:hover .nav__link .chev { transform: rotate(180deg); }
.drop__item {
  display: flex; gap: 13px; padding: 12px 14px; border-radius: var(--r-sm);
  transition: background .15s ease;
}
.drop__item:hover { background: var(--bg-soft); }
.drop__item.is-flag { grid-column: 1 / -1; background: var(--navy); color: #fff; }
.drop__item.is-flag:hover { background: var(--navy-700); }
.drop__item.is-flag .drop__desc { color: var(--muted-navy); }
.drop__ico {
  flex: none; width: 34px; height: 34px; border-radius: 8px;
  background: var(--bg-soft); color: var(--navy);
  display: grid; place-items: center;
}
.is-flag .drop__ico { background: rgba(255,255,255,.12); color: #fff; }
.drop__name { display: block; font-weight: 600; font-size: 14.5px; }
.drop__desc { display: block; font-size: 12.5px; color: var(--muted); line-height: 1.45; margin-top: 3px; text-wrap: pretty; }
.is-flag .drop__name .tag {
  display: inline-block; font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: #fff; margin-left: 8px; vertical-align: middle;
}

/* language switcher */
.langw { position: relative; }
.langw__btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 12px; border-radius: 7px;
  background: transparent; border: 1px solid var(--line);
  font-size: 14px; font-weight: 600; color: var(--ink); cursor: pointer;
  transition: border-color .15s, background .15s;
}
.langw__btn:hover { border-color: var(--navy); }
.langw__code { letter-spacing: .04em; }
.langw__btn .chev { width: 10px; height: 10px; opacity: .6; transition: transform .2s ease; }
.langw[aria-expanded="true"] .langw__btn .chev { transform: rotate(180deg); }
.langw[aria-expanded="true"] .langw__btn { border-color: var(--navy); }

.langw__menu {
  position: absolute; top: calc(100% + 10px); right: 0;
  width: 196px; background: #fff;
  border: 1px solid var(--line); border-radius: var(--r-md);
  box-shadow: var(--shadow-lg); padding: 6px;
  opacity: 0; visibility: hidden; transform: translateY(6px);
  transition: opacity .16s ease, transform .16s ease, visibility .16s;
  z-index: 120;
}
.langw[aria-expanded="true"] .langw__menu { opacity: 1; visibility: visible; transform: translateY(0); }
.langw__opt {
  display: flex; align-items: center; gap: 12px; width: 100%;
  padding: 10px 11px; border-radius: 7px; border: 0; background: transparent;
  font-family: inherit; font-size: 14px; cursor: pointer; color: var(--ink);
  text-align: left; transition: background .12s;
}
.langw__opt:hover { background: var(--bg-soft); }
.langw__opt .code {
  font-weight: 700; font-size: 12px; letter-spacing: .05em; color: var(--navy);
  width: 24px; flex: none;
}
.langw__opt .name { flex: 1; }
.langw__opt[aria-current="true"] { background: var(--bg-soft); }
.langw__opt[aria-current="true"] .name { font-weight: 600; }
.langw__opt .tick { width: 14px; opacity: 0; color: var(--accent-700); }
.langw__opt[aria-current="true"] .tick { opacity: 1; }

/* phone CTA */
.nav-phone {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 11px 17px; border-radius: 7px;
  background: var(--navy); color: #fff; font-weight: 600; font-size: 14.5px;
  transition: background .15s, transform .15s; white-space: nowrap;
}
.nav-phone:hover { background: var(--navy-700); transform: translateY(-1px); }
.nav-phone svg { color: #fff; opacity: .8; }

.nav__burger {
  display: none; width: 42px; height: 42px; border-radius: 8px;
  border: 1px solid var(--line); background: #fff; cursor: pointer;
  align-items: center; justify-content: center;
}
.nav__burger span, .nav__burger span::before, .nav__burger span::after {
  content: ""; display: block; width: 18px; height: 2px; background: var(--navy);
  border-radius: 2px; transition: transform .2s, opacity .2s; position: relative;
}
.nav__burger span::before { position: absolute; top: -6px; }
.nav__burger span::after { position: absolute; top: 6px; }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; overflow: hidden; }
.hero__grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 5vw, 72px); align-items: center;
  padding-top: clamp(48px, 7vw, 96px); padding-bottom: var(--section-y);
}
.hero__eyebrow { margin-bottom: 26px; }
.hero h1 {
  font-size: clamp(2.7rem, 5.4vw, 4.6rem);
  letter-spacing: -0.022em;
}
.hero h1 .h1-alt { color: var(--navy-700); }
.hero__sub {
  margin-top: 26px; font-size: clamp(1.05rem, 1.5vw, 1.24rem);
  color: var(--muted); max-width: 46ch;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero__phone {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 8px; font-weight: 600; color: var(--navy); white-space: nowrap;
}
.hero__phone svg { color: var(--accent-700); }
.hero__phone:hover { color: var(--navy-700); }

.hero__spec {
  display: flex; flex-wrap: wrap; gap: 8px 10px; margin-top: 40px;
  padding-top: 28px; border-top: 1px solid var(--line);
}
.hero__spec-label {
  width: 100%; font-size: 12px; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 12px;
}
.spec-chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px; border-radius: 999px;
  background: var(--bg-soft); border: 1px solid var(--line);
  font-size: 14px; font-weight: 600; color: var(--navy);
}
.spec-chip .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }

/* hero visual */
.hero__visual { position: relative; }
.hero__panel {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  aspect-ratio: 4 / 5; background: var(--navy);
  box-shadow: var(--shadow-lg);
}
.hero__map { position: absolute; inset: 0; }
.hero__panel-cap {
  position: absolute; left: 18px; bottom: 16px; right: 18px;
  font-family: var(--grotesk); font-size: 11px; letter-spacing: .04em;
  color: var(--muted-navy);
  display: flex; justify-content: space-between; align-items: center;
}
.hero__badge {
  position: absolute; right: -14px; top: 40px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-md);
  box-shadow: var(--shadow-md); padding: 16px 20px; width: 210px;
}
.hero__badge .k { font-size: 12px; color: var(--muted); font-weight: 600; }
.hero__badge .v {
  font-family: var(--serif); font-size: 1.5rem; color: var(--navy); margin-top: 4px;
  display: flex; align-items: baseline; gap: 8px;
}
.hero__badge .v small { font-size: 12px; color: var(--accent-700); font-weight: 700; font-family: var(--grotesk); letter-spacing: .08em; }

/* ============================================================
   SERVICES
   ============================================================ */
.services { background: var(--bg-soft); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.services__inner { padding-block: var(--section-y); }
.services__head { display: flex; justify-content: space-between; align-items: flex-end; gap: 30px; flex-wrap: wrap; }
.svc-grid {
  margin-top: 52px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.svc-card {
  position: relative; display: flex; flex-direction: column;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 28px 26px 24px; min-height: 248px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  overflow: hidden;
}
.svc-card::after {
  content: ""; position: absolute; left: 0; top: 0; height: 3px; width: 100%;
  background: var(--accent); transform: scaleX(0); transform-origin: left;
  transition: transform .25s ease;
}
.svc-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: transparent; }
.svc-card:hover::after { transform: scaleX(1); }
.svc-card.is-flag { background: var(--navy); border-color: var(--navy); color: #fff; }
.svc-card.is-flag .svc-card__desc { color: var(--muted-navy); }
.svc-card.is-flag .svc-card__ico { background: rgba(255,255,255,.1); color: #fff; }
.svc-card.is-flag .svc-card__more { color: #fff; }
.svc-card.is-flag::after { background: rgba(255,255,255,.7); }

.svc-card__top { display: flex; align-items: center; justify-content: space-between; }
.svc-card__ico {
  width: 48px; height: 48px; border-radius: 11px;
  background: var(--bg-soft); color: var(--navy);
  display: grid; place-items: center;
}
.svc-card__num {
  font-family: var(--serif); font-size: 14px; color: var(--muted);
}
.is-flag .svc-card__num { color: var(--muted-navy); }
.svc-card__flag-tag {
  font-size: 10.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: #fff; border: 1px solid rgba(255,255,255,.35); padding: 4px 9px; border-radius: 999px;
}
.svc-card__name { font-family: var(--serif); font-size: 1.42rem; margin-top: 22px; }
.svc-card__desc { margin-top: 10px; color: var(--muted); font-size: 14.5px; flex: 1; }
.svc-card__more {
  margin-top: 18px; display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; font-size: 14px; color: var(--navy-700);
}
.svc-card__more .arr { transition: transform .2s ease; }
.svc-card:hover .svc-card__more .arr { transform: translateX(4px); }

/* ============================================================
   WHY ISLANDS  (navy block)
   ============================================================ */
.islands { background: var(--navy); color: #fff; position: relative; overflow: hidden; }
.islands__bgmap { position: absolute; inset: 0; opacity: .5; pointer-events: none; }
.islands__inner { padding-block: var(--section-y); position: relative; }
.islands__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 6vw, 84px); align-items: center; }
.islands h2 { font-size: clamp(2rem, 3.6vw, 3.1rem); margin-top: 18px; }
.islands__body { color: var(--muted-navy); margin-top: 22px; font-size: clamp(1.02rem, 1.4vw, 1.16rem); max-width: 52ch; }
.islands__body b { color: #fff; font-weight: 600; }
.islands__cta { margin-top: 34px; }

.island-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.island-card {
  border: 1px solid var(--line-navy); border-radius: var(--r-md);
  padding: 22px 20px; background: rgba(255,255,255,.03);
  transition: background .2s, transform .2s, border-color .2s;
}
.island-card:hover { background: rgba(255,255,255,.07); transform: translateY(-3px); border-color: rgba(255,255,255,.28); }
.island-card__code {
  font-family: var(--serif); font-size: 12px; letter-spacing: .14em;
  color: var(--steel); font-weight: 600;
}
.island-card__name { font-family: var(--serif); font-size: 1.45rem; margin-top: 12px; }
.island-card__note { font-size: 13px; color: var(--muted-navy); margin-top: 8px; line-height: 1.45; }

/* ============================================================
   O NAS
   ============================================================ */
.about { background: var(--bg-soft); border-top: 1px solid var(--line); }
.about__inner { padding-block: var(--section-y); }
.about__grid { display: grid; grid-template-columns: 1.35fr 1fr; gap: clamp(36px, 6vw, 84px); align-items: center; }
.about__text h2 { font-size: clamp(1.9rem, 3.2vw, 2.8rem); margin-top: 18px; max-width: 18ch; }
.about__lead { color: var(--muted); margin-top: 22px; font-size: clamp(1.02rem, 1.4vw, 1.16rem); max-width: 54ch; }
.about__values { list-style: none; margin: 28px 0 0; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.about__values li { display: flex; align-items: center; gap: 13px; font-weight: 600; color: var(--navy); font-size: 1.02rem; }
.about__values .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--navy-700); flex: none; }

.about__facts { background: var(--navy); color: #fff; border-radius: var(--r-lg); padding: 30px 32px; box-shadow: var(--shadow-md); }
.about__facts-tag {
  font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: var(--muted-navy); display: inline-flex; align-items: center; gap: 8px;
  border: 1px dashed rgba(255,255,255,.28); padding: 7px 13px; border-radius: 999px;
}
.about__facts-list { margin: 8px 0 0; padding: 0; }
.about__fact { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; padding: 17px 0; border-bottom: 1px solid var(--line-navy); }
.about__fact:last-child { border-bottom: 0; padding-bottom: 4px; }
.about__fact dt { color: var(--muted-navy); font-size: 14.5px; }
.about__fact dd { margin: 0; font-family: var(--serif); font-size: 1.5rem; font-weight: 700; font-variant-numeric: tabular-nums; }
.about__fact dd.is-todo { color: rgba(255,255,255,.18); }

/* ============================================================
   NUMBERS / TRUST
   ============================================================ */
.numbers__inner { padding-block: var(--section-y); }
.numbers__head { text-align: center; max-width: 640px; margin-inline: auto; }
.numbers__head h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); margin-top: 16px; }
.num-grid {
  margin-top: 56px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.num-item { text-align: center; padding: 8px 12px; position: relative; }
.num-item:not(:last-child)::after {
  content: ""; position: absolute; right: -12px; top: 14%; height: 72%; width: 1px; background: var(--line);
}
.num-item__val {
  font-family: var(--serif); font-size: clamp(2.6rem, 4vw, 3.5rem);
  color: var(--navy); line-height: 1;
}
.num-item__val.is-todo { color: var(--line); }
.num-item__val .unit { color: var(--accent-700); }
.num-item__label { margin-top: 14px; font-size: 14px; color: var(--muted); font-weight: 500; }
.todo-pill {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--grotesk); font-size: 11px; font-weight: 600; letter-spacing: .08em;
  text-transform: uppercase; color: var(--navy-700);
  background: rgba(30,58,95,.07); border: 1px dashed rgba(30,58,95,.32);
  padding: 8px 14px; border-radius: 999px;
}
.num-item__val.is-todo + .num-item__label .todo-note { display: block; font-size: 12px; color: var(--muted); margin-top: 6px; }

/* ============================================================
   PROCES — jak działamy
   ============================================================ */
.process { background: var(--bg-soft); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.process__inner { padding-block: var(--section-y); }
.process__head { text-align: center; max-width: 640px; margin-inline: auto; }
.process__head h2 { font-size: clamp(1.9rem, 3.2vw, 2.6rem); margin-top: 14px; }
.process__lead { color: var(--muted); margin-top: 16px; font-size: 1.1rem; }
.process__steps {
  list-style: none; margin: 56px 0 0; padding: 0;
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 26px; position: relative;
}
.process__steps::before {
  content: ""; position: absolute; top: 27px; left: 10%; right: 10%; height: 2px;
  background: var(--line); z-index: 0;
}
.process-step { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; text-align: center; }
.process-step__num {
  width: 54px; height: 54px; border-radius: 50%;
  background: var(--navy); color: #fff;
  font-family: var(--serif); font-weight: 700; font-size: 1.4rem;
  display: grid; place-items: center; flex: none;
  box-shadow: 0 0 0 7px var(--bg-soft);
}
.process-step__title { font-size: 1.06rem; color: var(--navy); margin-top: 22px; }
.process-step__desc { font-size: 14px; color: var(--muted); margin-top: 9px; line-height: 1.5; max-width: 22ch; }

@media (max-width: 980px) and (min-width: 901px) {
  .process-step__desc { max-width: 18ch; }
}
@media (max-width: 900px) {
  .process__steps { grid-template-columns: 1fr; gap: 0; max-width: 520px; margin-inline: auto; }
  .process__steps::before { display: none; }
  .process-step { flex-direction: row; align-items: flex-start; text-align: left; gap: 20px; padding-bottom: 30px; }
  .process-step:not(:last-child)::before {
    content: ""; position: absolute; left: 26px; top: 56px; bottom: 0; width: 2px; background: var(--line);
  }
  .process-step__num { box-shadow: none; }
  .process-step__title { margin-top: 11px; }
  .process-step__desc { max-width: none; margin-top: 6px; }
}

/* ============================================================
   CONTACT CTA
   ============================================================ */
.cta { background: var(--bg-soft); border-top: 1px solid var(--line); }
.cta__inner {
  padding-block: var(--section-y);
  display: grid; grid-template-columns: 1.2fr 1fr; gap: clamp(36px, 6vw, 80px);
  align-items: center;
}
.cta h2 { font-size: clamp(2rem, 3.4vw, 3rem); margin-top: 16px; }
.cta__body { color: var(--muted); margin-top: 20px; font-size: 1.1rem; max-width: 46ch; }
.cta__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.cta__card {
  background: var(--navy); color: #fff; border-radius: var(--r-lg);
  padding: 36px 34px; box-shadow: var(--shadow-lg);
}
.cta__card h3 { font-size: 1.3rem; }
.cta-row { display: flex; align-items: center; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--line-navy); }
.cta-row:last-child { border-bottom: 0; padding-bottom: 0; }
.cta-row__ico { width: 40px; height: 40px; border-radius: 9px; background: rgba(255,255,255,.08); color: #fff; display: grid; place-items: center; flex: none; }
.cta-row__k { font-size: 12px; color: var(--muted-navy); letter-spacing: .04em; }
.cta-row__v { font-weight: 600; font-size: 16px; margin-top: 2px; }
.cta-row__v a:hover { opacity: .75; }

/* ============================================================
   SERVICE SUBPAGE
   ============================================================ */
.breadcrumb { display: flex; align-items: center; gap: 9px; font-size: 13px; color: var(--muted); font-weight: 500; }
.breadcrumb a { transition: color .15s; }
.breadcrumb a:hover { color: var(--navy); }
.breadcrumb .sep { opacity: .45; }
.breadcrumb .here { color: var(--navy); }

.shero { border-bottom: 1px solid var(--line); }
.shero__inner { padding-top: clamp(30px, 4vw, 52px); padding-bottom: var(--section-y); }
.shero__grid { display: grid; grid-template-columns: 1.3fr .8fr; gap: clamp(32px, 5vw, 76px); align-items: end; margin-top: 30px; }
.shero__flag { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 18px; font-size: 11.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: #fff; background: var(--navy); padding: 7px 13px; border-radius: 999px; }
.shero h1 { font-size: clamp(2.4rem, 4.6vw, 3.9rem); letter-spacing: -0.024em; }
.shero__lead { margin-top: 22px; color: var(--muted); font-size: clamp(1.05rem, 1.4vw, 1.2rem); max-width: 54ch; }
.shero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; align-items: center; }
.shero__phone { display: inline-flex; align-items: center; gap: 10px; padding: 14px 8px; font-weight: 600; color: var(--navy); white-space: nowrap; }
.shero__phone svg { color: var(--navy-700); }

.shero__panel { position: relative; border-radius: var(--r-lg); background: var(--navy); color: #fff; padding: 30px 32px; min-height: 300px; overflow: hidden; box-shadow: var(--shadow-md); display: flex; flex-direction: column; justify-content: space-between; }
.shero__panel-ico { width: 56px; height: 56px; border-radius: 14px; background: rgba(255,255,255,.1); color: #fff; display: grid; place-items: center; }
.shero__panel-num { position: absolute; right: 18px; bottom: -14px; font-family: var(--serif); font-weight: 700; font-size: clamp(6rem, 12vw, 9rem); line-height: 1; color: rgba(255,255,255,.07); }
.shero__panel-meta { position: relative; }
.shero__panel-label { font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: var(--muted-navy); }
.shero__panel-name { font-family: var(--serif); font-size: 1.55rem; margin-top: 6px; }

.features { background: var(--bg-soft); border-bottom: 1px solid var(--line); }
.features__inner { padding-block: var(--section-y); }
.features__head { max-width: 640px; }
.features__head h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); margin-top: 14px; }
.feature-grid { margin-top: 42px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.feature-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); padding: 22px 22px; display: flex; gap: 14px; align-items: center; transition: transform .18s ease, box-shadow .18s ease; }
.feature-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.feature-card__tick { width: 32px; height: 32px; border-radius: 9px; background: var(--navy); color: #fff; display: grid; place-items: center; flex: none; }
.feature-card__t { font-weight: 600; color: var(--navy); font-size: 1rem; }
.feature-card__t small { display: block; font-weight: 500; color: var(--muted); font-size: 12.5px; margin-top: 3px; }

.svc-note { background: var(--navy); color: #fff; position: relative; overflow: hidden; }
.svc-note__inner { padding-block: clamp(60px, 7vw, 104px); position: relative; }
.svc-note__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 6vw, 84px); align-items: center; }
.svc-note h2 { font-size: clamp(1.7rem, 2.9vw, 2.5rem); margin-top: 16px; }
.svc-note__body { color: var(--muted-navy); margin-top: 20px; font-size: clamp(1.02rem, 1.4vw, 1.15rem); max-width: 52ch; }
.svc-note__body b { color: #fff; font-weight: 600; }
.svc-note__chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 8px; }
.svc-note__chips.mt { margin-top: 26px; }
.note-chip { display: inline-flex; align-items: center; gap: 9px; padding: 9px 16px; border-radius: 999px; border: 1px solid var(--line-navy); background: rgba(255,255,255,.04); font-size: 14px; font-weight: 600; }
.note-chip .dot { width: 6px; height: 6px; border-radius: 50%; background: #fff; }
.svc-note__todo { display: inline-flex; align-items: center; gap: 8px; margin-top: 22px; font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--muted-navy); border: 1px dashed rgba(255,255,255,.28); padding: 8px 14px; border-radius: 999px; }

/* ---------- testimonials (Opinie) ---------- */
.testi { background: #fff; border-top: 1px solid var(--line); }
.testi__inner { padding-block: var(--section-y); }
.testi__head { max-width: 660px; }
.testi__head h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); margin-top: 14px; }
.testi__todo { display: inline-flex; align-items: center; gap: 8px; margin-top: 18px; font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); border: 1px dashed var(--line); padding: 8px 14px; border-radius: 999px; }
.testi__grid { margin-top: 42px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.testi-card { background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--r-md); padding: 28px 26px; display: flex; flex-direction: column; gap: 18px; margin: 0; }
.testi-card__stars { display: inline-flex; gap: 4px; color: var(--line); }
.testi-card__stars svg { width: 18px; height: 18px; }
.testi-card__quote { font-family: var(--serif); font-weight: 500; font-size: 1.16rem; line-height: 1.42; color: var(--navy); margin: 0; letter-spacing: -0.01em; }
.testi-card__who { display: flex; align-items: center; gap: 13px; margin-top: auto; }
.testi-card__avatar { width: 44px; height: 44px; border-radius: 50%; flex: none; background-color: var(--line); background-image: repeating-linear-gradient(135deg, rgba(20,35,61,.09) 0 6px, transparent 6px 12px); }
.testi-card__name { display: block; font-weight: 600; color: var(--navy); font-size: 15px; }
.testi-card__role { display: block; font-size: 13px; color: var(--muted); margin-top: 2px; }

/* ---------- service contact CTA + inquiry form ---------- */
.page-cta { background: var(--bg-soft); border-top: 1px solid var(--line); scroll-margin-top: 90px; }
.page-cta__inner { padding-block: var(--section-y); display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(36px, 6vw, 76px); align-items: start; }
.page-cta__intro { position: sticky; top: 100px; }
.page-cta h2 { font-size: clamp(1.9rem, 3.2vw, 2.7rem); margin-top: 14px; max-width: 17ch; }
.page-cta__body { color: var(--muted); margin-top: 18px; max-width: 44ch; font-size: 1.08rem; }
.page-cta__contacts { display: flex; flex-direction: column; gap: 12px; margin-top: 30px; }
.page-cta__phone, .page-cta__mail { display: inline-flex; align-items: center; gap: 14px; padding: 13px 18px; background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); transition: border-color .15s ease, transform .15s ease, box-shadow .15s ease; width: fit-content; }
.page-cta__phone:hover, .page-cta__mail:hover { border-color: var(--navy); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.page-cta__phone-ico { width: 42px; height: 42px; border-radius: 10px; background: var(--navy); color: #fff; display: grid; place-items: center; flex: none; }
.page-cta__contact-k { display: block; font-size: 12px; letter-spacing: .04em; color: var(--muted); }
.page-cta__contact-v { display: block; font-weight: 600; font-size: 16px; color: var(--navy); margin-top: 1px; }

.qform { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(24px, 3vw, 38px); box-shadow: var(--shadow-md); }
.qform__row { margin-bottom: 16px; }
.qform__row--2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field label { font-size: 13px; font-weight: 600; color: var(--navy); }
.field .req { color: var(--accent-700); }
.field input, .field textarea { font-family: inherit; font-size: 15px; color: var(--ink); background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--r-sm); padding: 12px 14px; width: 100%; transition: border-color .15s ease, background .15s ease, box-shadow .15s ease; }
.field textarea { resize: vertical; min-height: 104px; }
.field input::placeholder, .field textarea::placeholder { color: #9AA7BA; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--navy); background: #fff; box-shadow: 0 0 0 3px rgba(30,58,95,.12); }
.field.invalid input, .field.invalid textarea { border-color: #C0392B; box-shadow: 0 0 0 3px rgba(192,57,43,.10); }
.qform__foot { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; margin-top: 6px; }
.form-note { font-size: 13.5px; font-weight: 500; margin: 0; }
.form-note.ok { color: #1E7A4D; }
.form-note.err { color: #C0392B; }
.qform__rodo { margin-top: 16px; font-size: 12px; color: var(--muted); line-height: 1.5; }
.qform__todo { color: var(--accent-700); font-weight: 600; }

/* ============================================================
   OFFER ENRICHMENTS — factors / spec table / checklist / faq / related
   ============================================================ */
/* pricing factors */
.factors { background: #fff; border-bottom: 1px solid var(--line); }
.factors__inner { padding-block: var(--section-y); }
.factors__head { max-width: 640px; }
.factors__head h2 { font-size: clamp(1.7rem, 2.9vw, 2.4rem); margin-top: 14px; }
.factors__lead { color: var(--muted); margin-top: 16px; font-size: 1.05rem; max-width: 52ch; }
.factors__grid { margin-top: 42px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.factor { background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--r-md); padding: 26px 24px; }
.factor__n { font-family: var(--serif); font-weight: 700; font-size: 1.15rem; color: var(--accent-700); }
.factor__t { font-weight: 600; color: var(--navy); margin-top: 14px; font-size: 1.04rem; }
.factor__d { color: var(--muted); font-size: 14px; margin-top: 9px; line-height: 1.5; }

/* spec table */
.spec { background: var(--bg-soft); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.spec__inner { padding-block: var(--section-y); }
.spec__head { max-width: 660px; }
.spec__head h2 { font-size: clamp(1.7rem, 2.9vw, 2.4rem); margin-top: 14px; }
.spec__note { margin-top: 14px; font-size: 13.5px; color: var(--muted); max-width: 60ch; }
.spec__scroll { margin-top: 30px; overflow-x: auto; border: 1px solid var(--line); border-radius: var(--r-md); background: #fff; }
.spec__table { width: 100%; min-width: 600px; border-collapse: collapse; }
.spec__table th, .spec__table td { text-align: left; padding: 16px 22px; border-bottom: 1px solid var(--line); font-size: 15px; vertical-align: top; }
.spec__table thead th { background: var(--navy); color: #fff; font-family: var(--grotesk); font-weight: 600; font-size: 12px; letter-spacing: .06em; text-transform: uppercase; }
.spec__table tbody tr:last-child td { border-bottom: 0; }
.spec__table tbody tr:hover { background: var(--bg-soft); }
.spec__table td:first-child { font-weight: 600; color: var(--navy); }

/* checklist */
.checklist__grid { margin-top: 32px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 36px; }
.check-item { display: flex; gap: 14px; align-items: flex-start; padding: 18px 0; border-bottom: 1px solid var(--line); }
.check-item__tick { width: 30px; height: 30px; border-radius: 8px; background: var(--navy); color: #fff; display: grid; place-items: center; flex: none; margin-top: 1px; }
.check-item__t { font-weight: 600; color: var(--navy); font-size: 1.02rem; }
.check-item__d { color: var(--muted); font-size: 13.5px; margin-top: 3px; line-height: 1.5; }

/* faq */
.faq { background: #fff; border-top: 1px solid var(--line); }
.faq__inner { padding-block: var(--section-y); display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(36px, 6vw, 80px); align-items: start; }
.faq__head { position: sticky; top: 100px; }
.faq__head h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); margin-top: 14px; }
.faq__lead { color: var(--muted); margin-top: 16px; font-size: 1.05rem; }
.faq__list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item > summary { cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 24px; padding: 22px 2px; font-family: var(--serif); font-weight: 600; font-size: 1.12rem; color: var(--navy); }
.faq-item > summary::-webkit-details-marker { display: none; }
.faq-item > summary::after { content: ""; width: 10px; height: 10px; border-right: 2px solid var(--muted); border-bottom: 2px solid var(--muted); transform: rotate(45deg); transition: transform .2s ease; flex: none; margin-right: 6px; margin-top: -4px; }
.faq-item[open] > summary::after { transform: rotate(-135deg); margin-top: 2px; }
.faq-item[open] > summary { color: var(--accent-700); }
.faq-item__a { color: var(--muted); font-size: 15px; line-height: 1.6; padding: 0 2px 24px; max-width: 64ch; }

/* related services */
.related { background: var(--bg-soft); border-top: 1px solid var(--line); }
.related__inner { padding-block: var(--section-y); }
.related__head { max-width: 640px; }
.related__head h2 { font-size: clamp(1.7rem, 2.9vw, 2.4rem); margin-top: 14px; }
.related__grid { margin-top: 36px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.related-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); padding: 28px 26px; display: flex; flex-direction: column; gap: 10px; transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease; }
.related-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: transparent; }
.related-card__t { font-family: var(--serif); font-weight: 700; color: var(--navy); font-size: 1.15rem; }
.related-card__d { color: var(--muted); font-size: 14px; line-height: 1.5; flex: 1; }
.related-card__more { display: inline-flex; align-items: center; gap: 8px; color: var(--accent-700); font-weight: 600; font-size: 14px; margin-top: 4px; }
.related-card__more .arr { transition: transform .2s ease; }
.related-card:hover .related-card__more .arr { transform: translateX(3px); }

@media (max-width: 900px) {
  .factors__grid { grid-template-columns: repeat(2, 1fr); }
  .faq__inner { grid-template-columns: 1fr; }
  .faq__head { position: static; }
  .related__grid { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
  .factors__grid { grid-template-columns: 1fr; }
  .checklist__grid { grid-template-columns: 1fr; gap: 0; }
}

/* ============================================================
   PARTNERS MARQUEE + GALLERY
   ============================================================ */
.partners { background: #fff; border-bottom: 1px solid var(--line); padding-block: clamp(34px, 4vw, 56px); }
.partners__label { text-align: center; font-size: 12px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); margin-bottom: 28px; }
.marquee { position: relative; display: flex; overflow: hidden; gap: 26px; -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent); mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent); }
.marquee__track { display: flex; gap: 26px; padding-right: 26px; flex: none; min-width: max-content; animation: marquee-scroll 34s linear infinite; }
@keyframes marquee-scroll { from { transform: translateX(0); } to { transform: translateX(-100%); } }
.marquee:hover .marquee__track { animation-play-state: paused; }
.partner-logo { flex: none; width: 172px; height: 74px; border: 1px dashed var(--line); border-radius: var(--r-md); display: grid; place-items: center; background: var(--bg-soft); color: var(--muted); font-family: ui-monospace, "SF Mono", Menlo, monospace; font-size: 12px; letter-spacing: .03em; }
@media (prefers-reduced-motion: reduce) {
  .marquee { overflow-x: auto; }
  .marquee__track { animation: none; }
  .marquee__track[aria-hidden="true"] { display: none; }
}

.gallery { background: var(--bg-soft); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.gallery__inner { padding-block: var(--section-y); }
.gallery__head { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; flex-wrap: wrap; }
.gallery__headtext { max-width: 560px; }
.gallery__head h2 { font-size: clamp(1.7rem, 2.9vw, 2.4rem); margin-top: 14px; }
.gallery__todo { display: inline-flex; align-items: center; gap: 8px; font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); border: 1px dashed var(--line); padding: 9px 15px; border-radius: 999px; background: #fff; }
.gallery__grid { margin-top: 36px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.gallery-ph { aspect-ratio: 4 / 3; border-radius: var(--r-md); border: 1px solid var(--line); background-color: #fff; background-image: repeating-linear-gradient(45deg, var(--bg-soft) 0 11px, #fff 11px 22px); display: flex; align-items: center; justify-content: center; color: var(--muted); font-family: ui-monospace, "SF Mono", Menlo, monospace; font-size: 12px; letter-spacing: .02em; }
.gallery-ph--img { padding: 0; object-fit: cover; width: 100%; height: 100%; background-image: none; }
@media (max-width: 760px) { .gallery__grid { grid-template-columns: repeat(2, 1fr); } }

@media (max-width: 900px) {
  .shero__grid { grid-template-columns: 1fr; align-items: start; }
  .shero__panel { min-height: 220px; }
  .svc-note__grid { grid-template-columns: 1fr; }
  .page-cta__inner { grid-template-columns: 1fr; }
  .page-cta__intro { position: static; }
  .testi__grid { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .qform__row--2 { grid-template-columns: 1fr; }
}
@media (max-width: 520px) { .feature-grid { grid-template-columns: 1fr; } }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--navy-900); color: #fff; }
.footer__top { padding-block: clamp(48px, 6vw, 76px); display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.1fr; gap: 40px; }
.footer__brand .wordmark__main { color: #fff; }
.footer__brand .wordmark__main b { color: #fff; }
.footer__brand .wordmark__sub { color: var(--muted-navy); }
.footer__tag { color: var(--muted-navy); margin-top: 18px; max-width: 32ch; font-size: 14.5px; }
.footer__col h4 { font-family: var(--grotesk); font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted-navy); font-weight: 600; }
.footer__col ul { list-style: none; margin: 18px 0 0; padding: 0; display: flex; flex-direction: column; gap: 11px; }
.footer__col a { color: #DCE4EF; font-size: 14.5px; transition: color .15s; }
.footer__col a:hover { color: #fff; }
.footer__col .muted { color: var(--muted-navy); font-size: 14.5px; }
.footer__langs { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.foot-lang {
  border: 1px solid var(--line-navy); border-radius: 6px; padding: 6px 10px;
  font-size: 12px; font-weight: 600; letter-spacing: .04em; color: #DCE4EF; cursor: pointer;
  background: transparent; transition: border-color .15s, color .15s;
}
.foot-lang:hover, .foot-lang[aria-current="true"] { border-color: rgba(255,255,255,.7); color: #fff; }
.footer__bar {
  border-top: 1px solid var(--line-navy); padding-block: 22px;
  display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap;
  color: var(--muted-navy); font-size: 13px;
}
.footer__bar a:hover { color: #fff; }

/* ============================================================
   reveal animation
   ============================================================ */
@media (prefers-reduced-motion: no-preference) {
  html.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s cubic-bezier(.22,.61,.36,1), transform .7s cubic-bezier(.22,.61,.36,1); }
  html.js .reveal.in { opacity: 1; transform: none; }
  html.js .reveal[data-d="1"] { transition-delay: .07s; }
  html.js .reveal[data-d="2"] { transition-delay: .14s; }
  html.js .reveal[data-d="3"] { transition-delay: .21s; }
  html.js .reveal[data-d="4"] { transition-delay: .28s; }
  html.js .reveal[data-d="5"] { transition-delay: .35s; }
}

/* ============================================================
   mobile drawer
   ============================================================ */
.drawer { position: fixed; inset: 0; z-index: 200; visibility: hidden; }
.drawer__scrim { position: absolute; inset: 0; background: rgba(14,26,46,.45); opacity: 0; transition: opacity .25s; }
.drawer__panel {
  position: absolute; top: 0; right: 0; height: 100%; width: min(86vw, 380px);
  background: #fff; box-shadow: var(--shadow-lg); transform: translateX(100%);
  transition: transform .3s cubic-bezier(.22,.61,.36,1); padding: 22px 24px;
  display: flex; flex-direction: column; gap: 6px; overflow-y: auto;
}
.drawer.open { visibility: visible; }
.drawer.open .drawer__scrim { opacity: 1; }
.drawer.open .drawer__panel { transform: none; }
.drawer__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.drawer__close { width: 40px; height: 40px; border-radius: 8px; border: 1px solid var(--line); background: #fff; cursor: pointer; font-size: 20px; color: var(--navy); }
.drawer a.m-link { padding: 13px 12px; border-radius: 8px; font-size: 16px; font-weight: 500; color: var(--ink); border-bottom: 1px solid var(--line); }
.drawer a.m-link.sub { font-size: 14.5px; color: var(--muted); padding-left: 24px; font-weight: 500; }
.drawer a.m-link.flag { color: var(--navy); font-weight: 600; }
.drawer__phone { margin-top: 14px; }
.drawer__langtitle { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); font-weight: 600; margin: 18px 0 10px; }
.drawer__langs { display: flex; flex-wrap: wrap; gap: 8px; }
.drawer__langs .foot-lang { color: var(--navy); border-color: var(--line); }
.drawer__langs .foot-lang[aria-current="true"], .drawer__langs .foot-lang:hover { border-color: var(--navy); color: var(--navy); }

/* ============================================================
   responsive
   ============================================================ */
@media (max-width: 1080px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__visual { max-width: 520px; }
  .hero__badge { display: none; }
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 1024px) {
  .nav__menu, .nav-phone, .langw { display: none; }
  .nav__burger { display: inline-flex; }
}
@media (max-width: 900px) {
  .nav__menu, .nav-phone, .langw { display: none; }
  .nav__burger { display: inline-flex; }
  .islands__grid { grid-template-columns: 1fr; }
  .about__grid { grid-template-columns: 1fr; }
  .cta__inner { grid-template-columns: 1fr; }
  .num-grid { grid-template-columns: repeat(2, 1fr); row-gap: 40px; }
  .num-item:nth-child(2)::after { display: none; }
}
@media (max-width: 600px) {
  .svc-grid { grid-template-columns: 1fr; }
  .island-cards { grid-template-columns: 1fr; }
  .num-grid { grid-template-columns: 1fr; }
  .num-item::after { display: none !important; }
  .footer__top { grid-template-columns: 1fr; }
  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__cta .btn { justify-content: center; }
}

/* =========================================================
   AUDYT 2026-06-05 — dopisane przez ads-landing skill
   Style dla: formularza leadowego, honeypot, sticky CTA mobile,
   about__facts--values, num-grid--two, todo-inline marker.
   ========================================================= */

/* ----- num-grid--two: layout dla 2 boxów (legacy, użyte zanim wróciliśmy do 4 liczb) ----- */
.num-grid--two { grid-template-columns: repeat(2, 1fr); max-width: 720px; margin-left: auto; margin-right: auto; }
@media (max-width: 600px) { .num-grid--two { grid-template-columns: 1fr; } }

/* ----- cta__inner--stacked: tekst+kontakty na górze (2 kol), formularz na pełną szerokość pod spodem
   Nadpisuje grid 2-kolumnowy z .cta__inner (linia 561) — reset wszystkich grid props dla czystości. ----- */
.cta__inner--stacked {
  display: block;
  grid-template-columns: none;
  align-items: stretch;
}
.cta__top {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: clamp(36px, 6vw, 80px);
  align-items: end;                        /* kontakty wyrównane do dołu z bulletami po lewej */
  margin-bottom: clamp(40px, 6vw, 72px);
}
.cta__top .cta__contacts {
  padding-bottom: 6px;                     /* drobny offset pod ostatni bullet po lewej */
}
@media (max-width: 880px) {
  .cta__top { grid-template-columns: 1fr; gap: 32px; }
}

/* ----- about__facts--values: zastąpienie "00 00 / Do uzupełnienia" listą wartości
   Box dziedziczy .about__facts { background: var(--navy); color: #fff }, więc
   nadpisuję wszystkie kolory tak, żeby były czytelne na ciemnym navy tle. ----- */
.about__facts--values { padding: 32px 32px 28px; }
.about__facts-title {
  margin: 0 0 20px;
  font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--muted-navy, rgba(255,255,255,.6));
}
.about__facts-bullets { list-style: none; padding: 0; margin: 0; display: grid; gap: 16px; }
.about__facts-bullets li {
  display: flex; align-items: flex-start; gap: 14px;
  font-weight: 500; color: #fff; font-size: 1.02rem; line-height: 1.5;
}
.about__facts-bullets .dot {
  flex-shrink: 0; margin-top: 9px;
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent, #B8734A);
  box-shadow: 0 0 0 3px rgba(184,115,74,0.18);
}

/* ----- todo-inline: dyskretny marker w stopce, NIE w hero/about ----- */
.todo-inline { font-style: normal; font-size: 0.85em; color: var(--muted); opacity: 0.6; }

/* ===== FORMULARZ LEADOWY ===== */
.cta__form {
  background: #fff;
  border: 1px solid var(--line, #e6e7eb);
  border-radius: 14px;
  padding: 32px 30px 28px;
  box-shadow: 0 18px 50px -28px rgba(20, 35, 61, 0.18);
}

/* Wariant pełnoszerokościowy — używany w cta__inner--stacked.
   4 kolumny dla krótkich pól (imię/firma/email/telefon w jednym rzędzie),
   pełna szerokość dla selectów i textarea. */
.cta__form--wide {
  padding: 40px 44px 34px;
}
.cta__form--wide .cta__form-title { font-size: 1.7rem; }
.cta__form--wide .cta__form-sub { max-width: 64ch; }

.cta__form-title { margin: 0 0 6px; font-family: var(--serif); font-weight: 700; font-size: 1.5rem; color: var(--navy); }
.cta__form-sub { margin: 0 0 24px; font-size: 14.5px; color: var(--muted); line-height: 1.5; }

.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px 18px; }

/* Wide form: 4 kolumny domyślnie, pola krótkie po 1, pełne po 4.
   Selecty kierunku/ładunku/terminu rozsiane po 2 + 1 + 1, żeby były szersze niż inputy.
   Kolejność wizualna: [imię][firma][e-mail][telefon]
                       [kierunek (2 kol)][rodzaj][termin]
                       [opis (4 kol)] */
.cta__form--wide .form-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 18px 20px;
}
.cta__form--wide .field--full { grid-column: 1 / -1; }
.cta__form--wide #qf-direction { /* select kierunku */ }
.cta__form--wide .field:has(#qf-direction) { grid-column: span 2; }
.cta__form--wide .field:has(#qf-cargo)     { grid-column: span 1; }
.cta__form--wide .field:has(#qf-timing)    { grid-column: span 1; }
.field { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.field--full { grid-column: 1 / -1; }

.field label {
  font-size: 13px; font-weight: 600; color: var(--navy-700, #1d2f4d);
  display: flex; align-items: baseline; gap: 8px;
}
.field__hint { font-size: 11.5px; font-weight: 500; color: var(--muted); letter-spacing: 0; text-transform: none; }

.field input,
.field select,
.field textarea {
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line, #e6e7eb);
  border-radius: 8px;
  padding: 12px 13px;
  min-height: 44px;
  width: 100%;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field textarea { min-height: 88px; resize: vertical; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--navy, #14233D);
  box-shadow: 0 0 0 3px rgba(20, 35, 61, 0.10);
}

.field__err {
  font-size: 12.5px;
  color: #b3261e;
  font-weight: 600;
  display: none;
}
.field.invalid input,
.field.invalid select,
.field.invalid textarea { border-color: #b3261e; background: #fcf3f2; }
.field.invalid .field__err { display: block; }

/* Honeypot — niewidoczne dla człowieka, dostępne dla botów */
.hp {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
}

/* Consent checkbox */
.form-consent { margin-top: 18px; }
.field__check {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13.5px; color: var(--navy-700, #1d2f4d); line-height: 1.5; cursor: pointer;
}
.field__check input { margin-top: 3px; width: 16px; height: 16px; flex-shrink: 0; accent-color: var(--navy, #14233D); }
.field__check a { color: var(--navy, #14233D); text-decoration: underline; text-underline-offset: 2px; }
.form-consent .field__err { margin-top: 6px; }
.form-consent.invalid .field__err { display: block; }

/* Submit row */
.form-actions {
  display: flex; flex-wrap: wrap; gap: 12px; align-items: center;
  margin-top: 22px;
}
.form-actions .btn { min-width: 240px; justify-content: center; }
.form-actions button[type="submit"] { cursor: pointer; border: none; font-family: inherit; }

.form-note {
  margin: 14px 0 0; padding: 0;
  font-size: 14px; font-weight: 600;
  min-height: 18px;
}
.form-note.ok { color: #166534; }
.form-note.err { color: #b3261e; }

/* CTA contacts (zastępuje cta__card po przebudowie) */
.cta__bullets { list-style: none; padding: 0; margin: 18px 0 24px; display: grid; gap: 10px; }
.cta__bullets li { display: flex; align-items: center; gap: 12px; font-size: 15px; color: var(--navy-700, #1d2f4d); font-weight: 500; }
.cta__bullets .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent, #B8734A); }

.cta__contacts { display: grid; gap: 12px; }
.cta__contact-row {
  display: flex; align-items: center; gap: 14px;
  padding: 12px 14px;
  border: 1px solid var(--line, #e6e7eb);
  border-radius: 10px;
  background: #fff;
  text-decoration: none;
  transition: border-color .15s, transform .15s;
}
a.cta__contact-row:hover { border-color: var(--navy, #14233D); transform: translateY(-1px); }
.cta__contact-row .cta-row__ico {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(20,35,61,0.05); color: var(--navy, #14233D);
  flex-shrink: 0;
}
.cta__contact-row .cta-row__k { font-size: 12px; color: var(--muted); font-weight: 600; }
.cta__contact-row .cta-row__v { font-size: 15px; color: var(--navy, #14233D); font-weight: 600; margin-top: 1px; }

/* Mobile/tablet form layout — overrides z większym specificity dla wariantu --wide */
@media (max-width: 1024px) {
  /* tablet: 4 kolumny → 2 kolumny (wide variant) */
  .cta__form--wide .form-grid { grid-template-columns: repeat(2, 1fr); }
  .cta__form--wide .field:has(#qf-direction),
  .cta__form--wide .field:has(#qf-cargo),
  .cta__form--wide .field:has(#qf-timing) { grid-column: span 1; }
  .cta__form--wide { padding: 32px 28px 26px; }
}
@media (max-width: 720px) {
  /* mobile: wszystko 1 kolumna */
  .form-grid,
  .cta__form--wide .form-grid { grid-template-columns: 1fr; }
  .cta__form--wide .field:has(#qf-direction),
  .cta__form--wide .field:has(#qf-cargo),
  .cta__form--wide .field:has(#qf-timing),
  .cta__form--wide .field--full { grid-column: 1 / -1; }
  .cta__form,
  .cta__form--wide { padding: 24px 20px 22px; }
  .form-actions .btn { width: 100%; min-width: 0; }
  .cta__form--wide .cta__form-title { font-size: 1.4rem; }
}

/* ===== STICKY BOTTOM CTA (mobile) ===== */
.sticky-cta {
  position: fixed;
  left: 12px; right: 12px; bottom: 12px;
  z-index: 90;
  display: none;                       /* domyślnie ukryty — pokazujemy tylko mobile + po scrollu */
  gap: 10px;
  padding: 10px;
  background: rgba(255,255,255,0.96);
  border: 1px solid var(--line, #e6e7eb);
  border-radius: 14px;
  box-shadow: 0 12px 40px -12px rgba(20,35,61,0.28);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transform: translateY(120%);
  opacity: 0;
  transition: transform .25s ease, opacity .25s ease;
  padding-bottom: calc(10px + env(safe-area-inset-bottom));
}
.sticky-cta.is-visible { transform: translateY(0); opacity: 1; }
.sticky-cta__btn {
  flex: 1;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 48px;                    /* tap target ≥48px ✓ */
  padding: 0 14px;
  font-size: 15px; font-weight: 600;
  border-radius: 10px;
  text-decoration: none;
  white-space: nowrap;
}
.sticky-cta__btn--primary { background: var(--navy, #14233D); color: #fff; }
.sticky-cta__btn--ghost { background: #fff; color: var(--navy, #14233D); border: 1px solid var(--line, #e6e7eb); }

@media (max-width: 720px) {
  .sticky-cta { display: flex; }
}

/* =========================================================
   AUDYT STRON USŁUGOWYCH 2026-06-05
   Styling consent checkboxa + honeypot w formularzu qform.
   UWAGA: sekcje .testi (opinie) i .gallery (zdjęcia) zostają WIDOCZNE —
   to placeholdery layoutu na drafcie prezentacyjnym dla klienta.
   Przed produkcją: opinie i zdjęcia od klienta zastąpią dummy content.
   ========================================================= */

/* Consent checkbox dla formularzy qform (wszystkie podstrony usługowe).
   Spełnia Art. 7 RODO — wymagany active opt-in, nie domyślna zgoda. */
.qform__consent {
  display: flex; align-items: flex-start; gap: 10px;
  margin-top: 18px;
  font-size: 13.5px; color: var(--navy-700, #1d2f4d); line-height: 1.5;
}
.qform__consent input[type="checkbox"] {
  margin-top: 3px; width: 16px; height: 16px;
  flex-shrink: 0;
  accent-color: var(--navy, #14233D);
  cursor: pointer;
}
.qform__consent a {
  color: var(--navy, #14233D);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.qform__consent.invalid { color: #b3261e; }
.qform__consent.invalid input[type="checkbox"] {
  outline: 2px solid #b3261e; outline-offset: 2px;
}

/* Honeypot dla qform — identyczny pattern co w cta__form na index.html */
.qform .hp {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
}
