/**
 * RPNL CSS MODULE: BUSINESS
 *
 * Katalog firm, profil firmy i formularze katalogu.
 *
 * Źródło: main.css z motywu RPNL v1.5.5.
 * Moduł nie jest jeszcze ładowany przez functions.php.
 */

/* =========================================================
   KATALOG POLSKICH FIRM
   archive-firma.php
   ========================================================= */

.rpnl-company-archive {
    padding-top: 32px;
    background: #f5f8fc;
    color: #17283a;
}

.rpnl-company-archive *,
.rpnl-company-archive *::before,
.rpnl-company-archive *::after {
    box-sizing: border-box;
}

/* Szerokość i boczne marginesy katalogu */

.rpnl-company-archive .rpnl-container {
    width: 100%;
    max-width: 1480px;
    margin-inline: auto;
    padding-inline: 24px;
}

/* Hero katalogu */

.rpnl-company-hero {
    width: calc(100% - 48px);
    max-width: 1980px;
    margin-inline: auto;
    padding: 54px 0 48px;
    overflow: hidden;
    border-radius: 16px;
    color: #ffffff;
    background:
        radial-gradient(
            circle at 85% 20%,
            rgba(22, 119, 255, 0.28),
            transparent 34%
        ),
        linear-gradient(135deg, #071f35 0%, #0b2d4d 58%, #104a7a 100%);
}

.rpnl-company-hero .rpnl-container {
    position: relative;
}

.rpnl-company-eyebrow {
    margin: 0 0 10px;
    color: #8fc4ff;
    font-size: 0.78rem;
    font-weight: 800;
    line-height: 1.4;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.rpnl-company-hero h1 {
    max-width: 760px;
    margin: 0;
    color: #ffffff;
    font-size: clamp(2rem, 4vw, 3.35rem);
    font-weight: 850;
    line-height: 1.08;
    letter-spacing: -0.035em;
}

.rpnl-company-intro {
    max-width: 680px;
    margin: 18px 0 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.08rem;
    line-height: 1.7;
}

.rpnl-company-add-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    margin-top: 28px;
    padding: 12px 22px;
    border: 1px solid #e30613;
    border-radius: 8px;
    color: #ffffff;
    background: #e30613;
    font-size: 0.94rem;
    font-weight: 750;
    line-height: 1.2;
    text-decoration: none;
    box-shadow: 0 10px 26px rgba(227, 6, 19, 0.24);
    transition:
        transform 0.2s ease,
        background-color 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.rpnl-company-add-button:hover {
    color: #ffffff;
    background: #c9000c;
    border-color: #c9000c;
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(227, 6, 19, 0.3);
}

/* Główna część katalogu */

.rpnl-company-directory {
    padding: 38px 0 64px;
}

/* Wyszukiwarka i filtry */

.rpnl-company-filters {
    display: grid;
    grid-template-columns: minmax(220px, 1.45fr) minmax(180px, 1fr) minmax(180px, 1fr) auto;
    gap: 16px;
    align-items: end;
    padding: 22px;
    border: 1px solid #dce5ef;
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 8px 28px rgba(11, 45, 77, 0.07);
}

.rpnl-company-filter-field {
    min-width: 0;
}

.rpnl-company-filter-field label {
    display: block;
    margin: 0 0 7px;
    color: #24384d;
    font-size: 0.78rem;
    font-weight: 750;
    line-height: 1.3;
}

.rpnl-company-filter-field input,
.rpnl-company-filter-field select {
    width: 100%;
    height: 46px;
    margin: 0;
    padding: 0 13px;
    border: 1px solid #cbd7e3;
    border-radius: 7px;
    outline: none;
    color: #17283a;
    background-color: #ffffff;
    font: inherit;
    font-size: 0.92rem;
    box-shadow: none;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.rpnl-company-filter-field input::placeholder {
    color: #8291a1;
}

.rpnl-company-filter-field input:focus,
.rpnl-company-filter-field select:focus {
    border-color: #1677ff;
    box-shadow: 0 0 0 3px rgba(22, 119, 255, 0.12);
}

.rpnl-company-filter-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 7px;
}

.rpnl-company-filter-actions button {
    min-width: 132px;
    height: 46px;
    margin: 0;
    padding: 0 19px;
    border: 1px solid #0b2d4d;
    border-radius: 7px;
    cursor: pointer;
    color: #ffffff;
    background: #0b2d4d;
    font: inherit;
    font-size: 0.9rem;
    font-weight: 750;
    transition:
        background-color 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}

.rpnl-company-filter-actions button:hover {
    background: #1677ff;
    border-color: #1677ff;
    transform: translateY(-1px);
}

.rpnl-company-filter-actions a {
    color: #52677c;
    font-size: 0.75rem;
    font-weight: 650;
    text-decoration: none;
}

.rpnl-company-filter-actions a:hover {
    color: #e30613;
    text-decoration: underline;
}

/* Nagłówek wyników */

.rpnl-company-results-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin: 38px 0 19px;
    padding-bottom: 13px;
    border-bottom: 1px solid #dce5ef;
}

.rpnl-company-results-header h2 {
    margin: 0;
    color: #0b2d4d;
    font-size: clamp(1.35rem, 2vw, 1.75rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.rpnl-company-results-header p {
    margin: 0;
    color: #64778a;
    font-size: 0.84rem;
    line-height: 1.4;
}

/* Siatka firm */

.rpnl-company-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

/* Kafelek firmy */

.rpnl-company-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    overflow: hidden;
    border: 1px solid #dce5ef;
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 5px 18px rgba(11, 45, 77, 0.055);
    transition:
        transform 0.22s ease,
        border-color 0.22s ease,
        box-shadow 0.22s ease;
}

.rpnl-company-card:hover {
    border-color: #bdcddd;
    transform: translateY(-4px);
    box-shadow: 0 14px 34px rgba(11, 45, 77, 0.12);
}

.rpnl-company-card--wyrozniona {
    border-color: #f2c14e;
    box-shadow: 0 7px 22px rgba(190, 139, 12, 0.12);
}

.rpnl-company-card--promowana {
    border-color: #1677ff;
    box-shadow: 0 7px 24px rgba(22, 119, 255, 0.14);
}

.rpnl-company-card-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 184px;
    overflow: hidden;
    color: #ffffff;
    background: #eaf0f6;
    text-decoration: none;
}

.rpnl-company-card-image img {
    display: block;
    width: 100%;
    height: 100%;
    margin: 0;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.rpnl-company-card:hover .rpnl-company-card-image img {
    transform: scale(1.035);
}

.rpnl-company-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 74px;
    height: 74px;
    border-radius: 50%;
    color: #ffffff;
    background: #0b2d4d;
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
}

.rpnl-company-card-content {
    display: flex;
    flex: 1;
    flex-direction: column;
    align-items: flex-start;
    padding: 19px 20px 21px;
}

.rpnl-company-card-labels {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    min-height: 24px;
    margin-bottom: 11px;
}

.rpnl-company-badge {
    display: inline-flex;
    align-items: center;
    min-height: 23px;
    padding: 4px 9px;
    border-radius: 999px;
    font-size: 0.67rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.025em;
}

.rpnl-company-badge--verified {
    color: #075b37;
    background: #dcf7ea;
}

.rpnl-company-badge--verified::before {
    content: "✓";
    margin-right: 4px;
    font-weight: 900;
}

.rpnl-company-badge--featured {
    color: #735100;
    background: #fff0bd;
}

.rpnl-company-badge--promoted {
    color: #0754b8;
    background: #dcecff;
}

.rpnl-company-card-title {
    margin: 0;
    font-size: 1.22rem;
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: -0.015em;
}

.rpnl-company-card-title a {
    color: #0b2d4d;
    text-decoration: none;
}

.rpnl-company-card-title a:hover {
    color: #1677ff;
}

.rpnl-company-card-category {
    margin: 7px 0 0;
    color: #1677ff;
    font-size: 0.76rem;
    font-weight: 750;
    line-height: 1.4;
}

.rpnl-company-card-description {
    margin: 13px 0 0;
    color: #52677c;
    font-size: 0.9rem;
    line-height: 1.6;
}

.rpnl-company-card-location {
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 15px 0 0;
    color: #64778a;
    font-size: 0.8rem;
    font-weight: 650;
    line-height: 1.4;
}

.rpnl-company-card-location span {
    font-size: 0.86rem;
}

.rpnl-company-card-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: auto;
    padding-top: 18px;
    color: #0b2d4d;
    font-size: 0.84rem;
    font-weight: 800;
    text-decoration: none;
}

