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

:root {
  /* Colors */
  --white: #ffffff;
  --light2: #dbdedf;
  --black2: #282827;
  --brand: #fdb308;
  --black3: #11110f;
  --text-white: #FFFFFF;
  --white-text: #FFFCFC;
  --light3: #c0c2c3;
  --light1: #f2f4f5;
  --black1: #737373;
  --dark-graphite: #252525;

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

  /* 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: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 22.4px;
}

.text-32px-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 38.4px;
  letter-spacing: -0.02em;
}

.text-18-px-button {
  font-family: "Bebas Neue", sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 23.4px;
  letter-spacing: -0.02em;
}

.text-80px-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 80px;
  font-weight: 400;
  line-height: 70.4px;
  letter-spacing: -0.02em;
}

.text-48px-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 48px;
  font-weight: 400;
  line-height: 57.6px;
  letter-spacing: -0.02em;
}

.text-64px-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 64px;
  font-weight: 400;
  line-height: 70.4px;
  letter-spacing: -0.02em;
}

.text-28px-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 28px;
  font-weight: 400;
  line-height: 27.4px;
  letter-spacing: -0.02em;
}

.text-24px-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 31.2px;
  letter-spacing: -0.02em;
}

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

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

/* UI signature — derived from the design; every component honours these:
   1) HARD 0px corners on EVERYTHING — buttons, cards, inputs, icon tiles and the "KROK 0X"
      labels are all sharp rectangles. There is no rounding anywhere; the whole radius scale is 0.
   2) Primary CTA = a SOLID amber (#fdb308) block with a DARK (#282827) Bebas-Neue uppercase label
      and a trailing double-chevron » that slides right on hover. Flat (no drop shadow), 16px/32px pad.
   3) Secondary CTA = NO fill, a 2px solid dark (#282827) outline + dark label — visibly lower
      priority than the amber CTA; it fills dark (label flips white) on hover. No arrow.
   4) Icon affordance = a FILLED amber SQUARE tile (sharp, not a circle) holding a dark glyph —
      the service-card arrow tile and the process-step icons read as hard amber squares.
   5) Dark, high-contrast surfaces — cards default to dark graphite (#252525 / #11110f) with white
      Bebas titles + amber accents; image tiles carry a bottom-up dark gradient scrim so white text reads.
*/

:root {
  /* Accent (CTA) — the design's primary button is solid amber #fdb308 = --brand, with DARK text. */
  --accent: var(--brand);              /* #fdb308 — the actual conversion-button fill */
  --accent-2: var(--brand);            /* solid CTA (no gradient) → second stop = accent */
  --accent-contrast: var(--black2);    /* readable text on amber = near-black #282827, NOT white */
  --btn-shadow: none;                  /* the CTA is flat in the design — no resting shadow */

  /* Radius scale — this brand is hard-edged: every element is a sharp 0px rectangle. */
  --radius-sm: 0px;                    /* inputs / chips */
  --radius-md: 0px;                    /* cards / tiles / icon squares */
  --radius-lg: 0px;                    /* large containers / image cards */
  --radius-pill: 0px;                  /* buttons & icon buttons are squared off, NOT pills here */

  /* ONE button height site-wide — seeded from the primary-CTA close-up (~63px, authoritative). */
  --btn-height: 63px;
  --btn-height-sm: 44px;
}

/* ============================================================================
   BUTTONS — the exact classes the shared <Button> outputs (.btn + variant)
   ============================================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-sizing: border-box;
  min-height: var(--btn-height, 63px);  /* height fixed here — not re-derived from padding */
  padding-block: 0;
  padding-inline: 32px;                  /* the design's 32px horizontal button padding */
  border: 1px solid transparent;
  border-radius: var(--radius-pill, var(--border-radius, 0px)); /* 0 — sharp corners */
  font-family: "Bebas Neue", sans-serif; /* the design's button type */
  font-size: 24px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.02em;
  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 amber fill, dark label, flat. Per-band recolour via --btn-bg / --btn-fg. */
.btn-primary {
  background: var(--btn-bg, var(--accent, var(--brand)));
  color: var(--btn-fg, var(--accent-contrast, var(--black2)));
  box-shadow: var(--btn-shadow, none);
}
@media (hover: hover) {
  .btn-primary:hover {
    transform: translateY(-2px);
    filter: brightness(0.95);
    box-shadow: 0 8px 18px -8px color-mix(in srgb, var(--accent, var(--brand)) 60%, transparent);
  }
}
.btn-primary:active { transform: translateY(0); filter: brightness(0.92); box-shadow: var(--btn-shadow, none); }

/* Secondary — NO fill, 2px dark outline, dark label. Fills dark on hover. Lower priority than CTA. */
.btn-secondary {
  background-color: transparent;
  color: var(--btn-fg, var(--btn-accent, var(--black2)));
  border-color: var(--btn-accent, var(--black2));
  border-width: 2px;
}
@media (hover: hover) {
  .btn-secondary:hover {
    background-color: var(--btn-accent, var(--black2));
    color: var(--btn-fg-hover, var(--white));
    transform: translateY(-2px);
  }
}
.btn-secondary:active { transform: translateY(0); }

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

/* Icon button — a sharp amber SQUARE with a dark glyph (the brand's icon affordance). */
.btn-icon {
  width: 48px; height: 48px; padding: 0;
  border-radius: var(--radius-md, 0px);   /* square, not a circle */
  display: inline-flex; align-items: center; justify-content: center;
  background-color: var(--accent, var(--brand));
  color: var(--accent-contrast, var(--black2));
  border: none; cursor: pointer;
  transition: transform 200ms ease, background-color 200ms ease, filter 200ms ease;
}
@media (hover: hover) { .btn-icon:hover { transform: scale(1.08); filter: brightness(0.95); } }
.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, 44px); padding-inline: 20px; }

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

