
/* ==================================================
   IOTS — ADDITIONAL CSS
   Wersja uporządkowana
   ================================================== */

/* ==================================================
   1. ZMIENNE I USTAWIENIA GLOBALNE
   ================================================== */

:root {
    --iots-primary: #1559ed;
    --iots-primary-hover: #4b7ef5;
    --iots-heading-accent: #3487e8;

    --iots-text: #101828;
    --iots-text-body: #444;
    --iots-text-muted: #667085;

    --iots-white: #fff;
    --iots-surface-soft: #f5f7fb;
    --iots-surface-blue: #eff6ff;

    --iots-border: #e5e7eb;
    --iots-border-soft: #e6e9ef;
    --iots-border-blue: #dbeafe;

    --iots-radius-sm: 8px;
    --iots-radius-md: 14px;
    --iots-radius-lg: 16px;
    --iots-radius-pill: 999px;

    --iots-shadow-card: 0 12px 30px rgba(0, 0, 0, 0.08);
    --iots-shadow-soft: 0 8px 24px rgba(0, 0, 0, 0.04);

    --iots-transition: 0.25s ease;
}

/* Aliasy wykorzystywane przez nowsze bloki strony głównej. */
:root {
    --iots-color-primary: var(--iots-color-blue);
    --iots-color-border-blue: var(--iots-color-blue-soft);
    --iots-font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
    --iots-shadow-hover: 0 18px 38px rgba(16, 24, 40, 0.13);
}

body,
.site,
#main-container,
main {
    background-color: var(--iots-white) !important;
}

.site-title,
.site-name {
    display: none !important;
}

/* Sticky header Blocksy */
header.ct-header,
header.ct-header.sticky,
[data-header*="type-1"] .ct-header [data-sticky*="yes"] [data-row*="middle"],
[data-header*="type-1"] .ct-header [data-sticky*="yes"] [data-row*="middle"] > div {
    background: var(--iots-white) !important;
}


/* ==================================================
   2. WSPÓLNE KARTY I PRZYCISKI
   ================================================== */

.iots-related-product-card,
.iots-related-article-card,
.iots-benefit-card,
.katalog-produkt {
    border: 1px solid var(--iots-border) !important;
    border-radius: var(--iots-radius-md);
    transition:
        transform var(--iots-transition),
        box-shadow var(--iots-transition),
        border-color var(--iots-transition);
}

.iots-related-product-card:hover,
.iots-related-article-card:hover,
.iots-benefit-card:hover,
.katalog-produkt:hover {
    transform: translateY(-4px);
    border-color: var(--iots-primary) !important;
    box-shadow: var(--iots-shadow-card);
}

.katalog-button,
.katalog-filtry button,
.iots-product-shop-button,
.iots-cta a,
.ct-button,
.n2-ss-button-container a,
.ff-btn,
.elementor-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--iots-primary) !important;
    color: var(--iots-white) !important;
    border: 1px solid var(--iots-primary) !important;
    border-radius: var(--iots-radius-sm) !important;
    text-decoration: none !important;
    cursor: pointer;
    transition:
        background var(--iots-transition),
        color var(--iots-transition),
        border-color var(--iots-transition),
        transform var(--iots-transition);
}

.katalog-button:hover,
.katalog-filtry button:hover,
.iots-product-shop-button:hover,
.iots-cta a:hover,
.ct-button:hover,
.n2-ss-button-container a:hover,
.ff-btn:hover,
.ff-btn:focus,
.elementor-button:hover {
    background: var(--iots-white) !important;
    color: var(--iots-primary) !important;
    border-color: var(--iots-primary) !important;
    transform: translateY(-2px);
}

.ff-btn:hover *,
.ff-btn:focus * {
    color: var(--iots-primary) !important;
}


/* ==========================================================
   IOTS MASTER CSS v1
   Fundament komponentów + pierwsza migracja: katalog Rozwiązania
   ========================================================== */

/* ----------------------------------------------------------
   01. DESIGN TOKENS
   ---------------------------------------------------------- */
:root {
    --iots-color-white: #ffffff;
    --iots-color-background: #ffffff;
    --iots-color-surface: #f8faff;
    --iots-color-surface-blue: #eff6ff;

    --iots-color-blue: #1559ed;
    --iots-color-blue-hover: #0f46c5;
    --iots-color-blue-soft: #dbeafe;

    --iots-color-text: #101828;
    --iots-color-text-body: #475467;
    --iots-color-text-muted: #667085;
    --iots-color-border: #e4eaf2;

    --iots-container: 1120px;
    --iots-gutter: 24px;

    --iots-radius-sm: 8px;
    --iots-radius-md: 12px;
    --iots-radius-lg: 14px;
    --iots-radius-pill: 999px;

    --iots-shadow-card: 0 14px 34px rgba(16, 24, 40, 0.09);
    --iots-shadow-focus: 0 0 0 4px rgba(21, 89, 237, 0.16);
    --iots-transition: 180ms ease;
}

/* Aliasy zgodności ze starszym arkuszem. */
:root {
    --iots-primary: var(--iots-color-blue);
    --iots-primary-hover: var(--iots-color-blue-hover);
    --iots-text: var(--iots-color-text);
    --iots-text-body: var(--iots-color-text-body);
    --iots-text-muted: var(--iots-color-text-muted);
    --iots-white: var(--iots-color-white);
    --iots-surface-soft: var(--iots-color-surface);
    --iots-surface-blue: var(--iots-color-surface-blue);
    --iots-border: var(--iots-color-border);
    --iots-border-blue: var(--iots-color-blue-soft);
}

/* ----------------------------------------------------------
   02. CONTAINER AND GRID
   ---------------------------------------------------------- */
.iots-container,
.iots-catalog {
    width: min(100% - (2 * var(--iots-gutter)), var(--iots-container));
    margin-inline: auto;
}

.iots-grid {
    display: grid;
    gap: 24px;
}

.iots-grid--catalog {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

/* ----------------------------------------------------------
   03. DIGITAL LABEL
   ---------------------------------------------------------- */
.iots-tag {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    width: fit-content;
    min-height: 24px;
    padding: 4px 9px;
    color: var(--iots-color-blue) !important;
    background: var(--iots-color-white);
    border: 1px solid var(--iots-color-blue-soft);
    border-radius: var(--iots-radius-pill);
    font-family: "JetBrains Mono", "Roboto Mono", monospace;
    font-size: 10px !important;
    font-weight: 600 !important;
    line-height: 1.2;
    letter-spacing: 0.075em;
    text-transform: uppercase;
}

/* ----------------------------------------------------------
   04. BASE CARD
   ---------------------------------------------------------- */
.iots-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    height: 100%;
    overflow: hidden;
    background: var(--iots-color-white);
    border: 1px solid var(--iots-color-border);
    border-radius: var(--iots-radius-lg);
    transition:
        transform var(--iots-transition),
        border-color var(--iots-transition),
        box-shadow var(--iots-transition);
}

.iots-card:hover {
    transform: translateY(-4px);
    border-color: var(--iots-color-blue);
    box-shadow: var(--iots-shadow-card);
}

.iots-card:focus-within {
    border-color: var(--iots-color-blue);
    box-shadow: var(--iots-shadow-focus);
}

.iots-card__media {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100px;
    overflow: hidden;
    background: var(--iots-color-surface);
    border: 0;
    border-bottom: 1px solid var(--iots-color-border);
    border-radius: 0;
    text-decoration: none;
}

.iots-card__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 8px 14px;
    transition: transform var(--iots-transition);
}

.iots-card:hover .iots-card__image {
    transform: scale(1.025);
}

.iots-card__placeholder {
    display: block;
    aspect-ratio: auto !important;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(135deg, rgba(21, 89, 237, 0.08), rgba(21, 89, 237, 0)),
        var(--iots-color-surface);
}

.iots-card__body {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    min-width: 0;
    padding: 20px;
}

.iots-card__label {
    margin: 0 0 10px !important;
}

.iots-card__title {
    min-height: 44px;
    margin: 0 0 10px !important;
    color: var(--iots-color-text) !important;
    font-size: 16px !important;
    font-weight: 700;
    line-height: 1.35 !important;
    letter-spacing: -0.01em;
}

.iots-card__title a {
    display: inline;
    margin: 0 !important;
    color: inherit !important;
    font-size: inherit !important;
    font-weight: inherit !important;
    line-height: inherit !important;
    letter-spacing: inherit !important;
    text-decoration: none !important;
    text-transform: none !important;
}

.iots-card__title a:hover {
    color: var(--iots-color-blue) !important;
}

.iots-card__description {
    flex: 1 1 auto;
    margin: 0 0 18px !important;
    color: var(--iots-color-text-muted) !important;
    font-size: 13.5px !important;
    line-height: 1.58 !important;
}

.iots-card__link {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    gap: 5px;
    margin-top: auto;
    color: var(--iots-color-blue) !important;
    font-family: "JetBrains Mono", "Roboto Mono", monospace;
    font-size: 11px !important;
    font-weight: 700 !important;
    line-height: 1.3;
    letter-spacing: 0.055em;
    text-decoration: none !important;
    text-transform: uppercase;
}

.iots-card__link:hover {
    color: var(--iots-color-blue-hover) !important;
}

/* ----------------------------------------------------------
   05. FILTER
   ---------------------------------------------------------- */
.iots-filter {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 10px;
    width: 100%;
    margin: 0 0 34px !important;
    padding: 0 !important;
    background: transparent !important;
}

.iots-filter::before,
.iots-filter::after {
    content: none !important;
}

.iots-filter__button {
    appearance: none;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 7px 14px !important;
    background: var(--iots-color-white) !important;
    border: 1px solid var(--iots-color-blue-soft) !important;
    border-radius: var(--iots-radius-pill) !important;
    color: #344054 !important;
    font-family: "JetBrains Mono", "Roboto Mono", monospace;
    font-size: 11px !important;
    font-weight: 600 !important;
    line-height: 1.2 !important;
    letter-spacing: 0.025em;
    cursor: pointer;
    transition:
        color var(--iots-transition),
        background var(--iots-transition),
        border-color var(--iots-transition),
        transform var(--iots-transition);
}

.iots-filter__button:hover {
    color: var(--iots-color-blue) !important;
    background: var(--iots-color-surface-blue) !important;
    border-color: var(--iots-color-blue) !important;
    transform: translateY(-1px);
}

.iots-filter__button:focus-visible {
    outline: none;
    border-color: var(--iots-color-blue) !important;
    box-shadow: var(--iots-shadow-focus);
}

.iots-filter__button.active,
.iots-filter__button.iots-is-active,
.iots-filter__button[aria-pressed="true"] {
    color: var(--iots-color-white) !important;
    background: var(--iots-color-blue) !important;
    border-color: var(--iots-color-blue) !important;
}

/* ----------------------------------------------------------
   06. CATALOG EMPTY STATE
   ---------------------------------------------------------- */
.iots-catalog__empty {
    grid-column: 1 / -1;
    width: 100%;
    margin: 0;
    padding: 32px 24px;
    color: var(--iots-color-text-muted);
    background: var(--iots-color-surface);
    border: 1px solid var(--iots-color-border);
    border-radius: var(--iots-radius-lg);
    text-align: center;
}

.iots-catalog__empty[hidden],
.iots-is-hidden {
    display: none !important;
}

/* ----------------------------------------------------------
   07. FIRST MIGRATION — SOLUTIONS CATALOG
   These selectors intentionally override legacy .solution-* styles.
   ---------------------------------------------------------- */