.rpnl-company-card-link span {
    transition: transform 0.2s ease;
}

.rpnl-company-card-link:hover {
    color: #e30613;
}

.rpnl-company-card-link:hover span {
    transform: translateX(4px);
}

/* Brak wyników */

.rpnl-company-empty {
    padding: 52px 24px;
    border: 1px solid #dce5ef;
    border-radius: 12px;
    text-align: center;
    background: #ffffff;
}

.rpnl-company-empty h2 {
    margin: 0;
    color: #0b2d4d;
    font-size: 1.45rem;
}

.rpnl-company-empty p {
    margin: 11px 0 20px;
    color: #64778a;
}

.rpnl-company-empty a {
    display: inline-flex;
    padding: 11px 18px;
    border-radius: 7px;
    color: #ffffff;
    background: #0b2d4d;
    font-size: 0.86rem;
    font-weight: 750;
    text-decoration: none;
}

.rpnl-company-empty a:hover {
    color: #ffffff;
    background: #1677ff;
}

/* Paginacja */

.rpnl-company-pagination {
    margin-top: 38px;
}

.rpnl-company-pagination .page-numbers {
    margin: 0;
    padding: 0;
    list-style: none;
}

.rpnl-company-pagination ul.page-numbers {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 7px;
}

.rpnl-company-pagination li {
    margin: 0;
}

.rpnl-company-pagination a,
.rpnl-company-pagination span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 39px;
    height: 39px;
    padding: 0 11px;
    border: 1px solid #d2deea;
    border-radius: 7px;
    color: #0b2d4d;
    background: #ffffff;
    font-size: 0.82rem;
    font-weight: 750;
    text-decoration: none;
}

.rpnl-company-pagination a:hover,
.rpnl-company-pagination .current {
    color: #ffffff;
    background: #0b2d4d;
    border-color: #0b2d4d;
}

/* Dolne CTA */

.rpnl-company-owner-cta {
    padding: 0 0 68px;
    background: #f5f8fc;
}

.rpnl-company-owner-cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding: 31px 35px;
    border-radius: 12px;
    color: #ffffff;
    background:
        linear-gradient(
            115deg,
            rgba(22, 119, 255, 0.12),
            transparent 55%
        ),
        #0b2d4d;
    box-shadow: 0 12px 30px rgba(11, 45, 77, 0.14);
}