/* 1. 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 zooms, the frame clips */
.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); } }

/* 2. Uniesienie — lift (translateY + shadow); default for cards/tiles */
.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: 0 16px 32px -12px rgba(0, 0, 0, 0.45);
  }
}
.hover-lift:active { transform: translateY(-2px); }

/* 3. 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(--black2)); }
}
.hover-tint { transition: color 200ms ease, border-color 200ms ease; }
@media (hover: hover) {
  .hover-tint:hover { color: var(--brand); border-color: var(--brand); }
}

/* 4. Ruchoma strzałka — moving arrow (the trailing » on CTAs / "read more") */
.with-arrow { display: inline-flex; align-items: center; gap: 10px; }
.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); }
}

/* 5. 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%; }

/* ============================================================================
   CONTENT ICONS (monochrome, recolorable mask) — .svc-icon
   ============================================================================ */
.svc-icon {
  display: inline-block;
  width: 40px; height: 40px;
  background-color: var(--accent, var(--brand));   /* amber paint; flip to --white on dark bands */
  -webkit-mask: var(--icon) center / contain no-repeat;
          mask: var(--icon) center / contain no-repeat;
  transition: background-color 200ms ease;
}

/* ============================================================================
   CARDS / TILES — dark, sharp-cornered (the brand's card surface)
   ============================================================================ */
.card {
  position: relative;
  z-index: 1;
  background: var(--dark-graphite, #252525);   /* dark graphite surface — solid, never transparent */
  color: var(--white);
  border-radius: var(--radius-md, 0px);        /* sharp corners */
  overflow: hidden;
  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: 0 16px 32px -12px rgba(0, 0, 0, 0.45); }
  .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; }

/* .card is padless so flush media reaches its edges; text lives in this padded wrapper. */
.card-body { padding: var(--padding-vertical, 24px) var(--padding-horizontal, 24px); }

/* ============================================================================
   INPUTS (forms — hero/contact)
   ============================================================================ */
.field {
  width: 100%;
  box-sizing: border-box;
  padding: 16px 18px;
  border: 1px solid var(--light3, #c0c2c3);
  border-radius: var(--radius-sm, 0px);        /* sharp corners */
  background: var(--white);
  color: var(--black2);
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  line-height: 22.4px;
  transition: border-color 200ms ease, box-shadow 200ms ease;
}
.field::placeholder { color: var(--black1, #737373); }
.field:hover { border-color: var(--brand); }
.field:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--brand) 25%, transparent);
}
.field:user-invalid { border-color: #e5484d; }
.field:disabled { opacity: 0.5; cursor: not-allowed; }

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

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