.iots-solutions-catalog-page .elementor-widget-shortcode,
.iots-solutions-catalog-page .elementor-widget-shortcode > .elementor-widget-container {
    width: 100%;
    max-width: none;
    overflow: visible;
}

.iots-solutions-catalog-page .iots-catalog--solutions {
    position: relative;
    left: 50%;
    width: min(calc(100vw - 40px), var(--iots-container)) !important;
    max-width: none !important;
    margin: 0 !important;
    transform: translateX(-50%);
}

.iots-catalog--solutions .solutions-grid {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 24px !important;
}

.iots-catalog--solutions .solution-card.iots-card {
    display: flex !important;
    width: auto !important;
    min-height: 100%;
    padding: 0 !important;
    border-radius: var(--iots-radius-lg) !important;
}

.iots-catalog--solutions .solution-image.iots-card__media {
    display: flex !important;
    width: 100% !important;
    max-width: none !important;
    height: 100px !important;
    margin: 0 !important;
    background: var(--iots-color-surface) !important;
    border: 0 !important;
    border-bottom: 1px solid var(--iots-color-border) !important;
    border-radius: 0 !important;
}

.iots-catalog--solutions .solution-image .iots-card__image {
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    max-height: none !important;
    object-fit: contain !important;
}

.iots-catalog--solutions .solution-content.iots-card__body {
    padding: 20px !important;
}

.iots-catalog--solutions .solution-category.iots-tag {
    min-height: 24px;
    margin: 0 0 10px !important;
    font-size: 10px !important;
}

.iots-catalog--solutions .solution-content .iots-card__title {
    min-height: 44px;
    margin: 0 0 10px !important;
    font-size: 16px !important;
    line-height: 1.35 !important;
}

.iots-catalog--solutions .solution-content .iots-card__description {
    margin: 0 0 18px !important;
    font-size: 13.5px !important;
    line-height: 1.58 !important;
}

.iots-catalog--solutions .solution-content .iots-card__link {
    margin-top: auto;
    font-size: 11px !important;
}

.iots-catalog--solutions .solutions-filter.iots-filter {
    justify-content: flex-start;
    margin: 0 0 34px !important;
    padding: 0 !important;
}

/* ----------------------------------------------------------
   08. RESPONSIVE
   ---------------------------------------------------------- */
@media (max-width: 1000px) {
    .iots-grid--catalog,
    .iots-catalog--solutions .solutions-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 650px) {
    :root {
        --iots-gutter: 16px;
    }

    .iots-solutions-catalog-page .iots-catalog--solutions {
        width: min(calc(100vw - 28px), var(--iots-container)) !important;
    }

    .iots-grid--catalog,
    .iots-catalog--solutions .solutions-grid {
        grid-template-columns: 1fr !important;
        gap: 18px !important;
    }

    .iots-filter {
        gap: 8px;
        margin-bottom: 26px !important;
    }

    .iots-filter__button {
        min-height: 32px;
        padding: 7px 12px !important;
        font-size: 10.5px !important;
    }

    .iots-card__media,
    .iots-catalog--solutions .solution-image.iots-card__media {
        height: 112px !important;
    }

    .iots-card__title,
    .iots-catalog--solutions .solution-content .iots-card__title {
        min-height: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .iots-card,
    .iots-card__image,
    .iots-filter__button {
        transition: none !important;
    }

    .iots-card:hover,
    .iots-filter__button:hover {
        transform: none;
    }
}

/* ----------------------------------------------------------
   09. SECOND MIGRATION — ARTICLES CATALOG
   ---------------------------------------------------------- */

/*
 * Blog korzysta z tego samego kontenera, filtra, siatki i karty
 * co katalog Rozwiązania. Różnice ograniczają się do wariantu
 * zdjęcia, nieco mniejszego tytułu i odnośnika.
 */
.iots-blog-catalog-page .elementor-widget-shortcode,
.iots-blog-catalog-page .elementor-widget-shortcode > .elementor-widget-container {
    width: 100%;
    max-width: none;
    overflow: visible;
}

.iots-blog-catalog-page .iots-catalog--articles {
    position: relative;
    left: 50%;
    width: min(calc(100vw - 40px), var(--iots-container)) !important;
    max-width: none !important;
    margin: 0 !important;
    transform: translateX(-50%);
}

.iots-catalog--articles .iots-grid--catalog,
.iots-catalog--articles .articles-grid,
.iots-catalog--articles .solutions-grid {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 24px !important;
}

.iots-catalog--articles .iots-card--article {
    display: flex !important;
    width: auto !important;
    min-height: 100%;
    padding: 0 !important;
    border-radius: var(--iots-radius-lg) !important;
}

.iots-catalog--articles .iots-card__media {
    display: flex !important;
    width: 100% !important;
    max-width: none !important;
    height: 100px !important;
    margin: 0 !important;
    background: var(--iots-color-surface) !important;
    border: 0 !important;
    border-bottom: 1px solid var(--iots-color-border) !important;
    border-radius: 0 !important;
}

.iots-catalog--articles .iots-card__image {
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    max-height: none !important;
    padding: 0 !important;
    object-fit: cover !important;
}

.iots-catalog--articles .iots-card__body {
    padding: 20px !important;
}

.iots-catalog--articles .iots-card__label {
    min-height: 24px;
    margin: 0 0 10px !important;
    font-size: 10px !important;
}

.iots-catalog--articles .iots-card__title {
    min-height: 41px;
    margin: 0 0 10px !important;
    font-size: 15px !important;
    line-height: 1.35 !important;
}

.iots-catalog--articles .iots-card__description {
    margin: 0 0 18px !important;
    font-size: 13px !important;
    line-height: 1.58 !important;
}

.iots-catalog--articles .iots-card__link {
    margin-top: auto;
    font-size: 10.5px !important;
    letter-spacing: 0.055em !important;
}

.iots-catalog--articles .iots-filter {
    justify-content: flex-start;
    margin: 0 0 34px !important;
    padding: 0 !important;
}

/*
 * Usunięcie popularnych widgetów udostępniania tylko na stronie
 * katalogu Blog. Nie obejmuje zwykłych profili społecznościowych
 * w nagłówku i stopce.
 */
.iots-blog-catalog-page .ct-share-box,
.iots-blog-catalog-page .elementor-widget-share-buttons,
.iots-blog-catalog-page .elementor-share-buttons-wrapper,
.iots-blog-catalog-page .addtoany_share_save_container,
.iots-blog-catalog-page .heateor_sss_sharing_container,
.iots-blog-catalog-page .sharedaddy,
.iots-blog-catalog-page .sd-sharing,
.iots-blog-catalog-page .wp-block-jetpack-sharing-buttons,
.iots-blog-catalog-page .essb_links,
.iots-blog-catalog-page .sassy-social-share,
.iots-blog-catalog-page .post-share,
.iots-blog-catalog-page .post-sharing,
.iots-blog-catalog-page .social-share-buttons {
    display: none !important;
}

@media (max-width: 1000px) {
    .iots-catalog--articles .iots-grid--catalog,
    .iots-catalog--articles .articles-grid,
    .iots-catalog--articles .solutions-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 650px) {
    .iots-blog-catalog-page .iots-catalog--articles {
        width: min(calc(100vw - 28px), var(--iots-container)) !important;
    }

    .iots-catalog--articles .iots-grid--catalog,
    .iots-catalog--articles .articles-grid,
    .iots-catalog--articles .solutions-grid {
        grid-template-columns: 1fr !important;
        gap: 18px !important;
    }

    .iots-catalog--articles .iots-card__media {
        height: 130px !important;
    }

    .iots-catalog--articles .iots-card__title {
        min-height: 0;
    }
}

/* ==========================================================
   IOTS MASTER v8 — HOMEPAGE
   ========================================================== */

.iots-homepage-v1 {
    overflow: hidden;
    color: var(--iots-color-text-body);
    background: var(--iots-color-white);
}

.iots-homepage-v1 .iots-container {
    width: min(calc(100% - 40px), var(--iots-container));
    max-width: var(--iots-container);
    margin-right: auto;
    margin-left: auto;
}

.iots-homepage-v1 .iots-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin: 0 0 17px;
    color: var(--iots-color-blue);
    font-family: var(--iots-font-mono);
    font-size: 10.5px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: .085em;
    text-transform: uppercase;
}

.iots-homepage-v1 .iots-eyebrow::before {
    width: 22px;
    height: 1px;
    background: currentColor;
    content: "";
}

.iots-home-hero-v1 {
    padding: 88px 0 82px;
    background:
        radial-gradient(circle at 82% 20%, rgba(21, 89, 237, .08), transparent 28%),
        linear-gradient(180deg, #fff, var(--iots-color-surface));
    border-bottom: 1px solid var(--iots-color-border);
}

.iots-home-hero-v1__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
    gap: 58px;
    align-items: center;
}

.iots-home-hero-v1__content h1 {
    max-width: 760px;
    margin: 0;
    color: var(--iots-color-text);
    font-size: clamp(42px, 5.5vw, 66px);
    line-height: 1.06;
    letter-spacing: -.038em;
}

.iots-home-hero-v1__content h1 span {
    color: var(--iots-color-blue);
}

.iots-home-hero-v1__content > p {
    max-width: 660px;
    margin: 25px 0 0;
    color: var(--iots-color-text-muted);
    font-size: 17px;
    line-height: 1.72;
}

.iots-home-hero-v1__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 31px;
}

.iots-homepage-v1 .iots-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 11px 21px;
    border-radius: var(--iots-radius-sm);
    font-family: var(--iots-font-mono);
    font-size: 10.5px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: .05em;
    text-decoration: none !important;
    text-transform: uppercase;
    transition:
        color var(--iots-transition),
        background var(--iots-transition),
        border-color var(--iots-transition),
        transform var(--iots-transition);
}

.iots-homepage-v1 .iots-button--primary {
    color: var(--iots-color-white) !important;
    background: var(--iots-color-blue);
    border: 1px solid var(--iots-color-blue);
}

.iots-homepage-v1 .iots-button--secondary {
    color: var(--iots-color-blue) !important;
    background: var(--iots-color-white);
    border: 1px solid var(--iots-color-blue-soft);
}

.iots-homepage-v1 .iots-button:hover {
    color: var(--iots-color-blue) !important;
    background: var(--iots-color-white);
    border-color: var(--iots-color-blue);
    transform: translateY(-2px);
}

.iots-home-flow-v1 {
    padding: 30px;
    background: var(--iots-color-white);
    border: 2px solid var(--iots-color-blue-soft);
    border-radius: var(--iots-radius-lg);
    box-shadow: var(--iots-shadow-card);
}

.iots-home-flow-v1__nodes {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.iots-home-flow-v1__node {
    display: grid;
    flex: 1 1 0;
    gap: 6px;
    min-width: 0;
    padding: 19px 10px;
    text-align: center;
    background: var(--iots-color-surface);
    border: 1px solid var(--iots-color-border);
    border-radius: var(--iots-radius-md);
}

.iots-home-flow-v1__node--its {
    background: var(--iots-color-surface-blue);
    border-color: var(--iots-color-blue-soft);
}

.iots-home-flow-v1__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin: 0 auto 3px;
    color: var(--iots-color-blue);
    background: var(--iots-color-white);
    border: 1px solid var(--iots-color-blue-soft);
    border-radius: 11px;
    font-family: var(--iots-font-mono);
    font-size: 10px;
    font-weight: 700;
}