.rpnl-company-owner-cta h2 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(1.35rem, 2.5vw, 1.85rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.rpnl-company-owner-cta p {
    max-width: 660px;
    margin: 9px 0 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.94rem;
    line-height: 1.55;
}

.rpnl-company-owner-cta a {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 11px 19px;
    border: 1px solid #e30613;
    border-radius: 7px;
    color: #ffffff;
    background: #e30613;
    font-size: 0.86rem;
    font-weight: 800;
    line-height: 1.2;
    text-decoration: none;
    transition:
        background-color 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}

.rpnl-company-owner-cta a:hover {
    color: #ffffff;
    background: #c9000c;
    border-color: #c9000c;
    transform: translateY(-2px);
}

/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1024px) {
    .rpnl-company-filters {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .rpnl-company-filter-actions {
        flex-direction: row;
        justify-content: flex-start;
    }

    .rpnl-company-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 700px) {
    .rpnl-company-hero {
        width: calc(100% - 24px);
        padding: 38px 0 36px;
        border-radius: 12px;
    }

    .rpnl-company-archive .rpnl-container {
        padding-inline: 16px;
    }

    .rpnl-company-hero h1 {
        font-size: 2rem;
    }

    .rpnl-company-intro {
        margin-top: 14px;
        font-size: 0.96rem;
        line-height: 1.6;
    }

    .rpnl-company-add-button {
        width: 100%;
        margin-top: 22px;
    }

    .rpnl-company-directory {
        padding: 24px 0 46px;
    }

    .rpnl-company-filters {
        grid-template-columns: minmax(0, 1fr);
        gap: 13px;
        padding: 17px;
        border-radius: 10px;
    }

    .rpnl-company-filter-actions {
        flex-direction: column;
        align-items: stretch;
        margin-top: 3px;
    }

    .rpnl-company-filter-actions button {
        width: 100%;
    }

    .rpnl-company-filter-actions a {
        padding: 4px;
        text-align: center;
    }

    .rpnl-company-results-header {
        align-items: flex-start;
        margin-top: 29px;
    }

    .rpnl-company-results-header h2 {
        font-size: 1.35rem;
    }

    .rpnl-company-results-header p {
        padding-top: 3px;
        text-align: right;
    }

    .rpnl-company-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 17px;
    }

    .rpnl-company-card-image {
        height: 190px;
    }

    .rpnl-company-card-content {
        padding: 17px 18px 19px;
    }

    .rpnl-company-owner-cta {
        padding-bottom: 48px;
    }

    .rpnl-company-owner-cta-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 21px;
        padding: 25px 22px;
    }

    .rpnl-company-owner-cta a {
        width: 100%;
    }
}

@media (max-width: 420px) {
    .rpnl-company-results-header {
        display: block;
    }

    .rpnl-company-results-header p {
        margin-top: 6px;
        text-align: left;
    }

    .rpnl-company-card-image {
        height: 175px;
    }
}
/* =========================================================
   POJEDYNCZA FIRMA
   ========================================================= */

.rpnl-company-single {
    padding: 32px 0 68px;
    color: #17283a;
    background: #f5f8fc;
}

.rpnl-company-single-container {
    width: 100%;
    max-width: 1480px;
    margin-inline: auto;
    padding-inline: 24px;
}

/* Okruszki */

.rpnl-company-breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin: 0 0 14px;
    color: #718397;
    font-size: 0.78rem;
    line-height: 1.5;
}

.rpnl-company-breadcrumbs a {
    color: #52677c;
    font-weight: 650;
    text-decoration: none;
}

.rpnl-company-breadcrumbs a:hover {
    color: #1677ff;
    text-decoration: underline;
}

.rpnl-company-breadcrumbs span[aria-hidden="true"] {
    color: #a6b3c0;
}

.rpnl-company-breadcrumbs span[aria-current="page"] {
    overflow: hidden;
    max-width: 420px;
    color: #718397;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* =========================================================
   HERO FIRMY
   ========================================================= */

.rpnl-company-single-hero {
    position: relative;
    overflow: hidden;
    margin-bottom: 28px;
    padding: 38px 42px;
    border-radius: 16px;
    color: #ffffff;
    background:
        radial-gradient(
            circle at 88% 12%,
            rgba(22, 119, 255, 0.35),
            transparent 35%
        ),
        linear-gradient(
            135deg,
            #071f35 0%,
            #0b2d4d 58%,
            #104a7a 100%
        );
    box-shadow: 0 12px 32px rgba(11, 45, 77, 0.14);
}

.rpnl-company-single-identity {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 30px;
}

/* Logo lub zdjęcie firmy */

.rpnl-company-single-logo {
    display: flex;
    flex: 0 0 180px;
    align-items: center;
    justify-content: center;
    width: 180px;
    height: 180px;
    overflow: hidden;
    border: 5px solid rgba(255, 255, 255, 0.16);
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.17);
}

.rpnl-company-single-logo img {
    display: block;
    width: 100%;
    height: 100%;
    margin: 0;
    object-fit: cover;
}

.rpnl-company-single-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 92px;
    height: 92px;
    border-radius: 50%;
    color: #ffffff;
    background: #0b2d4d;
    font-size: 2.8rem;
    font-weight: 850;
    line-height: 1;
}

/* Nagłówek firmy */

.rpnl-company-single-heading {
    min-width: 0;
    max-width: 900px;
}

.rpnl-company-single-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    min-height: 24px;
    margin-bottom: 12px;
}

