/* INDUSTRY.ZONE — SAFE VISUAL PATCH v3
   Scope: conservative CSS-only refresh for https://industry.ppv.stream/
   No global layout rewrites, no :has(), no body > div, no container width overrides.
   Load AFTER the site's existing CSS.
*/

/* ---------- Design tokens ---------- */
:root {
  --iz-navy-950: #030713;
  --iz-navy-900: #07111f;
  --iz-navy-800: #0b192a;
  --iz-navy-700: #13263d;
  --iz-red: #ef3340;
  --iz-red-deep: #d92331;
  --iz-paper: #f3f6fa;
  --iz-white: #ffffff;
  --iz-ink: #101827;
  --iz-muted: #657286;
  --iz-line: #dce3ec;
  --iz-radius: 14px;
  --iz-shadow: 0 14px 34px rgba(6, 17, 31, .10);
}

/* ---------- Safe global polish: visual properties only ---------- */
body {
  background-color: var(--iz-paper);
  color: var(--iz-ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a {
  transition: color .18s ease, opacity .18s ease;
}

hr {
  border: 0;
  border-top: 1px solid var(--iz-line);
  margin-top: 28px;
  margin-bottom: 28px;
}

/* ---------- Event heading ---------- */
h4 {
  color: var(--iz-navy-900);
  font-weight: 800;
  letter-spacing: -.025em;
  line-height: 1.15;
}

h4::after {
  content: "";
  display: block;
  width: 52px;
  height: 3px;
  margin-top: 12px;
  border-radius: 99px;
  background: var(--iz-red);
}

/* ---------- Login / access forms ----------
   Intentionally avoids changing form display/position/width. */
label {
  color: #334155;
  font-weight: 700;
}

input[type="email"],
input[type="password"],
input[type="text"] {
  min-height: 46px;
  padding: 10px 13px;
  color: var(--iz-ink);
  background-color: var(--iz-white);
  border: 1px solid #cbd5e1;
  border-radius: 9px;
  box-shadow: inset 0 1px 2px rgba(15, 23, 42, .03);
  transition: border-color .18s ease, box-shadow .18s ease;
}

input[type="email"]:focus,
input[type="password"]:focus,
input[type="text"]:focus {
  border-color: var(--iz-red);
  outline: 0;
  box-shadow: 0 0 0 3px rgba(239, 51, 64, .12);
}

/* Keep existing dimensions/layout of buttons; change skin only. */
button,
input[type="submit"],
input[type="button"],
.btn {
  border-color: var(--iz-red-deep);
  border-radius: 8px;
  transition: background-color .18s ease, border-color .18s ease,
              box-shadow .18s ease, transform .18s ease;
}

button:hover,
input[type="submit"]:hover,
input[type="button"]:hover,
.btn:hover {
  box-shadow: 0 7px 18px rgba(217, 35, 49, .18);
  transform: translateY(-1px);
}

/* ---------- Agenda ----------
   Preserve native table layout. Only surface styling. */
table {
  border-collapse: separate;
  border-spacing: 0;
  background: var(--iz-white);
  border: 1px solid var(--iz-line);
  border-radius: var(--iz-radius);
  box-shadow: var(--iz-shadow);
  overflow: hidden;
}

table th {
  color: #fff;
  background: var(--iz-navy-800);
  border-color: rgba(255,255,255,.08);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .035em;
}

table td,
table th {
  padding: 13px 14px;
}

table td {
  color: #2d394b;
  background: var(--iz-white);
  border-color: #e7ecf2;
}

table tbody tr:nth-child(even) td {
  background: #f8fafc;
}

table tbody tr {
  transition: background-color .18s ease;
}

table tbody tr:hover td {
  background: #f3f6fa;
}

table tbody td:first-child {
  color: var(--iz-red-deep);
  font-weight: 800;
}

/* ---------- Utility/info headings ---------- */
h5,
h6 {
  color: var(--iz-navy-900);
  font-weight: 800;
  letter-spacing: .02em;
}

/* ---------- Partner / patron / host logos ----------
   Important: no parent selectors and no grid/flex overrides.
   This only turns each existing linked image into a clean logo tile.
   Exact paths are based on the live site's logo directories. */

a[href] img[src*="/PATRONAT_HONOROWY/"],
a[href] img[src*="/PARTNERZY_WYDARZENIA/"],
a[href] img[src*="/ORGANIZATORZY_GOSPODARZE/"],
img[src*="/PATRONAT_HONOROWY/"],
img[src*="/PARTNERZY_WYDARZENIA/"],
img[src*="/ORGANIZATORZY_GOSPODARZE/"] {
  box-sizing: border-box;
  padding: 16px;
  background-color: #fff;
  border: 1px solid var(--iz-line);
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(6, 17, 31, .07);
  object-fit: contain;
  transition:
    transform .22s cubic-bezier(.2,.8,.2,1),
    box-shadow .22s ease,
    border-color .22s ease,
    filter .22s ease;
}

/* Logo effect: controlled, image-only, cannot reflow surrounding layout. */
a:hover img[src*="/PATRONAT_HONOROWY/"],
a:hover img[src*="/PARTNERZY_WYDARZENIA/"],
a:hover img[src*="/ORGANIZATORZY_GOSPODARZE/"] {
  transform: translateY(-4px);
  border-color: rgba(239, 51, 64, .42);
  box-shadow:
    0 15px 30px rgba(6, 17, 31, .12),
    0 0 0 3px rgba(239, 51, 64, .055);
  filter: saturate(1.05) contrast(1.02);
}

/* If logos are not wrapped in anchors, still provide a subtle effect. */
img[src*="/PATRONAT_HONOROWY/"]:hover,
img[src*="/PARTNERZY_WYDARZENIA/"]:hover,
img[src*="/ORGANIZATORZY_GOSPODARZE/"]:hover {
  transform: translateY(-4px);
  border-color: rgba(239, 51, 64, .42);
  box-shadow:
    0 15px 30px rgba(6, 17, 31, .12),
    0 0 0 3px rgba(239, 51, 64, .055);
}

/* ---------- Footer ---------- */
footer,
.footer {
  border-top-color: rgba(15, 23, 42, .10);
}

footer a,
.footer a {
  text-underline-offset: 3px;
}

/* ---------- Modal ----------
   Visual treatment only; Bootstrap/modal mechanics stay untouched. */
.modal-content {
  border: 1px solid var(--iz-line);
  border-radius: var(--iz-radius);
  box-shadow: 0 24px 60px rgba(3, 7, 19, .22);
  overflow: hidden;
}

.modal-header {
  border-bottom-color: var(--iz-line);
}

.modal-footer {
  border-top-color: var(--iz-line);
}

/* ---------- Mobile ----------
   Do not alter the site's breakpoints or component display modes. */
@media (max-width: 767px) {
  table td,
  table th {
    padding: 10px 9px;
    font-size: .88rem;
  }

  a[href] img[src*="/PATRONAT_HONOROWY/"],
  a[href] img[src*="/PARTNERZY_WYDARZENIA/"],
  a[href] img[src*="/ORGANIZATORZY_GOSPODARZE/"],
  img[src*="/PATRONAT_HONOROWY/"],
  img[src*="/PARTNERZY_WYDARZENIA/"],
  img[src*="/ORGANIZATORZY_GOSPODARZE/"] {
    padding: 10px;
    border-radius: 10px;
  }
}

/* ---------- Accessibility ---------- */
:focus-visible {
  outline: 3px solid rgba(239, 51, 64, .38);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  a,
  button,
  input,
  .btn,
  img {
    transition: none !important;
  }
}


/* ============================================================
   v3.1 — agenda alignment + centered title accent + fading HR
   ============================================================ */

/* Agenda: keep content aligned to the top of every cell.
   Horizontal alignment stays natural so longer descriptions remain readable. */
table th,
table td {
  vertical-align: top !important;
}

/* Time column can stay visually compact and centered horizontally. */
table th:first-child,
table td:first-child {
  text-align: center;
}

/* Decorative line under the main event subtitle/title.
   Center the existing h4 accent instead of leaving it aligned left. */
h4::after {
  margin-left: auto;
  margin-right: auto;
}

/* HR: thin center line fading smoothly at both ends. */
hr {
  height: 1px;
  border: 0 !important;
  background: linear-gradient(
    90deg,
    rgba(220, 227, 236, 0) 0%,
    rgba(180, 193, 208, .55) 16%,
    rgba(180, 193, 208, .85) 50%,
    rgba(180, 193, 208, .55) 84%,
    rgba(220, 227, 236, 0) 100%
  );
}


/* ============================================================
   v3.2 — agenda: time column + coffee break emphasis
   ============================================================ */

/* First agenda column: keep times such as 11:20 on one line. */
table th:first-child,
table td:first-child {
  white-space: nowrap !important;
  word-break: keep-all !important;
  overflow-wrap: normal !important;
}

/* Coffee break row.
   The live agenda places "Przerwa kawowa" in a row immediately
   after the 11:20 agenda item, so target that row without HTML changes. */
table tbody tr:nth-child(5) td {
  background: rgba(239, 51, 64, .045);
  border-top-color: rgba(239, 51, 64, .16);
  border-bottom-color: rgba(239, 51, 64, .16);
}

table tbody tr:nth-child(5) td:nth-child(2) {
  color: var(--iz-navy-900);
  font-weight: 750;
}

/* Small accent in the time cell, deliberately subtle. */
table tbody tr:nth-child(5) td:first-child {
  color: var(--iz-red-deep);
}


/* ============================================================
   v3.3 — agenda: lunch break emphasis
   ============================================================ */

/* "Lunch i rozmowy kuluarowe" — same treatment as "Przerwa kawowa". */
table tbody tr:last-child td {
  background: rgba(239, 51, 64, .045);
  border-top-color: rgba(239, 51, 64, .16);
  border-bottom-color: rgba(239, 51, 64, .16);
}

table tbody tr:last-child td:nth-child(2) {
  color: var(--iz-navy-900);
  font-weight: 750;
}

table tbody tr:last-child td:first-child {
  color: var(--iz-red-deep);
}




/* ============================================================
   INDUSTRY.ZONE — tabela porównawcza pakietów
   ============================================================ */

.iz-comparison-wrap {
  --iz-dark: #07111f;
  --iz-dark-2: #0d1b2d;
  --iz-red: #ef3340;
  --iz-red-dark: #d92331;
  --iz-bg: #f4f6f9;
  --iz-white: #ffffff;
  --iz-text: #182231;
  --iz-muted: #697587;
  --iz-line: #e0e6ee;

  margin: 48px 0;
  color: var(--iz-text);
}


/* ---------- Nagłówek sekcji ---------- */

.iz-comparison-header {
  margin-bottom: 22px;
  text-align: center;
}

.iz-comparison-kicker {
  display: inline-block;
  margin-bottom: 7px;

  color: var(--iz-red);

  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
}

.iz-comparison-header h3 {
  margin: 0;

  color: var(--iz-dark);

  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  letter-spacing: -.035em;
  line-height: 1.15;
}


/* ---------- Kontener ---------- */

.iz-comparison-scroll {
  overflow-x: auto;

  border-radius: 16px;

  box-shadow:
    0 16px 40px rgba(7, 17, 31, .10);

  -webkit-overflow-scrolling: touch;
}


/* ---------- Tabela ---------- */

.iz-comparison-table {
  width: 100%;
  min-width: 820px;

  margin: 0;

  border: 0;
  border-collapse: separate;
  border-spacing: 0;

  background: var(--iz-white);

  overflow: hidden;
}


/* ---------- Header ---------- */

.iz-comparison-table thead th {
  padding: 22px 18px;

  vertical-align: middle;
  text-align: center;

  color: #fff;

  background: var(--iz-dark);

  border: 0;
  border-right: 1px solid rgba(255,255,255,.10);
}

.iz-comparison-table thead th:last-child {
  border-right: 0;
}

.iz-comparison-table .iz-feature-col {
  width: 40%;

  padding-left: 24px;

  text-align: left;

  color: rgba(255,255,255,.65);

  font-size: 12px;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}


/* ---------- VIP ---------- */

.iz-comparison-table .iz-vip-head {
  position: relative;

  background:
    linear-gradient(
      145deg,
      #101e30,
      #07111f
    );
}

.iz-comparison-table .iz-vip-head::after {
  content: "";

  position: absolute;

  right: 0;
  bottom: 0;
  left: 0;

  height: 3px;

  background: var(--iz-red);
}


/* ---------- Nazwy pakietów ---------- */

.iz-plan {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.iz-plan-name {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .04em;
}

.iz-plan-price {
  color: #fff;

  font-size: 22px;
  font-weight: 850;

  letter-spacing: -.025em;
}

.iz-plan-badge {
  display: inline-flex;

  padding: 3px 8px;
  margin-bottom: 3px;

  color: #fff;
  background: var(--iz-red);

  border-radius: 999px;

  font-size: 9px;
  font-weight: 900;
  letter-spacing: .11em;
}


/* ---------- Komórki ---------- */

.iz-comparison-table tbody td {
  padding: 17px 18px;

  vertical-align: middle;

  background: #fff;

  border: 0;
  border-bottom: 1px solid var(--iz-line);
  border-right: 1px solid var(--iz-line);
}

.iz-comparison-table tbody td:last-child {
  border-right: 0;
}

.iz-comparison-table tbody tr:last-child td {
  border-bottom: 0;
}


/* ---------- Nazwa funkcji ---------- */

.iz-feature {
  padding-left: 24px !important;

  color: var(--iz-text);

  font-size: 14px;
  font-weight: 750;
  line-height: 1.35;
}

.iz-feature small {
  display: block;

  margin-top: 5px;

  color: var(--iz-muted);

  font-size: 12px;
  font-weight: 500;
  line-height: 1.4;
}


/* ---------- Środek ---------- */

.iz-center {
  min-width: 145px;

  text-align: center;
}


/* ---------- Check ---------- */

.iz-check {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  width: 28px;
  height: 28px;

  color: #fff;
  background: var(--iz-red);
  background-color:green;

  border-radius: 50%;

  font-size: 15px;
  font-weight: 900;

  box-shadow:
    0 5px 12px rgba(239, 51, 64, .18);
}


/* ---------- Brak ---------- */

.iz-no {
  color: #b8c1cd;

  font-size: 20px;
  font-weight: 500;
}


/* ---------- Opis pod checkiem ---------- */

.iz-cell-note {
  display: block;

  margin-top: 6px;

  color: var(--iz-muted);

  font-size: 10px;
  font-weight: 650;
  line-height: 1.35;

  text-transform: uppercase;
  letter-spacing: .025em;
}

.iz-cell-note-strong {
  color: var(--iz-dark);

  font-weight: 800;
}


/* ---------- Hover ---------- */

.iz-comparison-table tbody tr td {
  transition:
    background-color .18s ease;
}

.iz-comparison-table tbody tr:hover td {
  background: #f8fafc;
}


/* ---------- Ważniejszy wiersz ---------- */

.iz-comparison-table tbody tr.iz-highlight-row td {
  background:
    linear-gradient(
      90deg,
      rgba(239, 51, 64, .025),
      rgba(239, 51, 64, .055)
    );
}

.iz-comparison-table tbody tr.iz-highlight-row:hover td {
  background:
    linear-gradient(
      90deg,
      rgba(239, 51, 64, .045),
      rgba(239, 51, 64, .075)
    );
}


/* ---------- Lunch / przerwa ---------- */

.iz-comparison-table tbody tr.iz-break-row td {
  background: #f8fafc;
}

.iz-comparison-table tbody tr.iz-break-row .iz-feature {
  color: var(--iz-red-dark);
}


/* ---------- Delikatne podkreślenie kolumny VIP ---------- */

.iz-comparison-table tbody td:last-child {
  background:
    linear-gradient(
      180deg,
      rgba(239, 51, 64, .018),
      rgba(239, 51, 64, .038)
    );
}

.iz-comparison-table tbody tr:hover td:last-child {
  background: rgba(239, 51, 64, .06);
}


/* ---------- Mobile ---------- */

@media (max-width: 767px) {

  .iz-comparison-wrap {
    margin: 34px 0;
  }

  .iz-comparison-scroll {
    border-radius: 12px;
  }

  .iz-comparison-table {
    min-width: 760px;
  }

  .iz-comparison-table thead th {
    padding: 16px 12px;
  }

  .iz-comparison-table tbody td {
    padding: 14px 12px;
  }

  .iz-feature {
    padding-left: 16px !important;
  }

  .iz-plan-price {
    font-size: 18px;
  }

}


/* ---------- Reduced motion ---------- */

@media (prefers-reduced-motion: reduce) {

  .iz-comparison-table tbody td {
    transition: none;
  }

}





/* ==========================================================
   INDUSTRY.ZONE — wybór pakietu
   ========================================================== */

.iz-packages {
    width: 100%;
    margin: 5px 0 34px;
}

.iz-packages-title {
    margin: 0 0 14px;

    color: #172033;

    font-size: 20px;
    font-weight: 800;
    letter-spacing: .02em;
}

.iz-packages-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
}


/* karta */

.iz-package {
    position: relative;

    display: block;

    min-height: 280px;

    overflow: hidden;

    background: #fff;

    border: 1px solid #ccd7e5;
    border-radius: 15px;

    cursor: pointer;

    box-shadow:
        0 7px 20px rgba(10, 25, 48, .04);

    transition:
        transform .22s ease,
        border-color .22s ease,
        box-shadow .22s ease,
        background-color .22s ease;
}


/* ukryty radio */

.iz-package > input {
    position: absolute;

    width: 1px;
    height: 1px;

    opacity: 0;
    pointer-events: none;
}


/* czerwony pasek */

.iz-package-accent {
    position: absolute;

    top: 0;
    bottom: 0;
    left: 0;

    width: 17px;

    background: #f54149;

    border-radius: 15px;
}


/* content */

.iz-package-content {
    display: flex;
    flex-direction: column;

    min-height: 280px;

    padding:
        27px
        28px
        28px
        40px;
}


/* nazwa */

.iz-package-name {
    min-height: 36px;

    color: #172033;

    font-size: 15px;
    font-weight: 800;

    letter-spacing: .05em;

    line-height: 1.25;
}


/* cena */

.iz-package-price {
    display: block;

    margin-top: 15px;

    color: #f54149;

    font-size: 34px;
    font-weight: 850;

    line-height: 1;

    letter-spacing: -.025em;
}

.iz-package-price small {
    font-size: 18px;
    font-weight: 750;

    letter-spacing: 0;
}


/* opis */

.iz-package-description {
    display: block;

    margin-top: auto;
    padding-top: 36px;

    color: #43516a;

    font-size: 13px;
    font-weight: 500;

    line-height: 1.25;
}

.iz-package-description strong {
    display: block;

    margin-top: 4px;

    color: #f12f3c;

    font-weight: 600;

    text-transform: uppercase;
}


/* VIP */

.iz-package-vip {
    background: #101824;
    border-color: #22334b;
}

.iz-package-vip .iz-package-name {
    color: #fff;
}

.iz-package-vip .iz-package-description {
    color: #d9e1eb;
}


/* hover */

.iz-package:hover {
    transform: translateY(-3px);

    border-color: rgba(245, 65, 73, .45);

    box-shadow:
        0 15px 34px rgba(10, 25, 48, .10);
}


/* aktywny */

.iz-package.is-active {
    border-color: #f54149;

    box-shadow:
        0 0 0 2px rgba(245, 65, 73, .10),
        0 15px 34px rgba(10, 25, 48, .11);

    transform: translateY(-3px);
}

.iz-package.is-active::after {
    content: "✓";

    position: absolute;

    top: 16px;
    right: 16px;

    display: flex;

    align-items: center;
    justify-content: center;

    width: 27px;
    height: 27px;

    color: #fff;
    background: #f54149;

    border-radius: 50%;

    font-size: 14px;
    font-weight: 900;
}


/* mobile */

@media (max-width: 900px) {

    .iz-packages-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .iz-package,
    .iz-package-content {
        min-height: 210px;
    }

    .iz-package-description {
        padding-top: 24px;
    }

}

@media (max-width: 520px) {

    .iz-package-content {
        padding:
            23px
            22px
            23px
            35px;
    }

    .iz-package-price {
        font-size: 30px;
    }

}


.iz-stationary-notice {
    display: none;

    margin-top: 14px;
    padding: 13px 18px;

    color: #172033;
    background: #eef2f7;

    border: 1px solid #d6dee9;
    border-radius: 10px;

    text-align: center;

    font-size: 12px;
    font-weight: 800;
    letter-spacing: .035em;

    box-shadow: 0 4px 12px rgba(10, 25, 48, .04);
}

/* ==========================================================
   ONLINE VIP — subtelne rozszerzenie pakietu
   ========================================================== */

.iz-online-vip-box {
    margin-top: 12px;
}

.iz-online-vip-btn {
    position: relative;

    display: grid;
    grid-template-columns: auto auto 1fr;
    align-items: center;
    gap: 18px;

    width: 100%;
    padding: 17px 54px 17px 20px;

    color: #172033;
    background: #f8fafc;

    border: 1px solid #dce3ec;
    border-radius: 11px;

    text-align: left;
    cursor: pointer;

    box-shadow: none;

    transition:
        background-color .2s ease,
        border-color .2s ease,
        box-shadow .2s ease,
        transform .2s ease;
}


/* mały label */

.iz-online-vip-label {
    display: inline-flex;
    align-items: center;

    padding: 5px 9px;

    color: #697587;
    background: #eef2f6;

    border-radius: 6px;

    font-size: 9px;
    font-weight: 800;
    letter-spacing: .08em;

    white-space: nowrap;
}


/* nazwa */

.iz-online-vip-title {
    display: block;

    color: #172033;

    font-size: 13px;
    font-weight: 850;
    letter-spacing: .04em;

    white-space: nowrap;
}


/* cena */

.iz-online-vip-price {
    display: block;

    color: #ef3340;

    font-size: 18px;
    font-weight: 850;

    white-space: nowrap;
}


/* opis */

.iz-online-vip-description {
    grid-column: 1 / -1;

    display: block;

    margin-top: -5px;

    color: #687589;

    font-size: 12px;
    font-weight: 500;
    line-height: 1.45;
}


/* hover */

.iz-online-vip-btn:hover {
    background: #fff;

    border-color: #c8d2df;

    transform: translateY(-1px);

    box-shadow:
        0 7px 18px rgba(10, 25, 48, .055);
}


/* ==========================================================
   ZAZNACZONY ONLINE VIP
   ========================================================== */

.iz-online-vip-btn.is-active {
    background: #fff;

    border-color: #ef3340;

    box-shadow:
        0 0 0 2px rgba(239, 51, 64, .07),
        0 8px 20px rgba(10, 25, 48, .06);
}


/* ✓ — tak samo jak w głównych pakietach */

.iz-online-vip-btn.is-active::after {
    content: "✓";

    position: absolute;

    top: 13px;
    right: 14px;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 27px;
    height: 27px;

    color: #fff;
    background: #ef3340;

    border-radius: 50%;

    font-size: 14px;
    font-weight: 900;

    box-shadow:
        0 4px 10px rgba(239, 51, 64, .22);
}


/* mobile */

@media (max-width: 700px) {

    .iz-online-vip-btn {
        display: block;

        padding: 16px 52px 16px 17px;
    }

    .iz-online-vip-label {
        margin-bottom: 9px;
    }

    .iz-online-vip-title {
        margin-bottom: 4px;
    }

    .iz-online-vip-price {
        margin-bottom: 10px;
    }

    .iz-online-vip-description {
        margin-top: 0;
    }
}




/* ==========================================================
   INDUSTRY.ZONE — blok informacyjny strony głównej
   ========================================================== */

.iz-about {
    --iz-dark: #07111f;
    --iz-dark-2: #0d1b2d;
    --iz-dark-3: #13263d;
    --iz-red: #f54149;
    --iz-red-dark: #dc2c37;
    --iz-white: #ffffff;
    --iz-muted: #aeb9c9;
    --iz-line: rgba(126, 151, 183, .26);

    margin: 42px 0 48px;
}


/* ==========================================================
   GÓRNA CZĘŚĆ
   ========================================================== */

.iz-about-grid {
    display: grid;
    grid-template-columns: 1.45fr 1fr;
    gap: 34px;

    align-items: stretch;
}


/* ---------- tekst ---------- */

.iz-about-copy {
    padding: 8px 0;
}

.iz-about-copy h2,
.iz-process-intro h2 {
    margin: 0 0 22px;

    color: var(--iz-dark);

    font-size: 24px;
    font-weight: 850;
    line-height: 1.15;

    letter-spacing: -.025em;
}

.iz-about-copy h2::after,
.iz-process-intro h2::after {
    content: "";

    display: block;

    width: 48px;
    height: 3px;

    margin-top: 12px;

    background: var(--iz-red);

    border-radius: 999px;
}

.iz-about-copy p {
    max-width: 760px;

    margin: 0 0 10px;

    color: #566277;

    font-size: 15px;
    font-weight: 450;
    line-height: 1.55;
}


/* ==========================================================
   WYRÓŻNIONE HASŁO
   ========================================================== */

.iz-about-quote {
    position: relative;

    display: flex;
    flex-direction: column;
    justify-content: center;

    min-height: 205px;

    padding: 34px 36px 34px 48px;

    overflow: hidden;

    color: #fff;
    background:
        linear-gradient(
            145deg,
            #132235,
            #0b1726
        );

    border: 1px solid rgba(245, 65, 73, .30);
    border-radius: 0 16px 16px 0;

    box-shadow:
        0 14px 34px rgba(7, 17, 31, .10);
}


/* czerwony pionowy akcent */

.iz-about-quote::before {
    content: "";

    position: absolute;

    top: 0;
    bottom: 0;
    left: 0;

    width: 14px;

    background: var(--iz-red);
}


/* subtelne światło */

.iz-about-quote::after {
    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    top: -100px;
    right: -70px;

    background:
        radial-gradient(
            circle,
            rgba(245, 65, 73, .12),
            transparent 70%
        );

    pointer-events: none;
}

.iz-about-quote span {
    display: block;

    color: #fff;

    font-size: 17px;
    font-weight: 850;
    line-height: 1.2;

    letter-spacing: .01em;
}

.iz-about-quote strong {
    display: block;

    margin-top: 5px;

    color: var(--iz-red);

    font-size: 18px;
    font-weight: 900;
    line-height: 1.18;

    letter-spacing: .01em;
}


/* ==========================================================
   DLA KOGO
   ========================================================== */

.iz-audience {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 12px;

    margin-top: 28px;
    padding: 16px 22px;

    color: #4f5c70;
    background: #f7f9fc;

    border: 1px solid #dce4ed;
    border-radius: 11px;

    text-align: center;

    box-shadow:
        0 5px 14px rgba(7, 17, 31, .035);
}

.iz-audience-label {
    color: var(--iz-dark);

    font-size: 11px;
    font-weight: 850;
    letter-spacing: .04em;

    white-space: nowrap;
}

.iz-audience-items {
    font-size: 11px;
    font-weight: 650;
    line-height: 1.55;
}

.iz-audience-items i {
    padding: 0 5px;

    color: var(--iz-red);

    font-style: normal;
}


/* ==========================================================
   PROCES
   ========================================================== */

.iz-process {
    display: grid;
    grid-template-columns: 34% 1fr;
    gap: 34px;

    margin-top: 35px;

    align-items: center;
}

.iz-process-intro h2 {
    margin-bottom: 16px;
}

.iz-process-intro p {
    margin: 0;

    color: #677488;

    font-size: 14px;
    line-height: 1.45;
}


/* ==========================================================
   KROKI
   ========================================================== */

.iz-process-steps {
    position: relative;

    display: grid;
    grid-template-columns: repeat(5, 1fr);

    align-items: start;
}


/* linia pomiędzy krokami */

.iz-process-steps::before {
    content: "";

    position: absolute;

    top: 28px;
    left: 10%;
    right: 10%;

    height: 2px;

    background:
        linear-gradient(
            90deg,
            rgba(64, 96, 131, 0),
            #69809a 10%,
            #69809a 90%,
            rgba(64, 96, 131, 0)
        );
}


/* pojedynczy krok */

.iz-process-step {
    position: relative;
    z-index: 1;

    text-align: center;
}


/* numer */

.iz-process-number {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 56px;
    height: 56px;

    margin: 0 auto 12px;

    color: #fff;
    background: #173758;

    border: 5px solid #f3f6fa;
    border-radius: 50%;

    font-size: 15px;
    font-weight: 850;

    box-shadow:
        0 5px 15px rgba(7, 17, 31, .08);

    transition:
        transform .2s ease,
        background-color .2s ease,
        box-shadow .2s ease;
}


/* krok czerwony */

.iz-process-step.is-accent .iz-process-number {
    background: var(--iz-red);
}


/* nazwa */

.iz-process-name {
    color: #344258;

    font-size: 11px;
    font-weight: 850;

    letter-spacing: .025em;
}


/* hover */

.iz-process-step:hover .iz-process-number {
    transform: translateY(-3px);

    box-shadow:
        0 10px 22px rgba(7, 17, 31, .13);
}


/* ==========================================================
   RESPONSIVE
   ========================================================== */

@media (max-width: 900px) {

    .iz-about-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .iz-about-quote {
        min-height: auto;

        padding: 28px 28px 28px 42px;

        border-radius: 0 14px 14px 0;
    }

    .iz-audience {
        align-items: flex-start;
        flex-direction: column;

        text-align: left;
    }

    .iz-process {
        grid-template-columns: 1fr;
    }

}


@media (max-width: 650px) {

    .iz-about {
        margin-top: 30px;
    }

    .iz-about-copy h2,
    .iz-process-intro h2 {
        font-size: 20px;
    }

    .iz-about-copy p {
        font-size: 14px;
    }

    .iz-about-quote span,
    .iz-about-quote strong {
        font-size: 15px;
    }


    /* na telefonie kroki pionowo */

    .iz-process-steps {
        display: flex;
        flex-direction: column;

        gap: 8px;

        padding-left: 0;
    }

    .iz-process-steps::before {
        top: 25px;
        bottom: 25px;
        left: 26px;
        right: auto;

        width: 2px;
        height: auto;

        background:
            linear-gradient(
                180deg,
                rgba(64, 96, 131, 0),
                #69809a 10%,
                #69809a 90%,
                rgba(64, 96, 131, 0)
            );
    }

    .iz-process-step {
        display: flex;
        align-items: center;

        gap: 14px;

        text-align: left;
    }

    .iz-process-number {
        flex: 0 0 52px;

        width: 52px;
        height: 52px;

        margin: 0;
    }

    .iz-process-name {
        font-size: 12px;
    }

}