.iots-home-flow-v1__node strong {
    color: var(--iots-color-text);
    font-size: 13px;
}

.iots-home-flow-v1__node small {
    color: var(--iots-color-text-muted);
    font-size: 10px;
}

.iots-home-flow-v1__arrow {
    flex: none;
    color: var(--iots-color-blue);
    font-family: var(--iots-font-mono);
    font-size: 18px;
}

.iots-home-flow-v1__status {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-top: 14px;
    padding: 13px 15px;
    color: var(--iots-color-text-muted);
    background: var(--iots-color-surface);
    border: 1px solid var(--iots-color-border);
    border-radius: var(--iots-radius-sm);
    font-family: var(--iots-font-mono);
    font-size: 10px;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.iots-home-flow-v1__status strong {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--iots-color-blue);
}

.iots-home-flow-v1__status i {
    width: 7px;
    height: 7px;
    background: var(--iots-color-blue);
    border-radius: 50%;
    box-shadow: 0 0 0 5px rgba(21, 89, 237, .1);
}

.iots-home-tech-v1 {
    padding: 25px 0;
    border-bottom: 1px solid var(--iots-color-border);
}

.iots-home-tech-v1 .iots-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 26px;
}

.iots-home-tech-v1__label {
    flex: none;
    margin: 0;
    color: var(--iots-color-text-muted);
    font-family: var(--iots-font-mono);
    font-size: 9.5px;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.iots-home-tech-v1__list {
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 9px;
}

.iots-home-tech-v1__list span {
    padding: 7px 12px;
    color: var(--iots-color-text-muted);
    background: var(--iots-color-surface);
    border: 1px solid var(--iots-color-border);
    border-radius: 999px;
    font-family: var(--iots-font-mono);
    font-size: 9.5px;
    letter-spacing: .035em;
}

.iots-home-section-v1 {
    padding: 82px 0;
    border-bottom: 1px solid var(--iots-color-border);
}

.iots-home-section-v1:nth-of-type(even) {
    background: var(--iots-color-surface);
}

.iots-home-section-head-v1 {
    max-width: 700px;
    margin-bottom: 38px;
}

.iots-home-section-head-v1--row {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 28px;
    max-width: none;
}

.iots-home-section-head-v1 h2 {
    margin: 0;
    color: var(--iots-color-text);
    font-size: clamp(30px, 4vw, 42px);
    line-height: 1.15;
    letter-spacing: -.025em;
}

.iots-home-section-head-v1 p {
    max-width: 650px;
    margin: 15px 0 0;
    color: var(--iots-color-text-muted);
    font-size: 15.5px;
    line-height: 1.7;
}

.iots-home-section-link-v1 {
    flex: none;
    padding-bottom: 5px;
    color: var(--iots-color-blue) !important;
    font-family: var(--iots-font-mono);
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: .045em;
    text-decoration: none !important;
    text-transform: uppercase;
}

.iots-home-category-grid-v1 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.iots-home-category-card-v1 {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 25px !important;
    color: inherit !important;
    text-decoration: none !important;
}

.iots-home-category-card-v1__number {
    margin: 0 0 18px;
    color: var(--iots-color-blue);
    font-family: var(--iots-font-mono);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .08em;
}

.iots-home-category-card-v1 h3 {
    margin: 0 0 10px;
    color: var(--iots-color-text);
    font-size: 17px;
    line-height: 1.35;
}

.iots-home-category-card-v1 p {
    margin: 0 0 20px;
    color: var(--iots-color-text-muted);
    font-size: 13px;
    line-height: 1.62;
}

.iots-home-category-card-v1__link {
    margin-top: auto;
    color: var(--iots-color-blue);
    font-family: var(--iots-font-mono);
    font-size: 9.5px;
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.iots-home-card-grid-v1 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.iots-home-card-grid-v1 .iots-card {
    min-height: 100%;
    padding: 0 !important;
    overflow: hidden;
}

.iots-home-card-media-v1 {
    display: flex !important;
    height: 112px !important;
    overflow: hidden;
    background: var(--iots-color-surface);
    border-bottom: 1px solid var(--iots-color-border);
}

.iots-home-card-media-v1 .iots-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.iots-home-card-placeholder-v1 {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    height: 100%;
}

.iots-home-card-placeholder-v1 span {
    width: 11px;
    height: 11px;
    background: var(--iots-color-blue);
    border-radius: 50%;
    opacity: .28;
}

.iots-home-card-placeholder-v1 span:nth-child(2) {
    opacity: .55;
}

.iots-home-card-placeholder-v1 span:nth-child(3) {
    opacity: .9;
}

.iots-home-card-grid-v1 .iots-card__body {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    padding: 20px;
}

.iots-home-card-grid-v1 .iots-card__label {
    align-self: flex-start;
    margin-bottom: 10px;
    font-size: 9px;
}

.iots-home-card-grid-v1 .iots-card__title {
    min-height: 42px;
    margin-bottom: 10px;
    font-size: 15px;
}

.iots-home-card-grid-v1 .iots-card__description {
    margin-bottom: 17px;
    font-size: 12.8px;
}

.iots-home-card-grid-v1 .iots-card__link {
    margin-top: auto;
    font-size: 10px;
}

.iots-home-why-v1 {
    background: var(--iots-color-surface-blue) !important;
}

.iots-home-why-grid-v1 {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.iots-home-why-grid-v1 article {
    padding: 0 3px;
}

.iots-home-why-grid-v1 article > span {
    display: block;
    margin-bottom: 13px;
    color: var(--iots-color-blue);
    font-family: var(--iots-font-mono);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .08em;
}

.iots-home-why-grid-v1 h3 {
    margin: 0 0 9px;
    color: var(--iots-color-text);
    font-size: 16px;
    line-height: 1.4;
}

.iots-home-why-grid-v1 p {
    margin: 0;
    color: var(--iots-color-text-muted);
    font-size: 13px;
    line-height: 1.62;
}

.iots-home-its-v1 {
    background: var(--iots-color-white) !important;
}

.iots-home-its-v1__panel {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 54px;
    align-items: center;
    padding: 46px !important;
    background:
        linear-gradient(145deg, var(--iots-color-white), var(--iots-color-surface-blue));
    border: 2px solid var(--iots-color-blue-soft);
    border-radius: var(--iots-radius-lg);
    box-shadow: var(--iots-shadow-card);
}

.iots-home-its-v1__content h2 {
    margin: 0;
    color: var(--iots-color-text);
    font-size: clamp(29px, 4vw, 40px);
    line-height: 1.16;
}

.iots-home-its-v1__content p {
    margin: 17px 0 24px;
    color: var(--iots-color-text-muted);
    font-size: 15px;
    line-height: 1.7;
}

.iots-home-dashboard-v1 {
    padding: 23px;
    background: var(--iots-color-white);
    border: 1px solid var(--iots-color-blue-soft);
    border-radius: var(--iots-radius-md);
    box-shadow: 0 14px 32px rgba(21, 89, 237, .1);
}

.iots-home-dashboard-v1__top {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 17px;
    color: var(--iots-color-blue);
    font-family: var(--iots-font-mono);
    font-size: 9.5px;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.iots-home-dashboard-v1__bars {
    display: flex;
    align-items: end;
    gap: 8px;
    height: 104px;
    margin-bottom: 17px;
    padding: 0 2px;
}

.iots-home-dashboard-v1__bars i {
    flex: 1 1 0;
    min-width: 0;
    background: linear-gradient(180deg, var(--iots-color-blue), rgba(21, 89, 237, .38));
    border-radius: 4px 4px 0 0;
}

.iots-home-dashboard-v1__rows {
    display: grid;
    gap: 7px;
}

.iots-home-dashboard-v1__rows div {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    padding: 9px 11px;
    color: var(--iots-color-text-muted);
    background: var(--iots-color-surface);
    border: 1px solid var(--iots-color-border);
    border-radius: 6px;
    font-family: var(--iots-font-mono);
    font-size: 9.5px;
}

.iots-home-dashboard-v1__rows strong {
    color: var(--iots-color-blue);
}

.iots-home-industry-grid-v1 {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.iots-home-industry-chip-v1 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 13px;
    min-height: 68px;
    padding: 17px 18px;
    color: var(--iots-color-text) !important;
    background: var(--iots-color-white);
    border: 1px solid var(--iots-color-border);
    border-radius: var(--iots-radius-md);
    font-size: 13px;
    font-weight: 600;
    line-height: 1.4;
    text-decoration: none !important;
    transition:
        color var(--iots-transition),
        border-color var(--iots-transition),
        box-shadow var(--iots-transition),
        transform var(--iots-transition);
}

.iots-home-industry-chip-v1 span {
    flex: none;
    color: var(--iots-color-blue);
}

.iots-home-industry-chip-v1:hover {
    color: var(--iots-color-blue) !important;
    border-color: var(--iots-color-blue);
    box-shadow: var(--iots-shadow-hover);
    transform: translateY(-2px);
}

/*
 * CTA korzysta z ogólnej klasy .iots-cta. Ten blok musi pozostać w arkuszu
 * Home razem z późniejszymi korektami .iots-home-cta-v1.
 */
.iots-cta {
    margin-top: 70px;
    padding: 40px;
    background: var(--iots-white);
    border: 1px solid #e6e6e6;
    border-radius: var(--iots-radius-lg);
    text-align: center;
}

.iots-cta h2 {
    margin-bottom: 15px;
    color: #111;
    font-size: 28px;
}

.iots-cta p {
    margin-bottom: 25px;
    color: var(--iots-text-body);
}

.iots-cta a {
    padding: 14px 30px;
    font-weight: 600;
}

@media (max-width: 700px) {
    .iots-section,
    .iots-cta {
        padding: 25px;
    }
}

.iots-home-cta-v1 {
    margin-top: 72px !important;
    margin-bottom: 82px !important;
    padding: 43px !important;
    border: 2px solid var(--iots-color-blue-soft);
    box-shadow: var(--iots-shadow-card);
}

@media (max-width: 1000px) {
    .iots-home-hero-v1__grid,
    .iots-home-its-v1__panel {
        grid-template-columns: 1fr;
    }

    .iots-home-flow-v1 {
        max-width: 670px;
    }

    .iots-home-category-grid-v1,
    .iots-home-card-grid-v1 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .iots-home-why-grid-v1,
    .iots-home-industry-grid-v1 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 650px) {
    .iots-homepage-v1 .iots-container {
        width: min(calc(100% - 28px), var(--iots-container));
    }

    .iots-home-hero-v1 {
        padding: 58px 0 54px;
    }

    .iots-home-hero-v1__grid {
        gap: 36px;
    }

    .iots-home-hero-v1__content h1 {
        font-size: clamp(37px, 12vw, 49px);
    }

    .iots-home-hero-v1__content > p {
        font-size: 15.5px;
    }

    .iots-home-hero-v1__actions {
        align-items: stretch;
        flex-direction: column;
    }

    .iots-homepage-v1 .iots-button {
        width: 100%;
    }

    .iots-home-flow-v1 {
        padding: 20px;
    }

    .iots-home-flow-v1__nodes {
        align-items: stretch;
        flex-direction: column;
    }

    .iots-home-flow-v1__node {
        width: 100%;
    }

    .iots-home-flow-v1__arrow {
        transform: rotate(90deg);
    }

    .iots-home-tech-v1 .iots-container {
        align-items: flex-start;
        flex-direction: column;
    }

    .iots-home-tech-v1__list {
        justify-content: flex-start;
    }

    .iots-home-section-v1 {
        padding: 58px 0;
    }

    .iots-home-section-head-v1--row {
        align-items: flex-start;
        flex-direction: column;
        gap: 16px;
    }

    .iots-home-category-grid-v1,
    .iots-home-card-grid-v1,
    .iots-home-why-grid-v1,
    .iots-home-industry-grid-v1 {
        grid-template-columns: 1fr;
    }

    .iots-home-its-v1__panel {
        width: min(calc(100% - 28px), var(--iots-container)) !important;
        padding: 27px 22px !important;
    }

    .iots-home-dashboard-v1 {
        padding: 18px;
    }

    .iots-home-cta-v1 {
        width: min(calc(100% - 28px), var(--iots-container)) !important;
        margin-top: 54px !important;
        margin-bottom: 58px !important;
        padding: 29px 23px !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    .iots-homepage-v1 .iots-button,
    .iots-home-industry-chip-v1 {
        transition: none !important;
    }

    .iots-homepage-v1 .iots-button:hover,
    .iots-home-industry-chip-v1:hover {
        transform: none;
    }
}

/* ==========================================================
   IOTS MASTER v10 — INDUSTRY CARD DESCRIPTION + GRAPHIC ICON
   ========================================================== */

/* Graficzna ikona w katalogu Branż. */
.iots-industry-card-v1__icon-content,
.iots-industry-hero-v1__icon-content {
    display: block;
    width: 100%;
    height: 100%;
}

.iots-industry-card-v1__icon .iots-industry-icon-image-v2,
.iots-industry-hero-v1__icon .iots-industry-icon-image-v2 {
    width: 100%;
    height: 100%;
    padding: 10px;
    object-fit: contain;
}

.iots-industry-card-v1__icon .iots-industry-icon-symbol-v2,
.iots-industry-hero-v1__icon .iots-industry-icon-symbol-v2 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.iots-industry-hero-v1__icon .iots-industry-icon-symbol-v2 {
    width: 100%;
    height: 100%;
}

/* HOME: pełne kafelki Branż z ikoną i krótkim opisem. */
.iots-home-industry-grid-v2 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.iots-home-industry-card-v2 {
    display: grid;
    grid-template-columns: 62px minmax(0, 1fr) auto;
    gap: 16px;
    align-items: center;
    min-height: 112px;
    padding: 20px !important;
    color: inherit !important;
    text-decoration: none !important;
}

.iots-home-industry-card-v2__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    overflow: hidden;
    color: var(--iots-color-blue);
    background: var(--iots-color-surface-blue);
    border: 1px solid var(--iots-color-blue-soft);
    border-radius: var(--iots-radius-md);
    font-family: var(--iots-font-mono);
    font-size: 23px;
    line-height: 1;
}

.iots-home-industry-card-v2__icon img {
    width: 100%;
    height: 100%;
    padding: 8px;
    object-fit: contain;
}

.iots-home-industry-card-v2__content {
    display: grid;
    gap: 7px;
    min-width: 0;
}

.iots-home-industry-card-v2__content strong {
    color: var(--iots-color-text);
    font-size: 15px;
    line-height: 1.35;
}

.iots-home-industry-card-v2__content small {
    color: var(--iots-color-text-muted);
    font-size: 12.5px;
    line-height: 1.55;
}

.iots-home-industry-card-v2__arrow {
    flex: none;
    color: var(--iots-color-blue);
    font-family: var(--iots-font-mono);
    font-size: 16px;
    transition: transform var(--iots-transition);
}

.iots-home-industry-card-v2:hover .iots-home-industry-card-v2__arrow {
    transform: translateX(3px);
}

@media (max-width: 750px) {
    .iots-home-industry-grid-v2 {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .iots-home-industry-card-v2 {
        grid-template-columns: 52px minmax(0, 1fr);
        gap: 13px;
    }

    .iots-home-industry-card-v2__icon {
        width: 50px;
        height: 50px;
    }

    .iots-home-industry-card-v2__arrow {
        display: none;
    }
}

/* ==========================================================
   IOTS — INTERAKTYWNY HERO STRONY GŁÓWNEJ v2

   Shortcode:
   [iots_home_hero]

   Ten blok jest niezależny od wcześniejszych stylów.
   Wklej go na samym końcu Additional CSS.
   ========================================================== */

.iots-home-hero-v2 {
    --iots-h2-bg: #f7f8fc;
    --iots-h2-white: #ffffff;
    --iots-h2-navy: #26225b;
    --iots-h2-indigo: #2d2a7d;
    --iots-h2-blue: #4883c4;
    --iots-h2-cyan: #1cb0dc;
    --iots-h2-accent: #1d6e92;
    --iots-h2-text: #1a1750;
    --iots-h2-body: #4c4f79;
    --iots-h2-muted: #7b7ea0;
    --iots-h2-line: rgba(26, 23, 80, 0.09);
    --iots-h2-line-strong: rgba(26, 23, 80, 0.16);
    --iots-h2-font: "IBM Plex Sans", "Inter", Arial, sans-serif;
    --iots-h2-mono: "IBM Plex Mono", "JetBrains Mono", Consolas, monospace;

    position: relative;
    isolation: isolate;
    width: 100%;
    margin: 0;
    overflow: hidden;
    color: var(--iots-h2-text);
    background: var(--iots-h2-bg);
    border-top: 1px solid var(--iots-h2-line);
    border-bottom: 1px solid var(--iots-h2-line);
    font-family: var(--iots-h2-font);
    -webkit-font-smoothing: antialiased;
}

.iots-home-hero-v2--full {
    width: 100vw;
    max-width: 100vw;
    margin-inline: calc(50% - 50vw);
}

.iots-home-hero-v2,
.iots-home-hero-v2 * {
    box-sizing: border-box;
}

.iots-home-hero-v2__background {
    position: absolute;
    z-index: -1;
    inset: 0;
    background:
        radial-gradient(
            ellipse 900px 600px at 82% -5%,
            rgba(28, 176, 220, 0.11),
            transparent 60%
        ),
        radial-gradient(
            ellipse 700px 500px at -5% 32%,
            rgba(45, 42, 125, 0.08),
            transparent 60%
        );
    pointer-events: none;
}

.iots-home-hero-v2__inner {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding-inline: clamp(20px, 3.4vw, 40px);
}

.iots-home-hero-v2__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(390px, 0.95fr);
    gap: clamp(34px, 4vw, 64px);
    align-items: center;
    min-height: 660px;
    padding-block:
        clamp(74px, 8vw, 104px)
        clamp(60px, 6.5vw, 78px);
}

.iots-home-hero-v2__content {
    min-width: 0;
}

.iots-home-hero-v2__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--iots-h2-accent);
    font-family: var(--iots-h2-mono);
    font-size: 12.5px;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.iots-home-hero-v2__dotring {
    display: block;
    flex: 0 0 auto;
    width: 16px;
    height: 16px;
}

.iots-home-hero-v2__title {
    max-width: 790px;
    margin: 22px 0 24px !important;
    padding: 0 !important;
    color: var(--iots-h2-text) !important;
    font-family: var(--iots-h2-font) !important;
    font-size: clamp(42px, 4.6vw, 64px) !important;
    font-weight: 700 !important;
    line-height: 1.055 !important;
    letter-spacing: -0.032em !important;
    text-transform: none !important;
}

.iots-home-hero-v2__title-line,
.iots-home-hero-v2__title-accent {
    display: block;
}

.iots-home-hero-v2__title-accent {
    padding-bottom: 0.08em;
    background:
        linear-gradient(
            100deg,
            var(--iots-h2-cyan),
            var(--iots-h2-blue) 58%,
            var(--iots-h2-indigo)
        );
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent !important;
    -webkit-text-fill-color: transparent;
}

.iots-home-hero-v2__lead {
    max-width: 590px;
    margin: 0 0 34px !important;
    padding: 0 !important;
    color: var(--iots-h2-body) !important;
    font-family: var(--iots-h2-font) !important;
    font-size: clamp(17px, 1.4vw, 19px) !important;
    font-weight: 400 !important;
    line-height: 1.66 !important;
}

.iots-home-hero-v2__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin: 0 0 42px;
}

.iots-home-hero-v2__button {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 48px;
    padding: 12px 23px !important;
    border: 1px solid transparent !important;
    border-radius: 8px !important;
    box-shadow: none !important;
    font-family: var(--iots-h2-font) !important;
    font-size: 14.5px !important;
    font-weight: 600 !important;
    line-height: 1.2 !important;
    text-align: center;
    text-decoration: none !important;
    transition:
        transform 180ms ease,
        background-color 180ms ease,
        border-color 180ms ease,
        color 180ms ease,
        box-shadow 180ms ease;
}

.iots-home-hero-v2__button--primary {
    color: #ffffff !important;
    background:
        linear-gradient(
            135deg,
            var(--iots-h2-cyan),
            var(--iots-h2-blue)
        ) !important;
    border-color: var(--iots-h2-blue) !important;
    box-shadow:
        0 12px 26px -16px rgba(45, 42, 125, 0.62) !important;
}

.iots-home-hero-v2__button--primary:hover,
.iots-home-hero-v2__button--primary:focus-visible {
    color: var(--iots-h2-blue) !important;
    background: var(--iots-h2-white) !important;
    border-color: var(--iots-h2-blue) !important;
    transform: translateY(-2px);
    box-shadow:
        0 16px 30px -18px rgba(45, 42, 125, 0.5) !important;
}

.iots-home-hero-v2__button--secondary {
    color: var(--iots-h2-text) !important;
    background: rgba(255, 255, 255, 0.58) !important;
    border-color: var(--iots-h2-line-strong) !important;
    backdrop-filter: blur(8px);
}

.iots-home-hero-v2__button--secondary:hover,
.iots-home-hero-v2__button--secondary:focus-visible {
    color: var(--iots-h2-blue) !important;
    background: var(--iots-h2-white) !important;
    border-color: var(--iots-h2-blue) !important;
    transform: translateY(-2px);
}

.iots-home-hero-v2__button:focus-visible {
    outline: 3px solid rgba(28, 176, 220, 0.28) !important;
    outline-offset: 3px;
}

.iots-home-hero-v2__proof {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(18px, 2.2vw, 32px);
    padding-top: 27px;
    border-top: 1px solid var(--iots-h2-line);
}

.iots-home-hero-v2__proof-item {
    min-width: 0;
}

.iots-home-hero-v2__proof-item strong {
    display: block;
    margin: 0 0 5px;
    color: var(--iots-h2-text);
    font-family: var(--iots-h2-mono);
    font-size: 12.5px;
    font-weight: 600;
    line-height: 1.4;
}

.iots-home-hero-v2__proof-item span {
    display: block;
    color: var(--iots-h2-muted);
    font-size: 12.5px;
    line-height: 1.55;
}

/* ==========================================================
   WIZUALIZACJA ITS
   ========================================================== */

.iots-home-hero-v2__visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    min-height: 480px;
    perspective: 1200px;
}

.iots-home-hero-v2__orbit-shell {
    width: 100%;
    transform-style: preserve-3d;
    transition: transform 250ms cubic-bezier(0.2, 0.7, 0.3, 1);
    will-change: transform;
}

.iots-home-hero-v2__svg {
    display: block;
    width: min(100%, 530px);
    height: auto;
    margin: 0 auto;
    overflow: visible;
}

.iots-home-hero-v2__ring {
    transform-box: fill-box;
    transform-origin: center;
}

.iots-home-hero-v2__ring--forward {
    animation: iots-home-hero-v2-spin 90s linear infinite;
}

.iots-home-hero-v2__ring--reverse {
    animation: iots-home-hero-v2-spin-reverse 130s linear infinite;
}

.iots-home-hero-v2__connectors path {
    opacity: 0.55;
    stroke-width: 1.4;
    transition:
        opacity 250ms ease,
        stroke-width 250ms ease,
        filter 250ms ease;
}

.iots-home-hero-v2__svg.has-active-node
.iots-home-hero-v2__connectors path {
    opacity: 0.14;
}

.iots-home-hero-v2__svg.has-active-node
.iots-home-hero-v2__connectors path.is-active {
    opacity: 1;
    stroke-width: 2;
    filter:
        drop-shadow(0 0 4px rgba(28, 176, 220, 0.55));
}

.iots-home-hero-v2__particles {
    transition: opacity 200ms ease;
}

.iots-home-hero-v2__svg.has-active-node
.iots-home-hero-v2__particles {
    opacity: 0.17;
}

.iots-home-hero-v2__core-glow {
    transform-box: fill-box;
    transform-origin: center;
    animation:
        iots-home-hero-v2-pulse 3.2s ease-in-out infinite;
}

.iots-home-hero-v2__core-ring {
    transform-origin: 240px 240px;
    animation:
        iots-home-hero-v2-spin 40s linear infinite;
    opacity: 0.72;
}

.iots-home-hero-v2__node {
    cursor: pointer;
    outline: none;
}

.iots-home-hero-v2__node-hit {
    pointer-events: all;
}

.iots-home-hero-v2__node-halo {
    opacity: 0;
    transform: scale(0.4);
    transform-box: fill-box;
    transform-origin: center;
    transition:
        opacity 220ms ease,
        transform 220ms ease;
}

.iots-home-hero-v2__node-dot {
    transform-box: fill-box;
    transform-origin: center;
    transition:
        transform 220ms cubic-bezier(0.2, 0.8, 0.3, 1.3),
        filter 220ms ease;
}

.iots-home-hero-v2__node:hover
.iots-home-hero-v2__node-dot,
.iots-home-hero-v2__node:focus
.iots-home-hero-v2__node-dot,
.iots-home-hero-v2__node.is-active
.iots-home-hero-v2__node-dot {
    transform: scale(1.5);
    filter:
        drop-shadow(0 0 6px rgba(28, 176, 220, 0.8));
}

.iots-home-hero-v2__node:hover
.iots-home-hero-v2__node-halo,
.iots-home-hero-v2__node:focus
.iots-home-hero-v2__node-halo,
.iots-home-hero-v2__node.is-active
.iots-home-hero-v2__node-halo {
    opacity: 0.18;
    transform: scale(1);
}

.iots-home-hero-v2__node-label {
    fill: var(--iots-h2-body);
    font-family: var(--iots-h2-mono);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.04em;
    opacity: 0.86;
    pointer-events: none;
    transition:
        opacity 200ms ease,
        fill 200ms ease;
}

.iots-home-hero-v2__node-label--core {
    fill: #ffffff;
    font-size: 10.5px;
    font-weight: 600;
    opacity: 1;
}

.iots-home-hero-v2__node:hover
.iots-home-hero-v2__node-label,
.iots-home-hero-v2__node:focus
.iots-home-hero-v2__node-label,
.iots-home-hero-v2__node.is-active
.iots-home-hero-v2__node-label {
    fill: var(--iots-h2-text);
    opacity: 1;
}

.iots-home-hero-v2__svg.has-active-node
.iots-home-hero-v2__node:not(.is-active)
.iots-home-hero-v2__node-label {
    opacity: 0.34;
}

/* Tooltip węzła */
.iots-home-hero-v2__tooltip {
    position: absolute;
    z-index: 5;
    top: 0;
    left: 0;
    width: max-content;
    max-width: 220px;
    padding: 12px 16px;
    opacity: 0;
    pointer-events: none;
    color: var(--iots-h2-text);
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid var(--iots-h2-line-strong);
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(26, 23, 80, 0.14);
    backdrop-filter: blur(10px);
    transform:
        translate(-50%, -100%)
        translateY(-14px)
        scale(0.94);
    transition:
        opacity 160ms ease,
        transform 160ms ease;
}

.iots-home-hero-v2__tooltip.is-visible {
    opacity: 1;
    transform:
        translate(-50%, -100%)
        translateY(-20px)
        scale(1);
}

.iots-home-hero-v2__tooltip strong {
    display: block;
    margin: 0 0 4px;
    color: var(--iots-h2-navy);
    font-family: var(--iots-h2-mono);
    font-size: 12px;
    font-weight: 600;
    line-height: 1.35;
}

.iots-home-hero-v2__tooltip span {
    display: block;
    color: var(--iots-h2-muted);
    font-size: 12.5px;
    line-height: 1.45;
}

@keyframes iots-home-hero-v2-spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes iots-home-hero-v2-spin-reverse {
    to {
        transform: rotate(-360deg);
    }
}

@keyframes iots-home-hero-v2-pulse {
    0%,
    100% {
        opacity: 0.85;
        transform: scale(1);
    }

    50% {
        opacity: 0.35;
        transform: scale(1.12);
    }
}

/* ==========================================================
   TABLET
   ========================================================== */

@media (max-width: 980px) {
    .iots-home-hero-v2__grid {
        grid-template-columns: minmax(0, 1fr);
        min-height: auto;
        padding-top: 62px;
    }

    .iots-home-hero-v2__content {
        max-width: 780px;
    }

    .iots-home-hero-v2__title {
        font-size: clamp(40px, 7vw, 56px) !important;
    }

    .iots-home-hero-v2__visual {
        min-height: 390px;
    }

    .iots-home-hero-v2__visual-first
    .iots-home-hero-v2__visual {
        order: -1;
    }

    .iots-home-hero-v2__svg {
        width: min(100%, 480px);
    }
}

/* ==========================================================
   TELEFON
   ========================================================== */

@media (max-width: 640px) {
    .iots-home-hero-v2__inner {
        padding-inline: 20px;
    }

    .iots-home-hero-v2__grid {
        gap: 30px;
        padding-block: 52px 44px;
    }

    .iots-home-hero-v2__eyebrow {
        font-size: 10.5px;
        letter-spacing: 0.105em;
    }

    .iots-home-hero-v2__title {
        margin-top: 18px !important;
        font-size: clamp(36px, 11vw, 47px) !important;
        line-height: 1.08 !important;
    }

    .iots-home-hero-v2__lead {
        margin-bottom: 27px !important;
        font-size: 16px !important;
        line-height: 1.62 !important;
    }

    .iots-home-hero-v2__actions {
        display: grid;
        grid-template-columns: minmax(0, 1fr);
        margin-bottom: 32px;
    }

    .iots-home-hero-v2__button {
        width: 100%;
    }

    .iots-home-hero-v2__proof {
        grid-template-columns: minmax(0, 1fr);
        gap: 17px;
    }

    .iots-home-hero-v2__proof-item {
        padding-left: 14px;
        border-left:
            2px solid rgba(28, 176, 220, 0.55);
    }

    .iots-home-hero-v2__visual {
        min-height: 310px;
    }

    .iots-home-hero-v2__node-label {
        font-size: 10px;
    }

    .iots-home-hero-v2__tooltip {
        max-width: 180px;
        padding: 10px 12px;
    }
}

/* ==========================================================
   OGRANICZENIE ANIMACJI
   ========================================================== */

@media (prefers-reduced-motion: reduce) {
    .iots-home-hero-v2 *,
    .iots-home-hero-v2 *::before,
    .iots-home-hero-v2 *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .iots-home-hero-v2__orbit-shell {
        transform: none !important;
    }
}

/* ==========================================================
   IOTS — ETAP 1: UI + MIKROINTERAKCJE + KONTAKT v2

   Ten blok ZASTĘPUJE poprzedni blok:
   „IOTS — ETAP 1: STABILIZACJA UI + MIKROINTERAKCJE v1”.
   Nie doklejaj obu wersji jednocześnie.
   ========================================================== */

:root {
    --iots-page-header-gap: 0px;
    --iots-ui-navy: #26225b;
    --iots-ui-indigo: #2d2a7d;
    --iots-ui-blue: #4883c4;
    --iots-ui-cyan: #1cb0dc;
    --iots-ui-text: #1a1750;
    --iots-ui-body: #4c4f79;
    --iots-ui-muted: #7b7ea0;
    --iots-ui-bg: #f7f8fc;
    --iots-ui-alt: #eef1fa;
    --iots-ui-surface: #ffffff;
    --iots-ui-line: rgba(26, 23, 80, 0.10);
    --iots-ui-line-strong: rgba(26, 23, 80, 0.18);
    --iots-ui-shadow: 0 24px 60px -38px rgba(26, 23, 80, 0.42);
    --iots-ui-font: "IBM Plex Sans", "Inter", Arial, sans-serif;
    --iots-ui-mono: "IBM Plex Mono", "JetBrains Mono", Consolas, monospace;
}

/* ----------------------------------------------------------
   1. JEDNAKOWY START TREŚCI POD HEADEREM
   ---------------------------------------------------------- */
body.page-id-331 .site-main,
body.page-id-334 .site-main,
body.page-id-354 .site-main,
body.page-id-4734 .site-main,
body.iots-blog-catalog-page .site-main,
body.iots-industries-catalog-page-v1 .site-main {
    margin-top: var(--iots-page-header-gap) !important;
    padding-top: 0 !important;
}

body.page-id-331 .site-main > .elementor > .e-con:first-child,
body.page-id-334 .site-main > .elementor > .e-con:first-child,
body.page-id-354 .site-main > .elementor > .e-con:first-child,
body.page-id-4734 .site-main > .elementor > .e-con:first-child {
    margin-top: 0 !important;
    padding-top: 0 !important;
    --padding-top: 0px;
}

body.iots-blog-catalog-page .ct-container-full,
body.iots-industries-catalog-page-v1 .ct-container-full {
    padding-top: 0 !important;
}

/* ----------------------------------------------------------
   2. BLOG — MINIMALNE ODSUNIĘCIE FILTRÓW
   ---------------------------------------------------------- */
body.iots-blog-catalog-page .iots-catalog--articles {
    overflow: visible !important;
}

body.iots-blog-catalog-page .iots-catalog--articles .iots-filter {
    padding-top: 6px !important;
    overflow: visible !important;
}

/* ----------------------------------------------------------
   3. HERO KONTAKT — SZYBSZE, DELIKATNIE WIĘKSZE KÓŁECZKA
   ---------------------------------------------------------- */
.iots-contact-hero-v1__panel-status i {
    position: relative;
    animation: iots-contact-status-pulse-v2 2.15s ease-out infinite;
}

.iots-contact-hero-v1__card {
    transition:
        transform 220ms ease,
        border-color 220ms ease,
        box-shadow 220ms ease,
        background-color 220ms ease;
}

.iots-contact-hero-v1__card:hover {
    z-index: 3;
    transform: translateY(-4px) translateX(2px);
    background: #ffffff;
    border-color: rgba(72, 131, 196, 0.48);
    box-shadow: 0 18px 36px -28px rgba(26, 23, 80, 0.62);
}

.iots-contact-hero-v1__card-icon {
    transition:
        color 220ms ease,
        transform 220ms ease,
        border-color 220ms ease,
        box-shadow 220ms ease;
}

.iots-contact-hero-v1__card:hover .iots-contact-hero-v1__card-icon {
    transform: scale(1.055);
    border-color: rgba(28, 176, 220, 0.48);
    box-shadow: 0 0 0 5px rgba(28, 176, 220, 0.08);
}

.iots-contact-hero-v1__process-line {
    overflow: visible;
}

.iots-contact-hero-v1__process-line::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 30%;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(28, 176, 220, 0.98),
        rgba(72, 131, 196, 0.80),
        transparent
    );
    filter: blur(0.2px);
    transform: translate(-50%, -50%);
    animation: iots-contact-flow-v2 6.4s linear infinite;
}