.rpnl-company-single-badges:empty {
    display: none;
}

.rpnl-company-single-heading h1 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(2rem, 4vw, 3.1rem);
    font-weight: 850;
    line-height: 1.08;
    letter-spacing: -0.035em;
}

.rpnl-company-single-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 13px;
}

.rpnl-company-single-categories a {
    display: inline-flex;
    align-items: center;
    min-height: 27px;
    padding: 5px 11px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.09);
    font-size: 0.73rem;
    font-weight: 750;
    line-height: 1.2;
    text-decoration: none;
}

.rpnl-company-single-categories a:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.18);
}

.rpnl-company-single-lead {
    max-width: 780px;
    margin: 16px 0 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1rem;
    line-height: 1.65;
}

.rpnl-company-single-locations {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-top: 14px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.84rem;
    font-weight: 700;
    line-height: 1.4;
}

/* Odznaki */

.rpnl-company-single .rpnl-company-badge {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding: 5px 10px;
    border-radius: 999px;
    font-size: 0.67rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.025em;
}

.rpnl-company-single .rpnl-company-badge--verified {
    color: #075b37;
    background: #dcf7ea;
}

.rpnl-company-single .rpnl-company-badge--verified::before {
    content: "✓";
    margin-right: 4px;
    font-weight: 900;
}

.rpnl-company-single .rpnl-company-badge--featured {
    color: #735100;
    background: #fff0bd;
}

.rpnl-company-single .rpnl-company-badge--promoted {
    color: #0754b8;
    background: #dcecff;
}

/* =========================================================
   UKŁAD TREŚCI
   ========================================================= */

.rpnl-company-single-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(330px, 400px);
    gap: 28px;
    align-items: start;
}

.rpnl-company-single-main {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 22px;
}

/* Sekcje treści */

.rpnl-company-single-section {
    padding: 29px 32px 31px;
    border: 1px solid #dce5ef;
    border-radius: 13px;
    background: #ffffff;
    box-shadow: 0 6px 22px rgba(11, 45, 77, 0.055);
}

.rpnl-company-single-section h2 {
    position: relative;
    margin: 0 0 21px;
    padding-bottom: 13px;
    color: #0b2d4d;
    font-size: clamp(1.35rem, 2vw, 1.65rem);
    font-weight: 820;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

.rpnl-company-single-section h2::after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 46px;
    height: 3px;
    border-radius: 999px;
    background: #e30613;
    content: "";
}

/* Główny opis */

.rpnl-company-single-content {
    color: #344b61;
    font-size: 0.98rem;
    line-height: 1.78;
}

.rpnl-company-single-content > *:first-child {
    margin-top: 0;
}

.rpnl-company-single-content > *:last-child {
    margin-bottom: 0;
}

.rpnl-company-single-content p {
    margin: 0 0 1.15em;
}

.rpnl-company-single-content h2,
.rpnl-company-single-content h3,
.rpnl-company-single-content h4 {
    color: #0b2d4d;
}

.rpnl-company-single-content h2::after {
    display: none;
}

.rpnl-company-single-content a {
    color: #1677ff;
    font-weight: 650;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.rpnl-company-single-content ul,
.rpnl-company-single-content ol {
    margin: 1em 0;
    padding-left: 1.4em;
}

.rpnl-company-single-content img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Informacje o firmie */

.rpnl-company-details-list {
    margin: 0;
}

.rpnl-company-detail-row {
    display: grid;
    grid-template-columns: minmax(150px, 0.38fr) minmax(0, 1fr);
    gap: 20px;
    padding: 14px 0;
    border-bottom: 1px solid #e4ebf2;
}

.rpnl-company-detail-row:first-child {
    padding-top: 0;
}

.rpnl-company-detail-row:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.rpnl-company-detail-row dt {
    color: #52677c;
    font-size: 0.83rem;
    font-weight: 750;
    line-height: 1.5;
}

.rpnl-company-detail-row dd {
    margin: 0;
    color: #17283a;
    font-size: 0.9rem;
    font-weight: 650;
    line-height: 1.5;
}

/* Social media */

.rpnl-company-social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.rpnl-company-social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 41px;
    padding: 9px 15px;
    border: 1px solid #ccd8e4;
    border-radius: 7px;
    color: #0b2d4d;
    background: #f8fafc;
    font-size: 0.82rem;
    font-weight: 750;
    line-height: 1.2;
    text-decoration: none;
    transition:
        color 0.2s ease,
        background-color 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}

.rpnl-company-social-links a:hover {
    color: #ffffff;
    background: #1677ff;
    border-color: #1677ff;
    transform: translateY(-2px);
}

/* =========================================================
   PANEL KONTAKTOWY
   ========================================================= */

.rpnl-company-contact-sidebar {
    position: sticky;
    top: 96px;
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 14px;
}

.rpnl-company-contact-card {
    overflow: hidden;
    border: 1px solid #d5e0eb;
    border-radius: 13px;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(11, 45, 77, 0.09);
}

.rpnl-company-contact-header {
    padding: 24px 25px 21px;
    color: #ffffff;
    background:
        linear-gradient(
            120deg,
            rgba(22, 119, 255, 0.16),
            transparent 62%
        ),
        #0b2d4d;
}

