@font-face {
    font-family: "Work Sans";
    src: url("../fonts/WorkSans/WorkSans-VariableFont_wght-867b8578377e74e163705fb8262d003e.ttf") format("truetype");
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Work Sans";
    src: url("../fonts/WorkSans/WorkSans-Italic-VariableFont_wght-0d0e1501398db31c3aad93c37ed763fa.ttf") format("truetype");
    font-weight: 100 900;
    font-style: italic;
    font-display: swap;
}


:root {
    --bg: #eceae8;
    --card: #ffffff;
    --muted: #6b6b6b;
    --accent: #f90b10;
    --accent-contrast: #ffffff;
    --clr-text-default: #111;
    --clr-bg-gray-400: #f3f3f3;
    --clr-bg-gray-600: #e2e2e2;
    --clr-bg-gray-800: #666;
    --clr-bg-gray-900: #191919;
    --radius: 14px;
    --gap: 1rem;
    --container-width: 1100px;
    --max-mobile-width: 480px;
    --break-desktop: 900px;
    --ff-default: Barlow, system-ui, -apple-system, BlinkMacSystemFont,
        "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans",
        "Helvetica Neue", sans-serif;
    --font-accent: "Montserrat", sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

img,
svg,
picture,
video {
    display: block;
    max-width: 100%;
}

a {
    text-decoration: none;
    color: inherit;
}

p {
    margin: 0;
}

p+p {
    margin-top: 1rem;
}

ul:not(.list-default),
ol:not(.list-default) {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    font-size: inherit;
    line-height: inherit;
}

b {
    font-weight: 500;
}

input {
    font-size: inherit;
    font-family: inherit;
}

address {
    font-style: normal;
}

html {
    scroll-behavior: smooth;
}

html,
body {
    height: 100%;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: var(--ff-default);
    background: var(--bg);
    color: #111;
    -webkit-font-smoothing: antialiased;
    font-size: 16px;
    line-height: 1.6;
}

@supports (font-variation-settings: normal) {
    body {
        font-family: "Work Sans", sans-serif;
    }
}

ul.bullet-list {
    list-style: none;
}

ul.bullet-list li {
    line-height: 1.4;
}


ul.bullet-list li+li {
    margin-top: 0.75rem;
}

ul.bullet-list.condensed li+li {
    margin-top: 0.25rem;
}

.bullet-list li>svg {
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-right: 0.25rem;
    transform: translateY(6px);
}

.items-center {
    align-items: center;
}

.mt-2 {
    margin-top: 1rem !important
}

.mt-4 {
    margin-top: 2rem !important;
}

.mt-6 {
    margin-top: 3rem !important;
}

.mt-n2 {
    margin-top: -1rem !important;
}

.mi-auto {
    margin-inline: auto !important;
}

.py-6 {
    padding-block: 4rem !important;
}

.py-10 {
    padding-block: 6rem !important;
}

.p-0 {
    padding: 0 !important;
}

.p-2 {
    padding: 1rem !important;
}

.p-4 {
    padding: 2rem !important;
}

.p-6 {
    padding: 3rem !important;
}

.px-2 {
    padding-inline: 1rem !important;
}

.pxs-2 {
    padding-inline-start: 1rem !important;
}

.bg-white {
    background-color: #FFF !important;
}

.round {
    border-radius: var(--radius) !important;
}

.with-icon {
    display: flex;
    gap: 0.5em;
    align-items: center;
}

.svg-icon svg {
    fill: inherit;
    width: 16px;
}

.uppercase {
    text-transform: uppercase;
}

.text-accent {
    color: var(--accent) !important;
    fill: var(--accent) !important;
}

.alert {
    background-color: #fff;
    color: var(--clr-text-default);
    border: 2px solid var(--_border, #000);
    border-radius: var(--radius);
    padding: 1rem;
}

.alert-success {
    --_border: #1bac53;
}

.alert-error {
    --_border: #ac1b1b;
}

.content-grid,
.full-w-breakout {
    --padding-inline: 1rem;
    --content-max-width: 1600px;
    --breakout-max-width: 1700px;
    --breakout-size: calc((var(--breakout-max-width) - var(--content-max-width)) / 2);
    display: grid;
    grid-template-columns:
        [full-w-start] minmax(var(--padding-inline), 1fr) [breakout-start] minmax(0, var(--breakout-size)) [content-start] min(100% - (var(--padding-inline) * 2),
            var(--content-max-width)) [content-end] minmax(0, var(--breakout-size)) [breakout-end] minmax(var(--padding-inline), 1fr) [full-w-end];
    overflow-x: clip;
    overflow-y: visible;
}

.content-grid> :not(.full-w-breakout),
.full-w-breakout> :not(.full-w-breakout) {
    grid-column: content;
}

.content-grid>.breakout {
    grid-column: breakout;
}

.content-grid .full-w {
    grid-column: full-w;
}

.content-grid>.full-w-end {
    grid-column: content-start / full-w-end;
}

.container-inner {
    width: min(100%, 1000px);
    margin-inline: auto;
}

.placeholder {
    display: block;
    flex: 1;
    background: #97dbf0;
    min-height: var(--h);
}

.cta {
    text-align: center;
    background: #000;
    color: #fff;
    border: 1px solid #fff;
    padding: 0.5rem 1.5rem;
    border-radius: 2rem;
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.cta.small {
    padding: 0.25rem 1rem;
}

.cta:hover {
    background: #222;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.cta.red {
    background: var(--accent);
    color: #fff;
    border: none;
}

.cta.red:hover {
    background: #fff;
    color: var(--accent);
}

.cta.with-icon {
    fill: white;
    padding: 0.25rem 4rem 0.25rem 3rem;
}

.cta.with-icon svg {
    transition: transform 300ms ease-in-out;
    transform: scale(1);
    margin-right: -40px;
    width: 24px;
    height: 24px;
}

.cta.with-icon:hover svg {
    transform: scale(1.2);
}

.layout {
    padding-top: 2rem;
}

.cut-right-1,
.cut-right-2 {
    --_size: 40px;
    clip-path: polygon(0% 0%, 100% 0, 100% calc(100% - var(--_size)), calc(100% - var(--_size)) 100%, 0% 100%);
    border-bottom-right-radius: calc(var(--_size) *1.4) !important;
}

.cut-right-2 {
    --_size: 65px;
    border-bottom-right-radius: calc(var(--_size) *1.3) !important;
}

.cut-left-1 {
    --_size: 40px;
    clip-path: polygon(0% var(--_size), var(--_size) 0%, 100% 0%, 100% 100%, 0% 100%);
    border-top-left-radius: calc(var(--_size) *1.4) !important;
}

.cut-diagonal-1,
.cut-diagonal-2 {
    --_size-l: 40px;
    --_size-r: 40px;
    clip-path: polygon(0% var(--_size-l), var(--_size-l) 0%, 100% 0%, 100% calc(100% - var(--_size-r)),
            calc(100% - var(--_size-r)) 100%, 0% 100%);
    border-top-left-radius: calc(var(--_size-l) *1.4) !important;
    border-bottom-right-radius: calc(var(--_size-r) *1.4) !important;
}

.cut-diagonal-2 {
    --_size-l: 40px;
    --_size-r: 65px;
    border-bottom-right-radius: calc(var(--_size-r) *1.3) !important;
}


/* header + nav */
.header {
    display: grid;
    grid-template-columns: 150px 1fr;
    grid-template-rows: min-content 1fr;
    padding-inline: 10px;
    position: relative;
    border-bottom-left-radius: var(--radius);
    border-bottom-right-radius: var(--radius);
    z-index: 1;
    margin-inline: 50px;
    margin-bottom: -72px;
    padding-bottom: 0.75rem;
}

.header .bg {
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background-color: var(--bg);
    border-radius: inherit;
}

.header .logo {
    grid-column: 1;
    grid-row: 1;
    align-self: center;
}

.header .logo img {
    max-height: 60px;
}

.header .nav {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.header .top-contact-info {
    position: relative;
    display: flex;
    margin-left: 1rem;
    gap: 0.75rem;
}

.navbar-main {
    --_px: 1rem;
    --_indicator: none;
    align-self: center;
    justify-self: flex-start;
    grid-column: 1 / span 2;
    grid-row: 2;
}

.navbar-main ul {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
    position: relative;
}

.navbar-main:not(.show) ul::after {
    content: "";
    position: absolute;
    bottom: -0.5em;
    left: 1rem;
    right: 1rem;
    height: 5px;
    background-color: var(--clr-primary);
    translate: var(--_left, 0) 0;
    transform: skewX(45deg) scaleX(var(--_width, 12.5%));
    transform-origin: var(--_origin, left);
    transition: transform 200ms, translate 200ms ease-in-out;
    display: var(--_indicator);
}

.navbar-main ul li {
    position: relative;
    transition: 400ms ease-in-out;
    color: var(--clr-bg-gray-800);
    font-weight: 500;
}

.navbar-main ul li:hover {
    color: var(--clr-bg-gray-900);
}

.navbar-main ul li a {
    padding: 0.5rem var(--_px);
}

.navbar-main ul li.active {
    font-weight: 600;
    color: var(--clr-text-default);
}

.navbar-main .cta {
    font-weight: 800;
    color: var(--clr-text-default);
}

.navbar-main.show ul li.active::after {
    content: "";
    position: absolute;
    bottom: -0.5em;
    left: 1rem;
    right: 1rem;
    height: 5px;
    background-color: var(--clr-primary);
    transform: skewX(45deg);
}

.navbar-toggle {
    display: none;
}

.language-switcher {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
    margin-left: 1rem;
}

.language-switcher a {
    text-decoration: none;
    opacity: 0.7;
    transition: opacity 0.2s ease;
}

.language-switcher a.active {
    opacity: 1;
}

.language-switcher a:hover,
a:active,
a:focus-visible {
    opacity: 0.9;
}

.language-switcher img {
    width: 35px;
    height: auto;
    border-radius: 3px;
}

@media screen and (max-width: 1200px) {
    .header {
        grid-template-columns: 15vw 1fr;
    }
}

@media screen and (max-width: 1000px) {
    .navbar-toggle {
        display: block;
        justify-self: end;
        border: 1px solid #222;
        border-radius: 8px;
        background: none;
        margin-left: auto;
        margin-right: 2rem;
    }

    .navbar-toggle svg {
        fill: var(--clr-text-default);
        width: 30px;
    }

    .navbar-main ul {
        flex-direction: column;
        align-items: start;
        padding-block: 1rem;
    }

    .navbar-main ul li {
        padding: 0.5rem var(--_px);
    }

    body:not(.menu-open) .navbar-main {
        display: none;
    }

    body.menu-open .navbar-main {
        padding-inline: 2rem;
        background: var(--clr-bg-gray-600);
        box-shadow: -2px 2px 5px 0 rgba(0, 0, 0, 0.4);
        position: absolute;
        top: calc(100% - 0.5rem);
        right: 0;
        z-index: 999;
        border-bottom-left-radius: var(--radius);
        border-bottom-right-radius: var(--radius);
    }

    .navbar-main ul li:not(.cta)::before {
        color: var(--clr-primary);
    }
}

@media screen and (max-width: 828px) {
    .navbar-toggle {
        margin-block: 1rem;
    }

    .header .top-contact-info {
        display: block;
    }

    .language-switcher {
        margin-left: 0;
        margin-top: 0.5rem;
    }
}

@media screen and (max-width: 850px) {
    .header {
        margin-bottom: 0;
    }
}

/* // header + nav */

/* hero */
.hero {
    display: grid;
    position: relative;
    border-radius: var(--radius);
}

.hero-container {
    position: relative;
    min-height: 600px;
    border-radius: var(--radius);
}

.hero-video {
    width: 100%;
    height: auto;
    border-radius: inherit;
}

.hero-text {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    color: red;
    font-weight: bold;
    line-height: 1.2;
}

.hero .badges {
    position: absolute;
    right: 60px;
    bottom: -100px;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero .badge {
    background-color: var(--bg);
    border-radius: 1.5rem;
    padding: 1.5rem;
}

.dekra-badge img {
    max-height: 200px;
}

.hero .badge.forbes-badge a {
    display: block;
    padding-block: 2.5rem;
}

.hero .badge.ifs-badge a {
    display: block;
    padding-block: 1.5rem;
}

.hero .quote-card {
    --_move: 12px;
    position: absolute;
    bottom: 0;
    left: 0;
    margin-left: calc(0px - var(--_move));
    margin-bottom: calc(0px - var(--_move));
    background-color: var(--bg);
    padding: var(--_move);
    border-radius: var(--radius);
}

@media screen and (max-width: 1279px) {
    .hero .badges {
        margin-inline: auto;
        position: static;
        justify-content: center;
    }
}

@media screen and (max-width: 1000px) {
    .hero-container {
        min-height: 400px;
    }
}

@media screen and (max-width: 750px) {
    .quote-card {
        margin-inline: auto;
        position: static;
    }
}

/* // hero */

/* quote-form */

.quote-form {
    background: #fff;
    border-radius: var(--radius);
    padding: 1.5rem 3rem 2.5rem 3rem;
    max-width: 400px;
    margin: 0 auto;
    display: grid;
    gap: 1rem;
}

.quote-form h2 {
    font-size: 1.4rem;
    font-weight: normal;
    line-height: 1.1;
}

.quote-form h2 u {
    font-weight: 600;
}

.quote-form label {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.quote-form .form-row+.form-row {
    margin-top: 6px;
}

.quote-form label>span {
    width: 3ch;
    text-align: right;
}

.quote-form input {
    width: 100%;
    padding: 0.5rem 1rem;
    border: 1px solid #ccc;
    border-radius: 100vw;
}

.quote-form .cta {
    width: 100%;
    margin-top: 10px;
}

@media screen and (min-width: 1000px) {
    .quote-form input {
        width: 220px;
    }
}


html[lang="en"] .quote-form label>span {
    width: 6ch;
}

html[lang="de"] .quote-form label>span {
    width: 8ch;
}

/* // quote-form */

/* Nasze atuty */
.features-header {
    margin-top: 130px;
    margin-bottom: 60px;
    display: flex;
    gap: 5vw;
}

.features-header h2 {
    font-size: clamp(1.5rem, 2.3vw, 3rem);
    line-height: 1;
    font-weight: bold;
}

.features-header p {
    max-width: 50ch;
    text-align: justify;
}

.features {
    display: grid;
    gap: 1.5rem;
    padding: 2rem 0rem;
    text-align: left;
    grid-template-columns: repeat(auto-fit, minmax(min(100vw, 300px), 1fr));
}

.feature {
    position: relative;
    min-height: 237px;
}

.feature .content {
    background: #fff;
    display: grid;
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    padding-bottom: 3rem;
    min-height: inherit;
}

.feature.wide {
    grid-column: span 2;
}

.feature img {
    min-width: 100%;
    height: 180px;
    display: block;
    max-width: unset;
    object-fit: cover;
    margin-top: -1rem;
}


.feature-text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    color: var(--clr-text-default);
}

.feature-label {
    padding: 1rem;
    font-size: 1.4rem;
}

.feature-description {
    position: absolute;
    bottom: 100%;
    left: 0;
    right: 0;
    opacity: 0;
    transition: opacity 250ms ease;
    padding: 0.75rem 1rem 0 1rem;
    font-size: 0.9rem;
    line-height: 1.2;
    background: #fff;
}

.feature:hover .feature-description {
    opacity: 1;
}

.feature-dark {
    background: #333;
    color: #fff;
    display: flex;
    align-items: center;
    text-align: left;
    padding: 2.5rem;
    border-radius: 1rem;
}

.feature .arrow {
    position: absolute;
    right: 0;
    bottom: 15px;
    transition: transform 300ms ease-in-out;
    transform: translate(0, 0) scale(1);
}

.feature .arrow svg {
    width: 24px;
    height: 24px;
}

.feature:hover .arrow {
    transform: translate(5px, -5px) scale(1.2)
}

.experience {
    display: flex;
    line-height: 1;
    justify-content: flex-end;
    flex-direction: column;
    padding: 0 2rem;
    color: #333;
}

.experience .years {
    font-size: 3rem;
    font-weight: 700;
}

.experience .desc {
    font-size: 1.1rem;
    color: #666;
}

.cta-container .content {
    padding: 4rem;
    display: flex;
    align-items: center;
}

.cta-container .cta {
    position: absolute;
    right: 0px;
    bottom: 20px;
}

@media screen and (max-width: 1040px) {
    .features {
        grid-template-columns: 1fr 1fr;
    }
}

@media screen and (max-width: 1000px) {
    .features-header {
        margin-top: 2rem;
        margin-bottom: 3rem;
    }
}

@media screen and (max-width: 750px) {
    .features-header {
        flex-direction: column;
        gap: 1rem;
    }

    .features {
        grid-template-columns: none;
    }

    .feature.wide {
        grid-column: auto;
    }
}

html[lang="en"] .feature-label {
    font-size: 1.2rem;
}

html[lang="de"] .feature-label {
    font-size: 1.1rem;
}

/* // nasze atuty */

/* Jak możemy pomóc */
.help {
    gap: 1.5rem;
    background: #000;
    color: #fff;
    padding: 2rem 1rem;
}

.help .help-grid {
    display: grid;
    gap: 1rem;
    margin-block: 1rem;
}

@media screen and (min-width: 1000px) {
    .help .help-grid {
        grid-template-columns: 1fr 2fr;
    }

    .help .help-grid .img {
        order: 2;
    }
}

.help h2 {
    font-size: 1.3rem;
    font-weight: bold;
}

.help-container {
    position: relative;
    height: 420px;
    overflow: hidden;
    mask-image: linear-gradient(transparent, black 25%, black 75%, transparent 100%);
    -webkit-mask-image: linear-gradient(transparent, black 25%, black 75%, transparent 100%);
}

.help-items {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.help-item {
    display: grid;
    gap: 0;
    border-radius: 8px;
    overflow: hidden;
    background: #262626;
    color: white;
    position: relative;
    margin-bottom: 1rem;
}

.help-items .help-item:last-child {
    margin-bottom: 0;
}

.help-item img {
    width: 100%;
    height: auto;
    display: block;
}

.help-content {
    padding: 1rem;
    position: relative;
}

.help-content h3 {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
    max-width: 20ch;
}

.help-content p {
    font-size: 0.9rem;
    line-height: 1.3;
    max-width: 26ch;
}

.help-content .check {
    position: absolute;
    bottom: 0;
    right: 0;
    display: grid;
    width: 40px;
    height: 30px;
    background: #000;
    text-align: center;
    border-top-left-radius: 8px;
}

.help .cta {
    justify-self: center;
}

/* Przewaga */
.advantages {
    --spacing: 1rem;
    padding: calc(var(--spacing) * 2) var(--spacing);
    display: grid;
    gap: calc(var(--spacing) * 2);
}

.advantages__intro h2 {
    font-weight: 400;
    font-size: 1.25rem;
    margin-bottom: var(--spacing);
    line-height: 1.4;
}

.advantages__intro h2 strong {
    display: block;
    font-size: 2rem;
    font-weight: 600;
}

.advantages__intro p {
    max-width: 60ch;
}

.advantages__list {
    display: grid;
}

.advantage {
    display: grid;
    grid-template-columns: auto 1fr 1fr;
    gap: 0.5rem 1rem;
    align-items: center;
    padding-block: 1.5rem;
}

.advantage+.advantage {
    border-top: 1px solid #333;
}

.advantage__number {
    font-size: 3rem;
    font-weight: 200;
    color: #fff;
    font-family: var(--font-accent);
}

.advantage h3 {
    font-size: 1.5rem;
    line-height: 1;
    font-weight: 500;
    margin: 0;
    padding: 0 4rem;
    text-wrap-style: balance;
}

.advantage :nth-child(3) {
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.advantages__footer {
    padding-top: calc(var(--spacing) * 2);
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    font-size: 1.5rem;
    align-items: center;
}

.advantages__footer h3 {
    font-size: 2rem;
    line-height: 1.2;
    font-weight: 600;
}

.advantages__footer strong {
    font-weight: 700;
}

.advantage-table {
    color: #191919;
    padding-bottom: 4rem;
}

.advantage__title {
    font-size: 1.5rem;
    line-height: 1;
    font-weight: 600;
    max-width: 12ch;
    text-align: left;
}

.advantage__grid {
    display: grid;
    grid-template-columns: minmax(250px, 2fr) repeat(3, minmax(120px, 1fr));
}

.advantage__header {
    display: grid;
    align-items: center;
    padding: 1rem;
    font-weight: 500;
    text-align: center;
}

.advantage__header--brand {
    display: flex;
    justify-content: center;
    align-items: center;
}

.advantage__header--brand img {
    height: 40px;
    width: auto;
}

.advantage__label,
.advantage__cell {
    padding: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.advantage__label {
    justify-content: flex-start;
    font-size: 0.95rem;
}

.advantage__cell--highlight {
    background-color: rgba(0, 128, 0, 0.08);
}

.advantage__icon {
    font-size: 1.2rem;
    line-height: 1;
    border: 1px solid currentColor;
    border-radius: 5px;
    padding: 2px;
    height: 25px;
    width: 25px;
    display: grid;
    align-items: center;
    justify-content: center;
}

.advantage__icon--yes {
    color: #28a06d;
}

.advantage__icon--no {
    color: #999;
}

@media screen and (max-width: 750px) {
    .advantage {
        grid-template-columns: 1fr;
        border-top: none !important;
    }

    .advantage__number {
        line-height: 1;
    }

    .advantage h3 {
        padding-inline: 0;
        padding-block: 0.5rem;
        border-bottom: 1px solid #333;
    }

    .advantages__footer {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .advantage__grid {
        grid-template-columns: 1fr 1fr;
    }

    .advantage__header:nth-child(n+3),
    .advantage__cell:nth-child(4n+3),
    .advantage__cell:nth-child(4n+4) {
        display: none;
    }

    .advantage__header--brand {
        justify-content: flex-end;
    }
}

/* //Przewaga */

/* Jak działamy */
.process {
    display: grid;
    position: relative;
}

.process .content {
    gap: 2rem;
    background-color: #fff;
    padding: 2rem 1.5rem 9rem 1.5rem;
    border-radius: var(--radius);
}

.process::after {
    content: '';
    background: radial-gradient(circle, rgba(255, 0, 0, 0.4) 0%, rgba(255, 0, 0, 0) 40%);
    position: absolute;
    top: -39%;
    left: 27%;
    width: 100vw;
    height: 150%;
    z-index: -1;
}

.process-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
    gap: 1rem 4rem;
    padding-bottom: 3rem;
}

#process-bg {
    position: absolute;
    top: 30px;
    bottom: 0;
    left: 50%;
    transform: translateX(-280px);
    width: 300px;
    height: calc(100% - 30px);
    display: block;
    pointer-events: none;
}

.process h2 {
    font-size: 1.2rem;
    font-weight: normal;
    line-height: 1.2;
}

.process h2 strong {
    font-size: 2rem;
    font-weight: 600;
}

.process p {
    margin-top: 1rem;
}

.step {
    position: relative;
    display: grid;
    gap: 0.75rem;
    z-index: 1;
}

.step h3 {
    font-size: 1.5rem;
    line-height: 1;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    max-width: 16ch
}

.step h3 img {
    height: 40px;
}

.step p {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-top: 0;
    max-width: 51ch;
    text-wrap-style: balance;
}

.step.first {
    margin-top: 2rem;
}

.step.first h3 {
    max-width: 40ch;
}

.step:nth-child(3),
.step:nth-child(7) {
    text-align: right;
    margin-left: auto;
}

.step:nth-child(3) h3,
.step:nth-child(7) h3 {
    margin-left: auto;
}

.step:nth-child(3) svg,
.step:nth-child(7) svg {
    position: absolute;
    left: calc(100% + 17px);
    top: 0px;
    z-index: 1;
}

.step:nth-child(6) svg {
    position: absolute;
    right: calc(100% + 17px);
    top: 0px;
    z-index: 1;
}

.process .cta {
    justify-self: center;
    z-index: 1;
    position: relative;
}

@media screen and (max-width: 650px) {
    .process-grid {
        grid-template-columns: 1fr;
    }

    .step {
        text-align: left !important;
        margin-left: 0 !important;
    }

    .step h3 {
        margin-left: 0 !important;
    }

    .step:nth-child(6) h3 {
        flex-direction: row-reverse;
    }



    .step:nth-child(3) svg,
    .step:nth-child(6) svg,
    .step:nth-child(7) svg {
        position: static;
        margin-inline: auto;
        margin-top: 1rem;
    }
}

/* //Jak działamy */

/* Transport drogowy */
.transport {
    margin-top: -80px;
    z-index: 1;
    overflow: hidden;
}

.subhero-grid {
    --_card-padding_x: 80px;
    --_card-padding_y: 60px;
    display: grid;
    grid-template-columns: 3fr var(--_card-padding_x) 5fr;
}

.transport-text {
    grid-column: 1 / 3;
    grid-row: 1 / 1;
    padding-top: 150px;
    padding-right: 15px;
}

.transport-text h3 {
    font-size: 1.2rem;
    line-height: 1.2;
    font-weight: normal;
}

.transport-text h3 strong {
    font-size: 2rem;
    font-weight: 600;
}

.transport-text p {
    margin-top: 1rem;
    max-width: 37ch;
}

.img-card {
    position: relative;
    padding: var(--_card-padding_y) var(--_card-padding_x);
    padding-right: 0;
    grid-column: 2 / 4;
    grid-row: 1 / 1;
    z-index: -1;
    align-self: center;
}

.img-card .bg {
    position: absolute;
    left: 0;
    right: -100vw;
    top: 0;
    bottom: 0;
    background-color: var(--bg);
    z-index: -1;
}

.transport-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem 4rem;
    margin-top: 2rem;
}

.transport-grid .left,
.transport-grid .right {
    display: grid;
    gap: 2rem;
}

.transport-grid .item {
    display: grid;
}

.transport-grid .cta {
    align-self: flex-end;
    justify-self: flex-start;
}

.transport-grid .feature .content {
    background: none;
    padding-bottom: 0;
}

.transport-sea .feature-text,
.transport-air .feature-text {
    color: #fff;
}

.transport-grid .feature-text {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.1) 20%, rgba(0, 0, 0, 0.1) 80%, rgba(0, 0, 0, 0) 100%);
    padding: 0.75rem 2rem;
}

.transport-grid .feature img,
.transport-grid .feature video {
    height: 260px;
    object-fit: cover;
}

.transport-grid .feature-label {
    font-size: 1.75rem;
    line-height: 1.2;
    font-weight: 600;
    padding: 0;
}

.transport-grid .feature-description {
    font-size: 1.2rem;
    position: static;
    opacity: 1;
    padding: 0;
    background: none;
}

@media screen and (max-width: 750px) {
    .subhero-grid {
        --_card-padding_x: 40px;
        --_card-padding_y: 30px;
        grid-template-columns: 1fr;
    }

    .transport-text {
        grid-column: auto;
        grid-row: auto;
    }

    .img-card {
        grid-column: auto;
        grid-row: auto;
        padding-right: var(--_card-padding_x);
    }

    .transport-grid {
        grid-template-columns: 1fr;
    }

    .transport-grid .cta {
        justify-self: center;
    }
}

/* //Transport drogowy */

/* Mapa */
.map {
    margin-top: 3rem;
    margin-bottom: 3rem;
}

.map .content {
    position: relative;
}

.map img {
    min-height: 380px;
    width: 100%;
    object-fit: cover;
    border-radius: var(--radius);
}

.map .quote-card {
    position: absolute;
    bottom: 2rem;
    left: -2rem;
}

@media screen and (max-width: 750px) {
    .map .quote-card {
        position: static;
        margin-top: -2rem;
        max-width: unset;
    }
}

/* //Mapa */

/* Mówią o nas */
.testimonials {
    background: #fff;
    padding: 3rem 1rem 5rem 1rem;
}

.testimonials h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.testimonials-container {
    position: relative;
    overflow: hidden;
}

.testimonials-list {
    display: flex;
    gap: 2rem;
    scroll-behavior: smooth;
    overflow-x: auto;
    scrollbar-width: none;
}

.testimonials-list::-webkit-scrollbar {
    display: none;
}

.testimonial {
    display: grid;
    flex: 0 0 300px;
    border-radius: 8px;
    font-size: 0.8rem;
    line-height: 1.3;
}

.testimonial .author {
    color: #666;
}

.testimonial blockquote.text {
    font-style: normal;
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    position: relative;
    margin: 2rem 0;
    padding-left: 1.5em;
    align-self: center;
}

.testimonial blockquote.text::before {
    content: "“";
    font-size: 3rem;
    color: #ccc;
    position: absolute;
    left: 0;
    top: -0.2em;
    line-height: 1;
    font-family: serif;
}

.testimonial .logo img {
    filter: grayscale(1);
    transition: filter 250ms ease;
    height: 40px;
    margin-bottom: 1rem;
}

.testimonial:hover .logo img {
    filter: none;
}

.testimonials-buttons {
    display: flex;
    justify-content: center;
    margin-top: 1.5rem;
    gap: 1rem;
}

.testimonials-buttons button {
    border: 1px solid #000;
    border-radius: 1rem;
    width: 50px;
    height: 40px;
    transition: all 0.3s ease;
    opacity: 0.4;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.testimonials-buttons button.active {
    opacity: 1;
    cursor: pointer;
}

.testimonials-buttons button.active:hover {
    background: #222;
    color: #fff;
    fill: #fff;
}

.testimonials-buttons .prev svg {
    transform: scaleX(-1);
}

.testimonials-container:not(.scroll-end)::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 120px;
    height: 100%;
    background: linear-gradient(to right, transparent, white);
    pointer-events: none;
}

.testimonials-container.scrolled::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 80px;
    height: 100%;
    background: linear-gradient(to left, transparent, white);
    pointer-events: none;
}

/* //Mówią o nas */

/* Stopka */
.footer {
    color: #fff;
    background-color: #000;
    position: relative;
    padding-bottom: 5rem;
    padding-inline: 2rem;
}

.footer .cut-left-1 {
    position: absolute;
    left: 40%;
    right: 0;
    top: -40px;
    height: 50px;
    z-index: 2;
    background-color: inherit;
}

.footer h2 {
    font-size: 2rem;
    font-weight: bold;
    padding: 2rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 3fr 4fr 6fr;
    gap: 2rem;
}

.footer address {
    background-color: #262626;
    padding: 0.75rem;
    border-radius: 8px;
}

.footer h3 {
    font-size: 1.5rem;
    font-weight: bold;
}

.newsletter-col .title {
    font-size: 1.5rem;
    font-weight: bold;
}

.newsletter-info {
    font-size: 0.8rem;
}

.footer input[type="email"],
.footer input[type="text"],
.footer textarea {
    padding: 1rem;
    background: #262626;
    color: inherit;
    font-size: 1rem;
    border-radius: 8px;
    border: none;
    width: 100%;
}

.footer-nav {
    fill: #fff;
}

.footer-nav a {
    display: flex;
    gap: 0.25rem;
    align-items: center;
}

.footer-nav svg {
    height: 14px;
    margin-top: 2px;
}

.newsletter-form input[type="email"] {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

.newsletter-form .cta {
    margin-left: auto;
}

.contact-form .row+.row {
    margin-top: 0.75rem;
}

.contact-form .cta {
    margin-left: auto;
    margin-top: 0.75rem;
}

.social {
    display: flex;
    gap: 0.75rem;
}

.social .svg-icon {
    fill: #fff;
}

.social .svg-icon svg {
    width: 25px;
}

.copyright {
    margin-top: 3rem;
    text-align: center;
}

.widget-container {
    display: flex;
    justify-content: center;
}

@media screen and (max-width: 1000px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer h2 {
        display: none;
    }

    .footer-grid> :first-child {
        order: 3;
    }
}

/* //Stopka */


.back-to-top {
    display: none;
}

body.scrolled .back-to-top {
    display: flex;
    position: fixed;
    right: 2rem;
    bottom: 2rem;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    background-color: var(--bg);
    box-shadow: 0 0 5px 0 var(--bg),
        0 0 10px 0 var(--bg);
    border: none;
    cursor: pointer;
    transition: 250ms ease-in-out;
    border-radius: 50%;
    z-index: 999;
}

.back-to-top:hover {
    background-color: var(--clr-bg-gray-400);
}

.back-to-top svg {
    width: 20px;
    fill: var(--clr-primary);
}

/* LP zapytanie */
.quote-full {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.quote-full .form-container {
    border-radius: var(--radius);
    padding: 2rem;
    margin-inline: auto;
    background-color: #fff;
}

.quote-full-form {
    color: #fff;
}

.quote-full h2 {
    font-size: 1.8rem;
    margin: 1rem 0;
    font-weight: 600;
}

.quote-full-form input[type="email"],
.quote-full-form input[type="text"],
.quote-full-form textarea,
.quote-full-form select {
    padding: 1rem;
    background: #262626;
    color: inherit;
    font-size: 1rem;
    border-radius: 8px;
    border: none;
    width: 100%;
}

.quote-full-form .row+.row {
    margin-top: 0.75rem;
}

.quote-full-form .checkbox-row {
    color: var(--clr-text-default);
}

.quote-full-form .checkbox-row div {
    display: flex;
    flex-direction: row-reverse;
    gap: 0.5rem;
    align-items: center;
    justify-content: flex-end;
}

.quote-full-form .checkbox-row input[type="checkbox"] {
    margin: 0;
    width: 24px;
    height: 24px;
    accent-color: var(--accent);
    cursor: pointer;
    border-radius: 4px;
}

.quote-full-form .cta {
    margin-inline: auto;
    margin-top: 0.75rem;
    align-self: center;
    padding: 1.5rem 4rem;
}

.quote-full .alert {
    margin-bottom: 1rem;
}

.quote-full .form-errors {
    color: var(--accent);
}

/* /LP zapytanie */

.feature-full {
    margin-block: 6rem 5rem;
}

.feature-full .content {
    padding: 3rem;
    border-radius: var(--radius);
}

/* Kariera */
.work-offers-title {
    display: flex;
    gap: 3rem;
    align-items: center;
    padding: 2rem 4rem;
}

.work-offers-title img {
    filter: opacity(0.5);
}

.work-offers-title h2 {
    font-size: clamp(1rem, 2vw, 1.4rem);
    line-height: 1.2;
    font-weight: 600;
}

.work-offers .badge {
    padding: 0.25em 0.5em;
    border-radius: 0.5em;
    background-color: #e5f4ff;
    color: #111;
    text-align: center;
}

.work-offers .job-details {
    display: grid;
    grid-template-columns: min(100vw, 150px) auto;
    gap: 2rem;
    margin-bottom: 1rem;
}

.work-offers .content {
    min-height: 80vh;
}

@media screen and (max-width: 500px) {
    .work-offers-title {
        display: block;
        padding: 1rem 2rem;
    }

    .work-offers-title img {
        margin-bottom: 0.75rem;
    }
}

/* /Kariera */