.iots-contact-hero-v1__step i,
.iots-contact-hero-v1__step span {
    animation-duration: 6.4s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
}

.iots-contact-hero-v1__step i {
    animation-name: iots-contact-step-dot-v2;
}

.iots-contact-hero-v1__step span {
    animation-name: iots-contact-step-label-v2;
}

.iots-contact-hero-v1__step:nth-child(2) i,
.iots-contact-hero-v1__step:nth-child(2) span {
    animation-delay: 0s;
}

.iots-contact-hero-v1__step:nth-child(3) i,
.iots-contact-hero-v1__step:nth-child(3) span {
    animation-delay: 1.6s;
}

.iots-contact-hero-v1__step:nth-child(4) i,
.iots-contact-hero-v1__step:nth-child(4) span {
    animation-delay: 3.2s;
}

.iots-contact-hero-v1__step:nth-child(5) i,
.iots-contact-hero-v1__step:nth-child(5) span {
    animation-delay: 4.8s;
}

@keyframes iots-contact-status-pulse-v2 {
    0%, 48%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 4px rgba(28, 176, 220, 0.12);
    }
    18% {
        transform: scale(1.23);
        box-shadow:
            0 0 0 6px rgba(28, 176, 220, 0.15),
            0 0 20px rgba(28, 176, 220, 0.58);
    }
}