.rpnl-company-contact-eyebrow {
    margin: 0 0 6px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.68rem;
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.rpnl-company-contact-header h2 {
    margin: 0;
    color: #ffffff;
    font-size: 1.35rem;
    font-weight: 820;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

.rpnl-company-contact-list {
    margin: 0;
    padding: 7px 25px 3px;
}

.rpnl-company-contact-item {
    padding: 16px 0;
    border-bottom: 1px solid #e3eaf1;
}

.rpnl-company-contact-item:last-child {
    border-bottom: 0;
}

.rpnl-company-contact-item dt {
    display: flex;
    align-items: center;
    gap: 7px;
    margin: 0 0 6px;
    color: #64778a;
    font-size: 0.71rem;
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: 0.035em;
    text-transform: uppercase;
}

.rpnl-company-contact-item dt span {
    font-size: 0.9rem;
}

.rpnl-company-contact-item dd {
    overflow-wrap: anywhere;
    margin: 0;
    color: #17283a;
    font-size: 0.9rem;
    font-weight: 650;
    line-height: 1.55;
}

.rpnl-company-contact-item dd a {
    color: #0b2d4d;
    text-decoration: none;
}

.rpnl-company-contact-item dd a:hover {
    color: #1677ff;
    text-decoration: underline;
}

.rpnl-company-contact-empty {
    margin: 0;
    padding: 23px 25px 4px;
    color: #64778a;
    font-size: 0.86rem;
    line-height: 1.55;
}

/* Przyciski kontaktowe */

.rpnl-company-contact-actions {
    display: grid;
    gap: 9px;
    padding: 18px 25px 25px;
}

.rpnl-company-contact-button {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 11px 17px;
    border: 1px solid transparent;
    border-radius: 7px;
    font-size: 0.84rem;
    font-weight: 800;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    transition:
        color 0.2s ease,
        background-color 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}

.rpnl-company-contact-button:hover {
    transform: translateY(-1px);
}

.rpnl-company-contact-button--primary {
    color: #ffffff;
    background: #e30613;
    border-color: #e30613;
}

.rpnl-company-contact-button--primary:hover {
    color: #ffffff;
    background: #c9000c;
    border-color: #c9000c;
}

.rpnl-company-contact-button--secondary {
    color: #ffffff;
    background: #0b2d4d;
    border-color: #0b2d4d;
}

.rpnl-company-contact-button--secondary:hover {
    color: #ffffff;
    background: #1677ff;
    border-color: #1677ff;
}

.rpnl-company-contact-button--website {
    color: #0b2d4d;
    background: #f5f8fc;
    border-color: #cbd7e3;
}

.rpnl-company-contact-button--website:hover {
    color: #ffffff;
    background: #1677ff;
    border-color: #1677ff;
}

/* Informacja pod panelem */

.rpnl-company-listing-notice {
    padding: 17px 19px;
    border: 1px solid #dce5ef;
    border-radius: 10px;
    background: #edf3f8;
}

.rpnl-company-listing-notice p {
    margin: 0;
    color: #64778a;
    font-size: 0.73rem;
    line-height: 1.55;
}

/* =========================================================
   DOLNE CTA
   ========================================================= */

.rpnl-company-single-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    margin-top: 28px;
    padding: 29px 34px;
    border-radius: 13px;
    color: #ffffff;
    background:
        linear-gradient(
            115deg,
            rgba(22, 119, 255, 0.15),
            transparent 56%
        ),
        #0b2d4d;
    box-shadow: 0 10px 28px rgba(11, 45, 77, 0.12);
}

.rpnl-company-single-bottom h2 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(1.3rem, 2.5vw, 1.7rem);
    font-weight: 820;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

.rpnl-company-single-bottom p {
    margin: 7px 0 0;
    color: rgba(255, 255, 255, 0.74);
    font-size: 0.88rem;
    line-height: 1.5;
}

.rpnl-company-single-bottom > a {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 10px 17px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 7px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
    font-size: 0.8rem;
    font-weight: 800;
    line-height: 1.2;
    text-decoration: none;
    transition:
        background-color 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}

.rpnl-company-single-bottom > a:hover {
    color: #ffffff;
    background: #e30613;
    border-color: #e30613;
    transform: translateY(-2px);
}

/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1050px) {
    .rpnl-company-single-layout {
        grid-template-columns: minmax(0, 1fr) minmax(290px, 340px);
        gap: 22px;
    }

    .rpnl-company-single-hero {
        padding: 32px;
    }

    .rpnl-company-single-logo {
        flex-basis: 150px;
        width: 150px;
        height: 150px;
    }

    .rpnl-company-single-section {
        padding: 25px 27px 27px;
    }

    .rpnl-company-contact-list {
        padding-inline: 21px;
    }

    .rpnl-company-contact-actions {
        padding-inline: 21px;
    }
}

/* =========================================================
   MOBILE I MAŁY TABLET
   ========================================================= */

@media (max-width: 820px) {
    .rpnl-company-single {
        padding-top: 22px;
    }

    .rpnl-company-single-layout {
        grid-template-columns: minmax(0, 1fr);
    }

    .rpnl-company-contact-sidebar {
        position: static;
    }

    .rpnl-company-single-hero {
        padding: 28px;
    }

    .rpnl-company-single-identity {
        align-items: flex-start;
        gap: 23px;
    }

    .rpnl-company-single-logo {
        flex-basis: 128px;
        width: 128px;
        height: 128px;
    }

    .rpnl-company-single-heading h1 {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }
}

/* =========================================================
   TELEFON
   ========================================================= */

