.elementor-kit-268{--e-global-color-primary:#FFFFFF;--e-global-color-secondary:#000000;--e-global-color-text:#758398;--e-global-color-accent:#009BDF;--e-global-color-f0faff4:#084088;--e-global-color-36a834b:#3A7D36;--e-global-color-3bc180a:#244E7D;--e-global-color-e3169b0:#0284C7;--e-global-color-e3a2a97:#89BE16;--e-global-typography-primary-font-family:"Poppins";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Rubik";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Rubik";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Rubik";--e-global-typography-accent-font-weight:500;}.elementor-kit-268 e-page-transition{background-color:#FFBC7D;}.elementor-kit-268 h1{font-family:"Poppins", Sans-serif;font-size:34px;font-weight:800;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){--kit-widget-spacing:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}@media(max-width:1025px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS *//* === KOLORY / DYSTANS === */
:root {
  --accent: #244E7D;
  --text: #0e1523;
  --muted: #606b7a;
  --card-bg: transparent;
  --radius: 14px;
}

/* === SIATKA 3 KROKÓW + STRZAŁKI === */
.cp-process {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 18px 24px;
}

.cp-process .step {
  position: relative;
  /* ZMIANA TUTAJ: Zwiększony padding góra/dół dla większej wysokości */
  padding: 28px 16px 30px;
  text-align: center;
  background: var(--card-bg);
  border-radius: var(--radius);
  transition: transform .25s ease, box-shadow .25s ease;
  outline: none;
}

.cp-process .label {
  margin: 0;
  /* ZMIANA TUTAJ: Lekko powiększona czcionka w nagłówku */
  font-size: clamp(20px, 2.2vw, 30px);
  line-height: 1.2;
  font-weight: 800;
  color: var(--text);
  letter-spacing: .2px;
}

.cp-process .desc {
  margin: 12px auto 0; /* Lekko zwiększony margines górny */
  /* ZMIANA TUTAJ: Powiększona czcionka opisu */
  font-size: 16px;
  line-height: 1.6; /* Lekko zwiększona interlinia dla czytelności */
  color: var(--muted);
  max-width: 38ch; /* Lekko zwiększona maksymalna szerokość linii */

  opacity: 0;
  transform: translateY(6px);
  transition: opacity .28s ease, transform .28s ease, max-height .28s ease;
  max-height: 0;
  overflow: hidden;
}

/* --- Reszta kodu bez zmian --- */

/* Podkreślenie „rysowane” na hover */
.cp-process .underline{
  position: absolute; left: 50%; bottom: 8px; width: 72%; height: 12px;
  transform: translateX(-50%);
}
.cp-process .underline path{
  fill: none;
  stroke: var(--accent);
  stroke-width: 3.5;
  stroke-linecap: round;
  stroke-dasharray: 260;
  stroke-dashoffset: 260;
  transition: stroke-dashoffset 520ms ease;
  opacity: .85;
}

/* interakcja hover/focus */
.cp-process .step:hover,
.cp-process .step:focus-visible{
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
}
.cp-process .step:hover .desc,
.cp-process .step:focus-visible .desc{
  opacity: 1;
  transform: translateY(0);
  max-height: 160px;
}
.cp-process .step:hover .underline path,
.cp-process .step:focus-visible .underline path{
  stroke-dashoffset: 0;
}

/* STRZAŁKA między krokami */
.cp-process .arrow svg{
  display: block; width: 64px; height: 16px;
}
.cp-process .arrow line{
  stroke: rgba(0,0,0,.22);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 4 6;
  transition: transform .35s ease, opacity .35s ease;
}
.cp-process .arrow polygon{
  fill: rgba(0,0,0,.35);
  transition: transform .35s ease, opacity .35s ease;
}
.cp-process .step:nth-of-type(1):hover ~ .arrow:nth-of-type(1) line,
.cp-process .step:nth-of-type(3):hover ~ .arrow:nth-of-type(2) line{
  transform: translateX(3px);
  opacity: .9;
}
.cp-process .step:nth-of-type(1):hover ~ .arrow:nth-of-type(1) polygon,
.cp-process .step:nth-of-type(3):hover ~ .arrow:nth-of-type(2) polygon{
  transform: translateX(2px);
  opacity: 1;
}

/* RESPONSYWNOŚĆ */
@media (max-width: 900px){
  .cp-process{
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .cp-process .arrow{ justify-self: center; }
}

/* prefers-reduced-motion */
@media (prefers-reduced-motion: reduce){
  .cp-process .step,
  .cp-process .desc,
  .cp-process .underline path,
  .cp-process .arrow line,
  .cp-process .arrow polygon{
    transition: none !important;
    animation: none !important;
  }
}

:root{
  --navy:#0F2B4C; --lime:#8CC63E; --text:#334155; --muted:#64748B; --light:#F6F8FB; 
  --radius:14px; --shadow:0 10px 25px rgba(16,42,67,.08);/* End custom CSS */