@keyframes iots-contact-flow-v2 {
    0% { left: 0; opacity: 0; }
    7% { opacity: 1; }
    93% { opacity: 1; }
    100% { left: 100%; opacity: 0; }
}

@keyframes iots-contact-step-dot-v2 {
    0%, 23%, 100% {
        transform: scale(1);
        background: var(--iots-ch-surface);
        box-shadow: 0 0 0 4px rgba(28, 176, 220, 0.08);
    }
    7%, 15% {
        transform: scale(1.34);
        background: var(--iots-ch-cyan);
        box-shadow:
            0 0 0 6px rgba(28, 176, 220, 0.16),
            0 0 20px rgba(28, 176, 220, 0.52);
    }
}

@keyframes iots-contact-step-label-v2 {
    0%, 23%, 100% {
        color: var(--iots-ch-body);
        transform: translateY(0);
    }
    7%, 15% {
        color: var(--iots-ch-indigo);
        transform: translateY(-2px);
    }
}

/* ----------------------------------------------------------
   4. HERO O NAS — PEŁNY PROCES + ZASADY W PANELU
   ---------------------------------------------------------- */
.iots-about-hero-v1__panel-status i {
    animation: iots-about-status-pulse-v2 2.7s ease-out infinite;
}

.iots-about-hero-v1__stage:nth-child(3) {
    margin-left: 16px;
}