@media (max-width: 600px) {
    .rpnl-company-single {
        padding: 14px 0 46px;
    }

    .rpnl-company-single-container {
        padding-inline: 12px;
    }

    .rpnl-company-breadcrumbs {
        margin-bottom: 11px;
        padding-inline: 4px;
        font-size: 0.71rem;
    }

    .rpnl-company-breadcrumbs span[aria-current="page"] {
        max-width: 170px;
    }

    .rpnl-company-single-hero {
        margin-bottom: 17px;
        padding: 24px 20px 25px;
        border-radius: 12px;
    }

    .rpnl-company-single-identity {
        flex-direction: column;
        gap: 19px;
    }

    .rpnl-company-single-logo {
        flex-basis: auto;
        width: 112px;
        height: 112px;
        border-width: 4px;
        border-radius: 11px;
    }

    .rpnl-company-single-placeholder {
        width: 68px;
        height: 68px;
        font-size: 2rem;
    }

    .rpnl-company-single-heading h1 {
        font-size: 1.85rem;
        line-height: 1.12;
    }

    .rpnl-company-single-lead {
        margin-top: 13px;
        font-size: 0.92rem;
        line-height: 1.6;
    }

    .rpnl-company-single-layout {
        gap: 17px;
    }

    .rpnl-company-single-main {
        gap: 17px;
    }

    .rpnl-company-single-section {
        padding: 22px 19px 23px;
        border-radius: 11px;
    }

    .rpnl-company-single-section h2 {
        margin-bottom: 18px;
        font-size: 1.3rem;
    }

    .rpnl-company-single-content {
        font-size: 0.93rem;
        line-height: 1.72;
    }

    .rpnl-company-detail-row {
        display: block;
        padding: 13px 0;
    }

    .rpnl-company-detail-row dt {
        margin-bottom: 4px;
    }

    .rpnl-company-social-links {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .rpnl-company-contact-header {
        padding: 22px 20px 19px;
    }

    .rpnl-company-contact-list {
        padding-inline: 20px;
    }

    .rpnl-company-contact-actions {
        padding: 16px 20px 21px;
    }

    .rpnl-company-single-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        margin-top: 18px;
        padding: 24px 21px;
        border-radius: 11px;
    }

    .rpnl-company-single-bottom > a {
        width: 100%;
    }
}

@media (max-width: 380px) {
    .rpnl-company-social-links {
        grid-template-columns: minmax(0, 1fr);
    }

    .rpnl-company-single-heading h1 {
        font-size: 1.65rem;
    }
}
/* =========================================================
   STRONA: DODAJ FIRMĘ
   ========================================================= */

.rpnl-add-company {
    padding: 32px 0 72px;
    color: #17283a;
    background: #f5f8fc;
}

.rpnl-add-company-container {
    width: 100%;
    max-width: 1180px;
    margin-inline: auto;
    padding-inline: 24px;
}

/* =========================================================
   HERO
   ========================================================= */

.rpnl-add-company-hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 28px;
    padding: 42px 46px;
    overflow: hidden;
    border-radius: 16px;
    color: #ffffff;
    background:
        radial-gradient(
            circle at 86% 8%,
            rgba(22, 119, 255, 0.38),
            transparent 36%
        ),
        linear-gradient(
            135deg,
            #071f35 0%,
            #0b2d4d 60%,
            #104a7a 100%
        );
    box-shadow: 0 12px 32px rgba(11, 45, 77, 0.14);
}

.rpnl-add-company-hero-content {
    max-width: 720px;
}

.rpnl-add-company-eyebrow {
    margin: 0 0 10px;
    color: #8ebfff;
    font-size: 0.72rem;
    font-weight: 850;
    line-height: 1.3;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.rpnl-add-company-hero h1 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(2.1rem, 4vw, 3.2rem);
    font-weight: 850;
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.rpnl-add-company-hero-content > p:last-child {
    max-width: 650px;
    margin: 17px 0 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.65;
}

.rpnl-add-company-hero-note {
    display: flex;
    flex: 0 0 255px;
    flex-direction: column;
    gap: 5px;
    padding: 19px 21px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 11px;
    background: rgba(255, 255, 255, 0.09);
    backdrop-filter: blur(5px);
}

.rpnl-add-company-hero-note strong {
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 800;
    line-height: 1.35;
}

.rpnl-add-company-hero-note span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.76rem;
    line-height: 1.5;
}

/* =========================================================
   KOMUNIKATY
   ========================================================= */

.rpnl-add-company-message {
    margin-bottom: 24px;
    padding: 25px 28px;
    border: 1px solid;
    border-radius: 12px;
}

.rpnl-add-company-message h2 {
    margin: 0 0 8px;
    font-size: 1.25rem;
    font-weight: 820;
    line-height: 1.3;
}

.rpnl-add-company-message p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.6;
}

.rpnl-add-company-message ul {
    margin: 10px 0 0;
    padding-left: 20px;
}

.rpnl-add-company-message li {
    margin: 4px 0;
    font-size: 0.87rem;
    line-height: 1.5;
}

.rpnl-add-company-message--success {
    color: #075b37;
    border-color: #a9dfc7;
    background: #eaf9f2;
}

.rpnl-add-company-message--error {
    color: #8d1520;
    border-color: #efb8bd;
    background: #fff0f1;
}

/* =========================================================
   FORMULARZ
   ========================================================= */

