/* Generated from Figma variables. Do not edit by hand — re-sync & regenerate from the Tokens tab. */

:root {
  /* Colors */
  --brand-2: #34363f;
  --brand: #f82f1a;
  --light1: #f3f5f5;
  --black3: #191a1f;
  --black1: #73777c;
  --light2: #dde1e2;
  --white: #ffffff;
  --black2: #2b2d34;
  --light3: #c2c6c8;
  --dark-graphite: #252525;

  /* Spacing */
  --padding-horizontal: 24px;
  --padding-vertical: 24px;
  --cards-gap: 20px;
  --section-gap: 48px;
  --section-padding: 120px;

  /* Radius */
  --border-radius: 0px;
}

/* Section vertical rhythm — the ONE canonical top/bottom padding every <section>
   uses (padding-block: var(--section-pad-block)). A single site-wide ladder keeps
   the gaps between sections identical and steps them down on tablet/phone. Desktop
   seeds from the Figma --section-padding token when present, else 96px. */
:root { --section-pad-block: var(--section-padding, 96px); }
@media (max-width: 1023px) { :root { --section-pad-block: calc(var(--section-padding, 96px) * 0.7); } }
@media (max-width: 767px)  { :root { --section-pad-block: calc(var(--section-padding, 96px) * 0.5); } }

/* Typography */
.text-16px-text {
  font-family: "Eurostile", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 22.4px;
}

.text-18-px-button {
  font-family: "Eurostile", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5px;
}

.text-80px-title {
  font-family: "Eurostile Cond", sans-serif;
  font-size: 92px;
  font-weight: 850;
  line-height: 83px;
  letter-spacing: -0.02em;
}

.text-20px-text {
  font-family: "Eurostile", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 26px;
}

.text-40px-title {
  font-family: "Eurostile Cond", sans-serif;
  font-size: 40px;
  font-weight: 850;
  line-height: 48px;
}

.text-32px-title {
  font-family: "Eurostile Cond", sans-serif;
  font-size: 32px;
  font-weight: 850;
  line-height: 38.4px;
}

.text-14px-text {
  font-family: "Eurostile", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
}

.text-48px-title {
  font-family: "Eurostile Cond", sans-serif;
  font-size: 48px;
  font-weight: 850;
  line-height: 52px;
  letter-spacing: -0.02em;
}

.text-24px-title {
  font-family: "Eurostile", sans-serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 31.2px;
}

.text-18px-text {
  font-family: "Eurostile", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 23.4px;
}

/* UI signature - derived from the design; every component honours these:
   1) Radius 0 EVERYWHERE - hard 90° corners on buttons, cards, inputs and icon tiles (no rounding anywhere).
   2) Primary CTA - a solid var(--brand) red FLAT rectangle, white UPPERCASE Eurostile-Medium 18px label + a trailing arrow that slides right on hover; NO resting shadow (the CTA reads flat).
   3) Icons live in a FILLED RED (var(--accent)) SQUARE tile with a white glyph centred - never a circle.
   4) Content cards - a flush edge-to-edge photo plus a WHITE caption box carrying a drop shadow (radius 0); the box header pairs an uppercase title (left) with a small red square icon-badge (right).
   5) Inputs - a flat filled light-grey (var(--light1)) box with a thin var(--light2) hairline border, radius 0, grey var(--light3) placeholder and the label above; the border turns red on focus. */

/* ------------------------------------------------------------------ *
 * Semantic aliases derived from the design (accent + radius scale).
 * tokens.css supplies the raw palette/spacing/type; these turn them
 * into the component contract every section reuses by name.
 * ------------------------------------------------------------------ */
:root {
  /* Accent = the design's PRIMARY CTA colour (the red #f82f1a === --brand). */
  --accent: var(--brand);
  --accent-2: var(--brand);          /* solid CTA - no gradient, so accent-2 = accent */
  --accent-contrast: var(--white);
  --btn-shadow: none;                /* the flat red CTA carries NO resting shadow */

  /* Radius scale - this brand is razor-sharp, so every step is 0.
     --radius-pill stays semantic for anything that ever needs a full round. */
  --radius-sm: 0px;                  /* inputs / small chips */
  --radius-md: 0px;                  /* cards / tiles */
  --radius-lg: 0px;                  /* large containers */
  --radius-pill: 999px;
  --btn-radius: 0px;                 /* the primary button's real radius - also shapes the shared Slider's arrow buttons */

  --btn-height: 55px;                /* ONE button height site-wide (from the CTA close-up) */
  --btn-height-sm: 40px;

  --border-width: 1px;

  /* Elevation - one light source (from above, y > 0), tinted with the ink,
     two layers, alpha ≤0.12 rest / ≤0.22 raised. Corners stay hard (radius 0). */
  --shadow-sm: 0 1px 2px color-mix(in srgb, var(--black3) 8%, transparent),
               0 8px 16px -6px color-mix(in srgb, var(--black3) 14%, transparent);
  --shadow-md: 0 2px 4px color-mix(in srgb, var(--black3) 10%, transparent),
               0 16px 30px -10px color-mix(in srgb, var(--black3) 20%, transparent);
}