.iots-about-hero-v1__stage:nth-child(5) {
    margin-left: 32px;
}

.iots-about-hero-v1__stage:nth-child(7) {
    margin-left: 48px;
}

.iots-about-hero-v1__stage:nth-child(3) .iots-about-hero-v1__stage-marker {
    color: var(--iots-ah-cyan);
}

.iots-about-hero-v1__stage:nth-child(5) .iots-about-hero-v1__stage-marker {
    color: var(--iots-ah-indigo);
}

.iots-about-hero-v1__stage:nth-child(7) .iots-about-hero-v1__stage-marker {
    color: var(--iots-ah-blue);
}

.iots-about-hero-v1__stage {
    animation: iots-about-stage-sequence-v2 8s ease-in-out infinite;
    transition:
        transform 220ms ease,
        border-color 220ms ease,
        box-shadow 220ms ease,
        background-color 220ms ease;
}

.iots-about-hero-v1__stage:nth-of-type(1) { animation-delay: 0s; }
.iots-about-hero-v1__stage:nth-of-type(2) { animation-delay: 2s; }
.iots-about-hero-v1__stage:nth-of-type(3) { animation-delay: 4s; }
.iots-about-hero-v1__stage:nth-of-type(4) { animation-delay: 6s; }

.iots-about-hero-v1__stage:hover {
    z-index: 4;
    transform: translateX(5px) translateY(-2px);
    background: #ffffff;
    border-color: rgba(72, 131, 196, 0.50);
    box-shadow: 0 18px 38px -30px rgba(26, 23, 80, 0.64);
}

.iots-about-hero-v1__stage-marker {
    transition:
        transform 220ms ease,
        border-color 220ms ease,
        box-shadow 220ms ease;
}

.iots-about-hero-v1__stage:hover .iots-about-hero-v1__stage-marker {
    transform: rotate(-2deg) scale(1.06);
    border-color: rgba(28, 176, 220, 0.48);
    box-shadow: 0 0 0 5px rgba(28, 176, 220, 0.09);
}

.iots-about-hero-v1__connector i {
    position: relative;
    overflow: visible;
}

.iots-about-hero-v1__connector i::after {
    content: "";
    position: absolute;
    top: -2px;
    left: 50%;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--iots-ah-cyan);
    box-shadow: 0 0 13px rgba(28, 176, 220, 0.66);
    transform: translateX(-50%);
    animation: iots-about-connector-pulse-v2 3.2s ease-in-out infinite;
}

.iots-about-hero-v1__connector:nth-child(4) i::after {
    animation-delay: 1.05s;
}

.iots-about-hero-v1__connector:nth-child(6) i::after {
    animation-delay: 2.1s;
}

.iots-about-hero-v1__principles span {
    position: relative;
    overflow: hidden;
    cursor: default;
    animation: iots-about-principle-pill-v2 6.3s ease-in-out infinite;
    transition:
        color 200ms ease,
        background-color 200ms ease,
        border-color 200ms ease,
        transform 200ms ease,
        box-shadow 200ms ease;
}

.iots-about-hero-v1__principles span:nth-child(2) {
    animation-delay: 2.1s;
}

.iots-about-hero-v1__principles span:nth-child(3) {
    animation-delay: 4.2s;
}

.iots-about-hero-v1__principles span:hover {
    color: var(--iots-ah-text);
    background: #ffffff;
    border-color: rgba(72, 131, 196, 0.48);
    transform: translateY(-2px);
    box-shadow: 0 12px 24px -20px rgba(26, 23, 80, 0.65);
}

.iots-about-hero-v1__principles i {
    animation: iots-about-principle-dot-v2 2.1s ease-in-out infinite;
}

.iots-about-hero-v1__principles span:nth-child(2) i {
    animation-delay: .7s;
}

.iots-about-hero-v1__principles span:nth-child(3) i {
    animation-delay: 1.4s;
}

@keyframes iots-about-status-pulse-v2 {
    0%, 55%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 4px rgba(28, 176, 220, 0.12);
    }
    20% {
        transform: scale(1.22);
        box-shadow:
            0 0 0 6px rgba(28, 176, 220, 0.15),
            0 0 19px rgba(28, 176, 220, 0.48);
    }
}

@keyframes iots-about-stage-sequence-v2 {
    0%, 22%, 100% {
        border-color: var(--iots-ah-line);
        background-color: rgba(255, 255, 255, 0.74);
        box-shadow: none;
    }
    7%, 15% {
        border-color: rgba(28, 176, 220, 0.44);
        background-color: #ffffff;
        box-shadow: 0 18px 34px -30px rgba(28, 176, 220, 0.72);
    }
}

@keyframes iots-about-connector-pulse-v2 {
    0%, 100% { top: -2px; opacity: 0; transform: translateX(-50%) scale(.9); }
    14% { opacity: 1; transform: translateX(-50%) scale(1.18); }
    76% { opacity: 1; }
    92% { top: calc(100% - 4px); opacity: 0; transform: translateX(-50%) scale(1); }
}

@keyframes iots-about-principle-pill-v2 {
    0%, 28%, 100% {
        border-color: var(--iots-ah-line);
        box-shadow: none;
    }
    8%, 18% {
        border-color: rgba(72, 131, 196, 0.38);
        box-shadow: 0 9px 20px -18px rgba(26, 23, 80, 0.58);
    }
}

@keyframes iots-about-principle-dot-v2 {
    0%, 100% { transform: scale(1); opacity: .8; }
    45% { transform: scale(1.42); opacity: 1; box-shadow: 0 0 9px currentColor; }
}

/* ----------------------------------------------------------
   5. „JAK PRACUJEMY” — ETAPY + ZASADY „PROSTE WDROŻENIE...”
   ---------------------------------------------------------- */
.iots-about-work-v1__stage {
    transition:
        opacity 520ms ease,
        transform 520ms cubic-bezier(.2, .7, .2, 1),
        border-color 220ms ease,
        box-shadow 220ms ease;
}

.iots-about-work-v1.is-motion-ready .iots-about-work-v1__stage {
    opacity: 0;
    transform: translateY(20px);
}

.iots-about-work-v1.is-motion-ready .iots-about-work-v1__stage.is-revealed {
    opacity: 1;
    transform: translateY(0);
}

.iots-about-work-v1__rail::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        var(--iots-aw-cyan),
        var(--iots-aw-blue),
        var(--iots-aw-indigo)
    );
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 1.1s cubic-bezier(.2, .7, .2, 1);
}

.iots-about-work-v1.is-in-view .iots-about-work-v1__rail::after {
    transform: scaleX(1);
}

.iots-about-work-v1__stage:hover {
    border-color: rgba(72, 131, 196, 0.44);
    box-shadow: 0 22px 42px -32px rgba(26, 23, 80, 0.58);
}

.iots-about-work-v1__icon {
    transition:
        transform 220ms ease,
        border-color 220ms ease,
        box-shadow 220ms ease;
}

.iots-about-work-v1__stage:hover .iots-about-work-v1__icon {
    transform: translateY(-2px) scale(1.04);
    border-color: rgba(28, 176, 220, 0.46);
    box-shadow: 0 0 0 5px rgba(28, 176, 220, 0.07);
}

.iots-about-work-v1__principle {
    position: relative;
    overflow: hidden;
    transition:
        opacity 520ms ease,
        transform 520ms cubic-bezier(.2, .7, .2, 1),
        background-color 220ms ease,
        border-color 220ms ease,
        box-shadow 220ms ease;
}

.iots-about-work-v1__principles-section.is-principles-motion-ready
.iots-about-work-v1__principle {
    opacity: 0;
    transform: translateY(18px);
}

.iots-about-work-v1__principles-section.is-principles-motion-ready
.iots-about-work-v1__principle.is-principle-revealed {
    opacity: 1;
    transform: translateY(0);
}

.iots-about-work-v1__principle::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 2px;
    background: linear-gradient(
        90deg,
        var(--iots-aw-cyan),
        var(--iots-aw-blue),
        var(--iots-aw-indigo)
    );
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 300ms ease;
}