.rpnl-add-company-form {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.rpnl-add-company-honeypot {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

/* Sekcje */

.rpnl-add-company-section {
    padding: 32px 36px 36px;
    border: 1px solid #dce5ef;
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 6px 22px rgba(11, 45, 77, 0.055);
}

.rpnl-add-company-section-heading {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 28px;
    padding-bottom: 22px;
    border-bottom: 1px solid #e3eaf1;
}

.rpnl-add-company-section-heading > span {
    display: inline-flex;
    flex: 0 0 42px;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    color: #ffffff;
    background: #0b2d4d;
    font-size: 0.78rem;
    font-weight: 850;
    line-height: 1;
}

.rpnl-add-company-section-heading h2 {
    margin: 0;
    color: #0b2d4d;
    font-size: clamp(1.25rem, 2vw, 1.55rem);
    font-weight: 820;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

.rpnl-add-company-section-heading p {
    margin: 5px 0 0;
    color: #718397;
    font-size: 0.8rem;
    line-height: 1.5;
}

/* Siatka pól */

.rpnl-add-company-fields {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 23px 26px;
}

.rpnl-add-company-field {
    min-width: 0;
    margin: 0;
    padding: 0;
    border: 0;
}

.rpnl-add-company-field--full {
    grid-column: 1 / -1;
}

.rpnl-add-company-field > label,
.rpnl-add-company-field > legend {
    display: block;
    margin: 0 0 8px;
    padding: 0;
    color: #31485e;
    font-size: 0.79rem;
    font-weight: 780;
    line-height: 1.35;
}

/* Pola formularza */

.rpnl-add-company-field input[type="text"],
.rpnl-add-company-field input[type="tel"],
.rpnl-add-company-field input[type="email"],
.rpnl-add-company-field input[type="url"],
.rpnl-add-company-field select,
.rpnl-add-company-field textarea {
    display: block;
    width: 100%;
    min-height: 48px;
    margin: 0;
    padding: 11px 14px;
    border: 1px solid #cbd7e3;
    border-radius: 8px;
    outline: none;
    color: #17283a;
    background: #ffffff;
    box-shadow: none;
    font: inherit;
    font-size: 0.88rem;
    line-height: 1.5;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        background-color 0.2s ease;
}

.rpnl-add-company-field select {
    padding-right: 38px;
    cursor: pointer;
}

.rpnl-add-company-field textarea {
    min-height: 110px;
    resize: vertical;
}

.rpnl-add-company-field #company_description {
    min-height: 220px;
}

.rpnl-add-company-field input::placeholder,
.rpnl-add-company-field textarea::placeholder {
    color: #96a5b4;
    opacity: 1;
}

.rpnl-add-company-field input:hover,
.rpnl-add-company-field select:hover,
.rpnl-add-company-field textarea:hover {
    border-color: #9fb1c3;
}

.rpnl-add-company-field input:focus,
.rpnl-add-company-field select:focus,
.rpnl-add-company-field textarea:focus {
    border-color: #1677ff;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(22, 119, 255, 0.12);
}

.rpnl-add-company-field input:required:valid,
.rpnl-add-company-field select:required:valid,
.rpnl-add-company-field textarea:required:valid {
    border-color: #96cdb3;
}

.rpnl-add-company-field small {
    display: block;
    margin-top: 7px;
    color: #7b8d9f;
    font-size: 0.71rem;
    line-height: 1.45;
}

/* Plik z logo */

.rpnl-add-company-field input[type="file"] {
    display: block;
    width: 100%;
    min-height: 54px;
    padding: 7px;
    border: 1px dashed #b8c7d6;
    border-radius: 8px;
    color: #536a7f;
    background: #f8fafc;
    font-size: 0.8rem;
    cursor: pointer;
}

.rpnl-add-company-field input[type="file"]::file-selector-button {
    min-height: 38px;
    margin-right: 12px;
    padding: 8px 14px;
    border: 0;
    border-radius: 6px;
    color: #ffffff;
    background: #0b2d4d;
    font-size: 0.76rem;
    font-weight: 750;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.rpnl-add-company-field input[type="file"]::file-selector-button:hover {
    background: #1677ff;
}

/* Języki */

.rpnl-add-company-languages {
    min-width: 0;
}

.rpnl-add-company-checks {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.rpnl-add-company-checks label {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    margin: 0;
    cursor: pointer;
}

.rpnl-add-company-checks input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.rpnl-add-company-checks span {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 9px 14px;
    border: 1px solid #cbd7e3;
    border-radius: 7px;
    color: #40576d;
    background: #f8fafc;
    font-size: 0.78rem;
    font-weight: 720;
    line-height: 1.2;
    transition:
        color 0.2s ease,
        border-color 0.2s ease,
        background-color 0.2s ease,
        box-shadow 0.2s ease;
}

.rpnl-add-company-checks span::before {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 17px;
    height: 17px;
    margin-right: 7px;
    border: 1px solid #aebdcb;
    border-radius: 4px;
    color: transparent;
    background: #ffffff;
    content: "✓";
    font-size: 0.7rem;
    font-weight: 900;
}

.rpnl-add-company-checks input:checked + span {
    color: #0b2d4d;
    border-color: #1677ff;
    background: #edf5ff;
}

.rpnl-add-company-checks input:checked + span::before {
    color: #ffffff;
    border-color: #1677ff;
    background: #1677ff;
}

.rpnl-add-company-checks input:focus-visible + span {
    box-shadow: 0 0 0 3px rgba(22, 119, 255, 0.15);
}

/* Zgoda */

.rpnl-add-company-consent {
    grid-column: 1 / -1;
    padding: 17px 19px;
    border: 1px solid #d6e0ea;
    border-radius: 9px;
    background: #f5f8fc;
}

.rpnl-add-company-consent label {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    margin: 0;
    cursor: pointer;
}

.rpnl-add-company-consent input {
    flex: 0 0 auto;
    width: 18px;
    height: 18px;
    margin: 2px 0 0;
    accent-color: #1677ff;
    cursor: pointer;
}

.rpnl-add-company-consent span {
    color: #4b6278;
    font-size: 0.78rem;
    font-weight: 620;
    line-height: 1.55;
}

/* =========================================================
   PANEL WYSYŁANIA
   ========================================================= */

.rpnl-add-company-submit {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 27px 31px;
    border-radius: 13px;
    color: #ffffff;
    background:
        linear-gradient(
            115deg,
            rgba(22, 119, 255, 0.17),
            transparent 58%
        ),
        #0b2d4d;
    box-shadow: 0 10px 28px rgba(11, 45, 77, 0.13);
}

.rpnl-add-company-submit > div {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.rpnl-add-company-submit strong {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.35;
}

.rpnl-add-company-submit span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.76rem;
    line-height: 1.45;
}

.rpnl-add-company-submit button {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    min-width: 190px;
    min-height: 48px;
    margin: 0;
    padding: 12px 21px;
    border: 1px solid #e30613;
    border-radius: 7px;
    color: #ffffff;
    background: #e30613;
    box-shadow: none;
    font: inherit;
    font-size: 0.84rem;
    font-weight: 820;
    line-height: 1.2;
    cursor: pointer;
    transition:
        background-color 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.rpnl-add-company-submit button:hover {
    color: #ffffff;
    border-color: #c9000c;
    background: #c9000c;
    box-shadow: 0 7px 18px rgba(227, 6, 19, 0.22);
    transform: translateY(-2px);
}

.rpnl-add-company-submit button:focus-visible {
    outline: 3px solid rgba(255, 255, 255, 0.65);
    outline-offset: 3px;
}

/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {
    .rpnl-add-company-hero {
        align-items: flex-start;
        padding: 35px 34px;
    }

    .rpnl-add-company-hero-note {
        flex-basis: 220px;
    }

    .rpnl-add-company-section {
        padding: 29px 30px 32px;
    }
}

/* =========================================================
   TELEFON I MAŁY TABLET
   ========================================================= */

@media (max-width: 720px) {
    .rpnl-add-company {
        padding-top: 22px;
    }

    .rpnl-add-company-hero {
        flex-direction: column;
        gap: 25px;
    }

    .rpnl-add-company-hero-note {
        width: 100%;
        flex-basis: auto;
    }

    .rpnl-add-company-fields {
        grid-template-columns: minmax(0, 1fr);
    }

    .rpnl-add-company-field--full,
    .rpnl-add-company-consent {
        grid-column: auto;
    }

    .rpnl-add-company-submit {
        align-items: flex-start;
        flex-direction: column;
    }

    .rpnl-add-company-submit button {
        width: 100%;
    }
}

/* =========================================================
   TELEFON
   ========================================================= */

@media (max-width: 520px) {
    .rpnl-add-company {
        padding: 14px 0 48px;
    }

    .rpnl-add-company-container {
        padding-inline: 12px;
    }

    .rpnl-add-company .rpnl-company-breadcrumbs {
        margin-bottom: 11px;
        padding-inline: 4px;
        font-size: 0.71rem;
    }

    .rpnl-add-company-hero {
        margin-bottom: 17px;
        padding: 27px 21px;
        border-radius: 12px;
    }

    .rpnl-add-company-hero h1 {
        font-size: 2rem;
    }

    .rpnl-add-company-hero-content > p:last-child {
        font-size: 0.91rem;
        line-height: 1.6;
    }

    .rpnl-add-company-hero-note {
        padding: 16px 17px;
    }

    .rpnl-add-company-form {
        gap: 17px;
    }

    .rpnl-add-company-section {
        padding: 23px 19px 25px;
        border-radius: 11px;
    }

    .rpnl-add-company-section-heading {
        gap: 12px;
        margin-bottom: 23px;
        padding-bottom: 18px;
    }

    .rpnl-add-company-section-heading > span {
        flex-basis: 37px;
        width: 37px;
        height: 37px;
        border-radius: 8px;
        font-size: 0.7rem;
    }

    .rpnl-add-company-section-heading h2 {
        font-size: 1.22rem;
    }

    .rpnl-add-company-fields {
        gap: 20px;
    }

    .rpnl-add-company-field input[type="text"],
    .rpnl-add-company-field input[type="tel"],
    .rpnl-add-company-field input[type="email"],
    .rpnl-add-company-field input[type="url"],
    .rpnl-add-company-field select,
    .rpnl-add-company-field textarea {
        min-height: 47px;
        font-size: 0.86rem;
    }

    .rpnl-add-company-checks {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .rpnl-add-company-checks span {
        width: 100%;
    }

    .rpnl-add-company-submit {
        padding: 23px 20px;
        border-radius: 11px;
    }

    .rpnl-add-company-message {
        padding: 21px 20px;
        border-radius: 10px;
    }
}

@media (max-width: 370px) {
    .rpnl-add-company-checks {
        grid-template-columns: minmax(0, 1fr);
    }
}
.rpnl-add-company-consent a {
    color: #0b5fc6;
    font-weight: 750;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
}

.rpnl-add-company-consent a:hover {
    color: #e30613;
}