/* ================================================================== *
 * BUTTONS - ONE shape site-wide (height/radius/padding/type fixed);
 * only COLOUR varies per band via --btn-bg / --btn-fg / --btn-accent.
 * ================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-sizing: border-box;
  min-height: var(--btn-height, 55px);
  padding-block: 0;
  padding-inline: 32px;
  border: var(--border-width, 1px) solid transparent;
  border-radius: var(--btn-radius, var(--radius-sm, 0px));
  font-family: inherit;
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 200ms ease, color 200ms ease,
              border-color 200ms ease, transform 200ms ease,
              box-shadow 200ms ease, filter 200ms ease;
}
.btn:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
}
.btn:disabled,
.btn[aria-disabled="true"] {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

/* Primary - solid red flat rectangle, white label + trailing arrow. */
.btn-primary {
  background: var(--btn-bg, var(--accent, var(--brand)));
  color: var(--btn-fg, var(--accent-contrast, var(--white)));
  box-shadow: var(--btn-shadow, none);
}
@media (hover: hover) {
  .btn-primary:hover {
    transform: translateY(-2px);
    filter: brightness(0.94);
  }
}
.btn-primary:active { transform: translateY(0); filter: none; }

/* Secondary - the distinct, lower-priority NEUTRAL treatment: a dark
   hairline outline with dark text that fills dark on hover. Never red. */
.btn-secondary {
  background-color: transparent;
  color: var(--btn-accent, var(--black2));
  border-color: var(--btn-accent, var(--black2));
}
@media (hover: hover) {
  .btn-secondary:hover {
    background-color: var(--btn-accent, var(--black2));
    color: var(--btn-fg, var(--white));
  }
}
.btn-secondary:active { transform: translateY(1px); }

/* Ghost / text - no chrome until hover. */
.btn-ghost {
  background-color: transparent;
  color: var(--btn-fg, var(--black1, currentColor));
  padding-inline: 8px;
}
@media (hover: hover) {
  .btn-ghost:hover {
    background-color: color-mix(in srgb, var(--btn-accent, var(--accent, var(--brand))) 10%, transparent);
  }
}
.btn-ghost:active { transform: translateY(1px); }

/* Icon button - a FILLED RED SQUARE with a centred white glyph (signature #3);
   used for slider arrows / lightbox chrome. Square (radius 0) to match the brand. */
.btn-icon {
  width: 48px; height: 48px; padding: 0;
  border-radius: var(--btn-radius, 0px);
  display: inline-flex; align-items: center; justify-content: center;
  background-color: var(--btn-bg, var(--accent, var(--brand)));
  color: var(--btn-fg, var(--accent-contrast, var(--white)));
  border: none; cursor: pointer;
  transition: transform 200ms ease, background-color 200ms ease;
}
@media (hover: hover) { .btn-icon:hover { transform: scale(1.08); } }
.btn-icon:active { transform: scale(0.96); }
.btn-icon:focus-visible { outline: 2px solid var(--brand); outline-offset: 2px; }
.btn-icon > svg, .btn-icon > img { width: 42%; height: 42%; display: block; }

/* Small size - only height + inline padding shrink; radius/type unchanged. */
.btn--sm { min-height: var(--btn-height-sm, 40px); padding-inline: 18px; }

/* ================================================================== *
 * HOVER VOCABULARY (reusable utilities)
 * ================================================================== */

/* Powiększenie - scale up */
.hover-scale { transition: transform 200ms ease; }
@media (hover: hover) { .hover-scale:hover { transform: scale(1.04); } }
.hover-scale:active { transform: scale(0.99); }

/* Image inside a fixed frame - zoom the image, clip the box (no neighbour shift) */
.media { overflow: hidden; border-radius: var(--radius-md, 0px); }
.media img {
  display: block; width: 100%; height: 100%; object-fit: cover;
  transition: transform 400ms ease;
}
@media (hover: hover) { .media:hover img { transform: scale(1.06); } }