.iots-about-work-v1__principle:hover {
    transform: translateY(-4px);
    background: #ffffff;
    border-color: rgba(72, 131, 196, 0.40);
    box-shadow: 0 20px 38px -32px rgba(26, 23, 80, 0.62);
}

.iots-about-work-v1__principle:hover::after {
    transform: scaleX(1);
}

.iots-about-work-v1__principle > span {
    transition:
        transform 220ms ease,
        border-color 220ms ease,
        box-shadow 220ms ease;
}

.iots-about-work-v1__principle:hover > span {
    transform: scale(1.07) rotate(-2deg);
    box-shadow: 0 0 0 5px rgba(28, 176, 220, 0.07);
}

/* ----------------------------------------------------------
   6. NOWA SEKCJA KONTAKTOWA — SHORTCODE [iots_contact_section]
   ---------------------------------------------------------- */
.iots-contact-section-v2 {
    position: relative;
    isolation: isolate;
    width: 100%;
    margin: 0;
    overflow: hidden;
    color: var(--iots-ui-text);
    background: var(--iots-ui-bg);
    border-top: 1px solid var(--iots-ui-line);
    border-bottom: 1px solid var(--iots-ui-line);
    font-family: var(--iots-ui-font);
    scroll-margin-top: 100px;
}

.iots-contact-section-v2--full {
    width: 100vw;
    max-width: 100vw;
    margin-inline: calc(50% - 50vw);
}

.iots-contact-section-v2,
.iots-contact-section-v2 * {
    box-sizing: border-box;
}

.iots-contact-section-v2__background {
    position: absolute;
    z-index: -1;
    inset: 0;
    background:
        radial-gradient(
            ellipse 760px 440px at 90% 0%,
            rgba(28, 176, 220, 0.10),
            transparent 64%
        ),
        radial-gradient(
            ellipse 620px 420px at -5% 100%,
            rgba(45, 42, 125, 0.07),
            transparent 64%
        );
    pointer-events: none;
}

.iots-contact-section-v2__inner {
    width: min(calc(100% - 40px), 1240px);
    margin: 0 auto;
    padding: clamp(74px, 8vw, 108px) 0;
}

.iots-contact-section-v2__grid {
    display: grid;
    grid-template-columns: minmax(300px, .82fr) minmax(0, 1.18fr);
    align-items: stretch;
    gap: clamp(22px, 3.5vw, 42px);
}

.iots-contact-section-v2__info {
    position: relative;
    overflow: hidden;
    padding: clamp(30px, 4vw, 48px);
    color: #ffffff;
    background:
        radial-gradient(
            ellipse 520px 300px at 100% 0%,
            rgba(28, 176, 220, 0.22),
            transparent 66%
        ),
        linear-gradient(145deg, var(--iots-ui-navy), var(--iots-ui-indigo));
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 22px;
    box-shadow: 0 32px 70px -48px rgba(26, 23, 80, 0.90);
}

.iots-contact-section-v2__info::after {
    content: "";
    position: absolute;
    right: -72px;
    bottom: -72px;
    width: 200px;
    height: 200px;
    border: 1px dashed rgba(255, 255, 255, 0.16);
    border-radius: 50%;
    box-shadow:
        0 0 0 32px rgba(255, 255, 255, 0.025),
        0 0 0 64px rgba(255, 255, 255, 0.018);
    pointer-events: none;
}

.iots-contact-section-v2__dotmark {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 24px;
}