/* Uniesienie - lift (translateY + shadow) */
.hover-lift {
  transition: transform 200ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 200ms ease;
}
@media (hover: hover) {
  .hover-lift:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
  }
}
.hover-lift:active { transform: translateY(-2px); }

/* Zmiana koloru - colour swap */
.hover-fill { transition: background-color 200ms ease, color 200ms ease; }
@media (hover: hover) {
  .hover-fill:hover {
    background-color: var(--accent, var(--brand));
    color: var(--accent-contrast, var(--white));
  }
}
.hover-tint { transition: color 200ms ease, border-color 200ms ease; }
@media (hover: hover) {
  .hover-tint:hover { color: var(--brand); border-color: var(--brand); }
}

/* Ruchoma strzałka - moving arrow */
.with-arrow { display: inline-flex; align-items: center; gap: 8px; }
.with-arrow .arrow { transition: transform 200ms ease; }
@media (hover: hover) { .with-arrow:hover .arrow { transform: translateX(4px); } }

.arrow-loop { animation: arrow-nudge 1.4s ease-in-out infinite; }
@keyframes arrow-nudge {
  0%, 100% { transform: translateX(0); }
  50%      { transform: translateX(6px); }
}

/* Dodanie podkreślenia - animated underline (nav + inline links) */
.link-underline {
  position: relative;
  text-decoration: none;
  color: inherit;
  background-image: linear-gradient(var(--brand), var(--brand));
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  transition: background-size 220ms ease, color 200ms ease;
  padding-bottom: 2px;
}
@media (hover: hover) {
  .link-underline:hover { background-size: 100% 2px; color: var(--brand); }
}
.link-underline:focus-visible { background-size: 100% 2px; outline: none; }
.link-underline[aria-current="page"] { background-size: 100% 2px; color: var(--brand); }
.link-underline-center { background-position: 50% 100%; }

/* ================================================================== *
 * CARDS / TILES - flush photo + white body; hard corners, lift on hover
 * ================================================================== */
.card {
  position: relative;
  z-index: 1;
  background: var(--white);
  border-radius: var(--radius-md, 0px);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 200ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 200ms ease;
}
@media (hover: hover) {
  .card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
  }
  .card:hover img { transform: scale(1.05); }
  .card:hover .arrow { transform: translateX(4px); }
}
.card img { transition: transform 400ms ease; }
.card a:focus-visible { outline: 2px solid var(--brand); outline-offset: 2px; }

/* Padless card → text lives in a padded inner wrapper (never flush to the edge). */
.card-body { padding: 24px var(--padding-horizontal, 24px); }

/* ================================================================== *
 * INPUTS - flat filled light box, hairline border, red on focus
 * ================================================================== */
.field {
  width: 100%;
  box-sizing: border-box;
  padding: 12px 16px;
  border: var(--border-width, 1px) solid var(--light2, #dde1e2);
  border-radius: var(--radius-sm, 0px);
  background: var(--light1, #f3f5f5);
  color: var(--black2, #2b2d34);
  font: inherit;
  transition: border-color 200ms ease, box-shadow 200ms ease;
}
.field::placeholder { color: var(--light3, #c2c6c8); }
.field:hover { border-color: var(--light3, #c2c6c8); }
.field:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--brand) 22%, transparent);
}
.field:user-invalid { border-color: #e5484d; }
.field:disabled { opacity: 0.5; cursor: not-allowed; }

/* ================================================================== *
 * CONTENT ICONS (monochrome, recolorable) - steer colour via --icon-color
 * ================================================================== */
.svc-icon {
  display: inline-block;
  width: 40px; height: 40px;
  background-color: var(--icon-color, var(--accent, var(--brand)));
  -webkit-mask: var(--icon) center / contain no-repeat;
          mask: var(--icon) center / contain no-repeat;
  transition: background-color 200ms ease;
}

/* ================================================================== *
 * STEP NUMBER BADGE - red square disc + optically-centred number
 * ================================================================== */
.step-badge {
  display: grid;
  place-items: center;
  width: 39px; height: 32px;
  border-radius: var(--btn-radius, 0px);
  background-color: var(--accent, var(--brand));
  color: var(--accent-contrast, var(--white));
}
.step-num {
  line-height: 1;
  letter-spacing: 0;
  font-variant-numeric: lining-nums tabular-nums;
  text-box-trim: trim-both;
  text-box-edge: cap alphabetic;
}

/* ================================================================== *
 * MISSING-DATA PLACEHOLDER
 * ================================================================== */
.data-placeholder {
  opacity: 0.55;
  font-style: italic;
  font-weight: inherit;
}

/* ================================================================== *
 * Reduced motion
 * ================================================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