.iots-contact-section-v2__dotmark i {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.iots-contact-section-v2__dotmark i:nth-child(1) { background: var(--iots-ui-cyan); }
.iots-contact-section-v2__dotmark i:nth-child(2) { background: #72d8f2; }
.iots-contact-section-v2__dotmark i:nth-child(3) { background: #91aee0; }
.iots-contact-section-v2__dotmark i:nth-child(4) { background: #ffffff; }

.iots-contact-section-v2__eyebrow {
    display: block;
    margin-bottom: 14px;
    color: #8de7fa;
    font-family: var(--iots-ui-mono);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.iots-contact-section-v2__info h2 {
    max-width: 540px;
    margin: 0 !important;
    color: #ffffff !important;
    font-family: var(--iots-ui-font) !important;
    font-size: clamp(34px, 4vw, 50px) !important;
    font-weight: 700 !important;
    line-height: 1.08 !important;
    letter-spacing: -.028em !important;
}

.iots-contact-section-v2__lead {
    max-width: 590px;
    margin: 22px 0 30px !important;
    color: rgba(255, 255, 255, 0.74) !important;
    font-size: 16px !important;
    line-height: 1.72 !important;
}

.iots-contact-section-v2__contacts {
    display: grid;
    gap: 10px;
}

.iots-contact-section-v2__contact {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr) auto;
    gap: 13px;
    align-items: center;
    min-height: 74px;
    padding: 12px 14px;
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.065);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 13px;
    text-decoration: none !important;
    transition:
        transform 220ms ease,
        background-color 220ms ease,
        border-color 220ms ease,
        box-shadow 220ms ease;
}

.iots-contact-section-v2__contact:hover {
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.105);
    border-color: rgba(141, 231, 250, 0.42);
    transform: translateX(4px);
    box-shadow: 0 16px 30px -26px rgba(0, 0, 0, 0.72);
}

.iots-contact-section-v2__contact-icon {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    color: #8de7fa;
    background: rgba(28, 176, 220, 0.09);
    border: 1px solid rgba(141, 231, 250, 0.20);
    border-radius: 11px;
    transition: transform 220ms ease, box-shadow 220ms ease;
}

.iots-contact-section-v2__contact:hover .iots-contact-section-v2__contact-icon {
    transform: scale(1.06) rotate(-2deg);
    box-shadow: 0 0 0 5px rgba(28, 176, 220, 0.08);
}

.iots-contact-section-v2__contact-icon svg {
    width: 27px;
    height: 27px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.iots-contact-section-v2__contact small,
.iots-contact-section-v2__contact strong {
    display: block;
}

.iots-contact-section-v2__contact small {
    margin-bottom: 3px;
    color: rgba(255, 255, 255, 0.55);
    font-family: var(--iots-ui-mono);
    font-size: 9.5px;
    font-weight: 500;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.iots-contact-section-v2__contact strong {
    color: #ffffff;
    font-size: 13.5px;
    font-weight: 600;
    line-height: 1.45;
}

.iots-contact-section-v2__contact > i {
    color: #8de7fa;
    font-family: var(--iots-ui-mono);
    font-size: 15px;
    font-style: normal;
}

.iots-contact-section-v2__availability {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-top: 22px;
    color: rgba(255, 255, 255, 0.72);
    font-family: var(--iots-ui-mono);
    font-size: 10.5px;
    font-weight: 500;
    letter-spacing: .04em;
}

.iots-contact-section-v2__availability span {
    width: 8px;
    height: 8px;
    background: var(--iots-ui-cyan);
    border-radius: 50%;
    animation: iots-contact-section-availability 2.3s ease-out infinite;
}

.iots-contact-section-v2__note {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 22px minmax(0, 1fr);
    gap: 10px;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.iots-contact-section-v2__note > span {
    color: #8de7fa;
    font-family: var(--iots-ui-mono);
    font-size: 18px;
    line-height: 1.3;
}

.iots-contact-section-v2__note p {
    margin: 0 !important;
    color: rgba(255, 255, 255, 0.63) !important;
    font-size: 12.5px !important;
    line-height: 1.6 !important;
}

.iots-contact-section-v2__form-card {
    padding: clamp(28px, 4vw, 46px);
    background:
        radial-gradient(
            ellipse 440px 230px at 100% 0%,
            rgba(28, 176, 220, 0.075),
            transparent 65%
        ),
        #ffffff;
    border: 1px solid var(--iots-ui-line-strong);
    border-radius: 22px;
    box-shadow: var(--iots-ui-shadow);
}

.iots-contact-section-v2__form-head {
    max-width: 690px;
    margin-bottom: 28px;
}

.iots-contact-section-v2__form-head > span {
    display: block;
    margin-bottom: 10px;
    color: #1d6e92;
    font-family: var(--iots-ui-mono);
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: .11em;
    text-transform: uppercase;
}

.iots-contact-section-v2__form-head h3 {
    margin: 0 !important;
    color: var(--iots-ui-text) !important;
    font-family: var(--iots-ui-font) !important;
    font-size: clamp(29px, 3vw, 39px) !important;
    font-weight: 700 !important;
    line-height: 1.12 !important;
    letter-spacing: -.024em !important;
}

.iots-contact-section-v2__form-head p {
    max-width: 650px;
    margin: 13px 0 0 !important;
    color: var(--iots-ui-body) !important;
    font-size: 14.5px !important;
    line-height: 1.65 !important;
}

.iots-contact-section-v2__admin-note {
    padding: 16px;
    color: #8a2630;
    background: #fff4f4;
    border: 1px solid #f1c8cb;
    border-radius: 10px;
}

/* Fluent Forms wewnątrz nowej sekcji. */
body.page-id-334 .iots-contact-section-v2 #fluentform_3,
.iots-contact-section-v2 .frm-fluent-form {
    padding: 0 !important;
    color: var(--iots-ui-text);
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}

.iots-contact-section-v2 .ff-el-group {
    margin-bottom: 17px;
}

.iots-contact-section-v2 .ff-el-input--label label {
    margin-bottom: 7px;
    color: var(--iots-ui-text);
    font-family: var(--iots-ui-font);
    font-size: 13px;
    font-weight: 600;
    line-height: 1.35;
}

.iots-contact-section-v2 .ff-el-form-control {
    min-height: 52px;
    padding: 12px 14px;
    color: var(--iots-ui-text);
    background: rgba(247, 248, 252, 0.78);
    border: 1px solid rgba(26, 23, 80, 0.16);
    border-radius: 10px;
    box-shadow: none;
    font-family: var(--iots-ui-font);
    font-size: 15px;
    line-height: 1.4;
    transition:
        background-color 180ms ease,
        border-color 180ms ease,
        box-shadow 180ms ease;
}

.iots-contact-section-v2 textarea.ff-el-form-control {
    min-height: 150px;
    resize: vertical;
}

.iots-contact-section-v2 .ff-el-form-control:hover {
    background: #ffffff;
    border-color: rgba(72, 131, 196, 0.46);
}

.iots-contact-section-v2 .ff-el-form-control:focus {
    outline: none;
    background: #ffffff;
    border-color: var(--iots-ui-blue);
    box-shadow: 0 0 0 4px rgba(72, 131, 196, 0.14);
}

.iots-contact-section-v2 .ff-el-form-control::placeholder {
    color: #8a8ca3;
    opacity: 1;
}

/* Disclaimer ma takie samo tło jak reszta formularza, bez osobnego boxa. */
.iots-contact-section-v2 .ff-el-tc {
    padding: 2px 0 !important;
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
}

.iots-contact-section-v2 .ff-el-form-check-label {
    display: grid;
    grid-template-columns: 20px minmax(0, 1fr);
    gap: 10px;
    align-items: start;
    color: var(--iots-ui-body);
    font-size: 12px;
    line-height: 1.55;
}

.iots-contact-section-v2 input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin: 1px 0 0;
    accent-color: var(--iots-ui-blue);
}

.iots-contact-section-v2 .ff-btn-submit {
    min-height: 50px;
    padding: 12px 25px !important;
    border-radius: 9px !important;
    font-family: var(--iots-ui-font);
    font-size: 14px;
    font-weight: 600;
}

.iots-contact-section-v2 .ff-el-is-error .ff-el-form-control {
    border-color: #c83f49;
    box-shadow: 0 0 0 3px rgba(200, 63, 73, 0.10);
}

.iots-contact-section-v2 .error,
.iots-contact-section-v2 .text-danger {
    margin-top: 6px;
    color: #a92f39;
    font-size: 12px;
}

@keyframes iots-contact-section-availability {
    0%, 48%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 4px rgba(28, 176, 220, 0.10);
    }
    18% {
        transform: scale(1.24);
        box-shadow:
            0 0 0 6px rgba(28, 176, 220, 0.12),
            0 0 18px rgba(28, 176, 220, 0.55);
    }
}

/* ----------------------------------------------------------
   7. MAPA — KARTA LOKALIZACJI
   ---------------------------------------------------------- */
body.page-id-334 .elementor-element-c684c55 {
    position: relative;
    isolation: isolate;
    width: min(calc(100% - 40px), 1240px) !important;
    max-width: 1240px !important;
    margin: clamp(50px, 7vw, 86px) auto clamp(64px, 8vw, 104px) !important;
    padding: 62px 16px 16px !important;
    overflow: hidden;
    background:
        radial-gradient(
            ellipse 520px 260px at 0% 0%,
            rgba(28, 176, 220, 0.11),
            transparent 64%
        ),
        #ffffff;
    border: 1px solid var(--iots-ui-line-strong);
    border-radius: 22px;
    box-shadow: var(--iots-ui-shadow);
}

body.page-id-334 .elementor-element-c684c55::before {
    content: "LOKALIZACJA / DOJAZD";
    position: absolute;
    z-index: 2;
    top: 22px;
    left: 24px;
    color: #1d6e92;
    font-family: var(--iots-ui-mono);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
}

body.page-id-334 .elementor-element-c684c55::after {
    content: "";
    position: absolute;
    z-index: 2;
    top: 20px;
    right: 24px;
    width: 12px;
    height: 12px;
    border: 3px solid var(--iots-ui-cyan);
    border-radius: 50%;
    box-shadow:
        0 0 0 5px rgba(28, 176, 220, 0.10),
        0 0 18px rgba(28, 176, 220, 0.24);
}

body.page-id-334 .elementor-element-55b9f60,
body.page-id-334 .elementor-element-55b9f60 .elementor-custom-embed {
    width: 100% !important;
}

body.page-id-334 .elementor-element-55b9f60 iframe {
    display: block;
    width: 100% !important;
    height: clamp(340px, 42vw, 500px) !important;
    border: 0 !important;
    border-radius: 15px;
    filter: saturate(0.82) contrast(0.96);
}

/* ----------------------------------------------------------
   8. TESTOWE HERO POJEDYNCZEGO ARTYKUŁU

   Test zmienia WYŁĄCZNIE hero. Pozostałe sekcje zachowują obecny wygląd.
   Aktywacja:
   /adres-artykulu/?iots_article_layout_test=1
   ---------------------------------------------------------- */
body.iots-article-layout-test-v2.single-iots_article .iots-article-hero-v2 {
    position: relative;
    isolation: isolate;
    width: 100vw;
    max-width: 100vw;
    margin: 0 0 clamp(48px, 6vw, 74px);
    margin-inline: calc(50% - 50vw);
    padding:
        clamp(72px, 8vw, 104px)
        max(20px, calc((100vw - 1240px) / 2 + 40px));
    overflow: hidden;
    grid-template-columns: minmax(0, 1.06fr) minmax(340px, .94fr);
    gap: clamp(38px, 5vw, 72px);
    min-height: clamp(510px, 62vh, 690px);
    background:
        radial-gradient(
            ellipse 820px 500px at 90% -6%,
            rgba(28, 176, 220, 0.12),
            transparent 62%
        ),
        radial-gradient(
            ellipse 660px 430px at -6% 88%,
            rgba(45, 42, 125, 0.08),
            transparent 64%
        ),
        #f7f8fc;
    border: 0;
    border-top: 1px solid rgba(26, 23, 80, 0.10);
    border-bottom: 1px solid rgba(26, 23, 80, 0.12);
    border-radius: 0;
    box-shadow: none;
}

body.iots-article-layout-test-v2.single-iots_article
.iots-article-hero-v2::after {
    content: "";
    position: absolute;
    z-index: -1;
    right: clamp(20px, 5vw, 86px);
    bottom: -110px;
    width: 300px;
    height: 300px;
    border: 1px dashed rgba(45, 42, 125, 0.10);
    border-radius: 50%;
    box-shadow:
        0 0 0 48px rgba(45, 42, 125, 0.018),
        0 0 0 96px rgba(28, 176, 220, 0.014);
}

body.iots-article-layout-test-v2.single-iots_article
.iots-article-hero-v2__text {
    align-self: center;
    max-width: 720px;
}

body.iots-article-layout-test-v2.single-iots_article
.iots-article-hero-v2 .iots-tag {
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.72);
    border-color: rgba(72, 131, 196, 0.30);
    box-shadow: 0 7px 20px -18px rgba(26, 23, 80, 0.60);
}

body.iots-article-layout-test-v2.single-iots_article
.iots-article-hero-v2 h1 {
    max-width: 760px;
    color: var(--iots-ui-text);
    font-size: clamp(43px, 5.3vw, 68px);
    line-height: 1.04;
    letter-spacing: -.035em;
}

body.iots-article-layout-test-v2.single-iots_article
.iots-article-hero-v2__meta {
    margin-top: 22px;
    color: #1d6e92;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .11em;
}

body.iots-article-layout-test-v2.single-iots_article
.iots-article-hero-v2__excerpt {
    max-width: 650px;
    margin-top: 24px;
    color: var(--iots-ui-body);
    font-size: 17px;
    line-height: 1.72;
}

body.iots-article-layout-test-v2.single-iots_article
.iots-article-hero-v2__media {
    align-self: center;
    min-height: clamp(340px, 38vw, 460px);
    padding: clamp(16px, 2vw, 24px);
    background: rgba(255, 255, 255, 0.68);
    border: 1px solid rgba(26, 23, 80, 0.12);
    border-radius: 20px;
    box-shadow: 0 28px 64px -46px rgba(26, 23, 80, 0.55);
    animation: iots-article-hero-float-v2 8s ease-in-out infinite;
}

body.iots-article-layout-test-v2.single-iots_article
.iots-article-hero-v2__media img {
    min-height: clamp(308px, 34vw, 412px);
    max-height: 430px;
    border-radius: 14px;
}

body.iots-article-layout-test-v2.single-iots_article
.iots-article-hero-v2--no-media {
    grid-template-columns: minmax(0, 850px);
    justify-content: center;
    text-align: center;
}

body.iots-article-layout-test-v2.single-iots_article
.iots-article-hero-v2--no-media .iots-article-hero-v2__text {
    max-width: 850px;
}

@keyframes iots-article-hero-float-v2 {
    0%, 100% {
        transform: translateY(0);
        box-shadow: 0 28px 64px -46px rgba(26, 23, 80, 0.55);
    }
    50% {
        transform: translateY(-5px);
        box-shadow: 0 34px 68px -46px rgba(26, 23, 80, 0.62);
    }
}

/* ----------------------------------------------------------
   9. RESPONSYWNOŚĆ
   ---------------------------------------------------------- */
@media (max-width: 1000px) {
    .iots-contact-section-v2__grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .iots-contact-section-v2__info,
    .iots-contact-section-v2__form-card {
        border-radius: 18px;
    }

    body.iots-article-layout-test-v2.single-iots_article
    .iots-article-hero-v2 {
        grid-template-columns: minmax(0, 1fr);
        min-height: 0;
        padding-top: 72px;
        padding-bottom: 72px;
    }

    body.iots-article-layout-test-v2.single-iots_article
    .iots-article-hero-v2__text {
        max-width: 780px;
    }

    body.iots-article-layout-test-v2.single-iots_article
    .iots-article-hero-v2__media {
        width: 100%;
        max-width: 760px;
        min-height: 320px;
    }
}

@media (max-width: 767px) {
    .iots-contact-hero-v1__card:hover,
    .iots-about-hero-v1__stage:hover {
        transform: translateY(-2px);
    }

    .iots-about-hero-v1__stage:nth-child(3),
    .iots-about-hero-v1__stage:nth-child(5),
    .iots-about-hero-v1__stage:nth-child(7) {
        margin-left: 0;
    }

    .iots-contact-section-v2 {
        scroll-margin-top: 74px;
    }

    .iots-contact-section-v2__inner {
        width: min(calc(100% - 28px), 1240px);
        padding: 62px 0;
    }

    .iots-contact-section-v2__info,
    .iots-contact-section-v2__form-card {
        padding: 25px 20px;
        border-radius: 16px;
    }

    .iots-contact-section-v2__info h2 {
        font-size: clamp(34px, 10vw, 43px) !important;
    }

    .iots-contact-section-v2__contact {
        grid-template-columns: 42px minmax(0, 1fr) auto;
        gap: 11px;
        padding: 11px;
    }

    .iots-contact-section-v2__contact-icon {
        width: 42px;
        height: 42px;
    }

    .iots-contact-section-v2__contact strong {
        font-size: 12.5px;
    }

    .iots-contact-section-v2 .ff-t-container {
        display: block;
    }

    .iots-contact-section-v2 .ff-t-cell {
        width: 100%;
        padding: 0;
    }

    body.page-id-334 .elementor-element-c684c55 {
        width: min(calc(100% - 28px), 1240px) !important;
        padding: 56px 10px 10px !important;
        border-radius: 17px;
    }

    body.page-id-334 .elementor-element-c684c55::before {
        top: 20px;
        left: 18px;
        font-size: 9.5px;
    }

    body.page-id-334 .elementor-element-c684c55::after {
        top: 18px;
        right: 18px;
    }

    body.page-id-334 .elementor-element-55b9f60 iframe {
        height: 330px !important;
        border-radius: 12px;
    }

    body.iots-article-layout-test-v2.single-iots_article
    .iots-article-hero-v2 {
        padding:
            60px
            20px;
        gap: 30px;
    }

    body.iots-article-layout-test-v2.single-iots_article
    .iots-article-hero-v2 h1 {
        font-size: clamp(39px, 11.5vw, 52px);
    }

    body.iots-article-layout-test-v2.single-iots_article
    .iots-article-hero-v2__media,
    body.iots-article-layout-test-v2.single-iots_article
    .iots-article-hero-v2__media img {
        min-height: 240px;
    }
}

/* ----------------------------------------------------------
   10. REDUKCJA RUCHU
   ---------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
    .iots-contact-hero-v1__panel-status i,
    .iots-contact-hero-v1__process-line::after,
    .iots-contact-hero-v1__step i,
    .iots-contact-hero-v1__step span,
    .iots-about-hero-v1__panel-status i,
    .iots-about-hero-v1__stage,
    .iots-about-hero-v1__connector i::after,
    .iots-about-hero-v1__principles span,
    .iots-about-hero-v1__principles i,
    .iots-contact-section-v2__availability span,
    body.iots-article-layout-test-v2.single-iots_article .iots-article-hero-v2__media {
        animation: none !important;
    }

    .iots-about-work-v1.is-motion-ready .iots-about-work-v1__stage,
    .iots-about-work-v1__principles-section.is-principles-motion-ready
    .iots-about-work-v1__principle {
        opacity: 1;
        transform: none;
    }

    .iots-about-work-v1__rail::after {
        transform: scaleX(1);
        transition: none;
    }
}
