/*
Theme Name: Szop Pracz
Theme URI: https://szopbierun.pl
Author: MaviQ.PL - Marcin Mehl
Description: Motyw strony Szop Pracz – Pranie Tapicerki
Version: 1.0
*/


/* =========================
   RESET
========================= */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: #111;
    background: #fff;
}

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

button,
input,
textarea {
    font: inherit;
}

.container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}


/* =========================
   HEADER
========================= */

.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo-image {
    display: block;
    width: auto;
    height: 48px;
    max-width: 175px;
    object-fit: contain;
}

.site-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;

    background: rgba(0, 0, 0, 0.35);
    border-bottom: 1px solid rgba(255,255,255,0.18);
}

.header-inner {
    min-height: 76px;

    display: flex;
    align-items: center;
    gap: 30px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 9px;

    margin-right: auto;

    color: #fff;
}

.logo-mark {
    width: 42px;
    height: 42px;

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

    border: 2px solid #fff;
    border-radius: 50%;

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

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-text strong {
    font-size: 15px;
    line-height: 1;
}

.logo-text span {
    margin-top: 4px;

    color: #ff7300;

    font-size: 8px;
    font-weight: 800;
    letter-spacing: 1px;
}

.main-nav {
    margin-left: auto;
}

.main-menu {
    display: flex;
    align-items: center;
    gap: 18px;

    margin: 0;
    padding: 0;

    list-style: none;
}

.main-menu li {
    margin: 0;
    padding: 0;

    list-style: none;
}

.main-menu a {
    display: block;

    color: #fff;

    font-size: 10px;
    font-weight: 800;
    line-height: 1;

    text-decoration: none;

    white-space: nowrap;

    transition: color 0.2s ease;
}

.main-menu a:hover {
    color: #ff7300;
}

.main-nav a {
    color: #fff;

    font-size: 10px;
    font-weight: 800;
}

.main-nav a:hover {
    color: #ff7300;
}

.header-phone {
    padding: 10px 14px;

    border: 1px solid #ff7300;
    border-radius: 4px;

    color: #fff;

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

    white-space: nowrap;
}

.header-phone:hover {
    background: #ff7300;
}

.mobile-menu-button {
    display: none;

    padding: 5px;

    border: 0;
    background: none;

    color: #fff;
    font-size: 26px;
}


/* =========================
   HERO
========================= */

.hero {
    position: relative;

    min-height: 500px;

    display: flex;
    align-items: center;

    background-image:
        /* Zaciemnienie od lewej */
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.93) 0%,
            rgba(0, 0, 0, 0.85) 22%,
            rgba(0, 0, 0, 0.68) 42%,
            rgba(0, 0, 0, 0.38) 65%,
            rgba(0, 0, 0, 0.12) 100%
        ),

        /* Przyciemnienie dołu */
        linear-gradient(
            0deg,
            rgba(0, 0, 0, 0.62) 0%,
            rgba(0, 0, 0, 0.30) 35%,
            rgba(0, 0, 0, 0.05) 70%,
            rgba(0, 0, 0, 0) 100%
        ),
        url("images/szop-pranie.jpg");

    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
}

.hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,0.88) 0%,
            rgba(0,0,0,0.70) 45%,
            rgba(0,0,0,0.25) 100%
        );
}

.hero-content {
    position: relative;
    z-index: 2;

    padding-top: 75px;
}

.hero-text {
    max-width: 750px;
}

.hero h1 {
    margin: 0;

    color: #fff;

    font-size: clamp(42px, 5vw, 66px);
    line-height: .95;
    font-weight: 900;
    letter-spacing: -2px;
}

.hero h1 span {
    display: block;
    color: #ff7300;
}

.hero-location {
    margin: 15px 0 0;

    color: #fff;

    font-size: 15px;
}


.hero-services {
    margin: 13px 0 0;

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

    font-size: 14px;
    line-height: 1.7;
    font-weight: 700;
}

.hero-buttons {
    display: flex;
    gap: 10px;

    margin-top: 22px;
}

.button {
    min-height: 43px;

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

    padding: 0 18px;

    border-radius: 4px;

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

    transition: .2s ease;
}

.button-primary {
    background: #ff7300;
    color: #fff;
}

.button-primary:hover {
    background: #ff8a2a;
}

.button-outline {
    border: 1px solid rgba(255,255,255,.75);
    color: #fff;
}

.button-outline:hover {
    background: #fff;
    color: #111;
}

.hero-features {
    display: flex;

    margin-top: 35px;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 9px;

    padding-right: 20px;
    margin-right: 20px;

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

.hero-feature:last-child {
    border-right: 0;
}

.hero-feature > span {
    width: 51px;
    height: 51px;

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

    border: 1px solid rgba(255,255,255,.55);
    border-radius: 50%;

    color: #ff7300;
    font-size: 33px;
}

.hero-feature strong,
.hero-feature small {
    display: block;
}

.hero-feature strong {
    color: #fff;
    font-size: 14px;
}

.hero-feature small {
    margin-top: 3px;
    color: rgba(255,255,255,.65);
    font-size: 14px;
}


/* =========================
   SECTIONS
========================= */

.services-section,
.realizations-section,
.why-section,
.reviews-section {
    padding: 38px 0;
}

.section-heading {
    margin-bottom: 22px;
}

.section-heading h2 {
    margin: 0;

    font-size: 21px;
    line-height: 1.1;
    font-weight: 900;
}

.section-heading-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.section-link {
    color: #ff7300;

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


/* =========================
   SERVICES
========================= */

.services-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
}

.service-card {
    min-height: 120px;

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

    border: 1px solid #e6e6e6;
    border-radius: 5px;

    text-align: center;

    transition: .2s ease;
}

.service-card:hover {
    border-color: #ff7300;
    transform: translateY(-3px);
}

.service-icon {
    height: 45px;

    display: flex;
    align-items: center;

    font-size: 30px;
}

.service-card h3 {
    margin: 7px 0 0;

    font-size: 9px;
    line-height: 1.35;
    font-weight: 900;
}

.services-grid .service-card h3 {
    font-size: 13px;
    line-height: 1.25;
    font-weight: 900;
    margin-top: 8px;
}

/* =========================
   REALIZATIONS
========================= */

.realizations-section {
    padding-top: 0;
}

.realizations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.before-after {
    display: grid;
    grid-template-columns: 1fr 1fr;

    height: 130px;

    overflow: hidden;

    border-radius: 5px;
}

.ba-image {
    position: relative;

    background-position: center;
    background-size: cover;
}

.ba-image span {
    position: absolute;
    top: 8px;
    left: 8px;

    padding: 4px 7px;

    border-radius: 3px;

    color: #fff;

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

.ba-image.before1 {
    background-image: url("images/szop-ofertaprzed-1.png");
}

.ba-image.after1 {
    background-image: url("images/szop-ofertapo-1.png");
}

.ba-image.before2 {
    background-image: url("images/szop-ofertaprzed-2.png");
}

.ba-image.after2 {
    background-image: url("images/szop-ofertapo-2.png");
}

.ba-image.before3 {
    background-image: url("images/szop-ofertaprzed-3.png");
}

.ba-image.after3 {
    background-image: url("images/szop-ofertapo-3.png");
}

.ba-image.before span {
    background: #111;
}

.ba-image.after span {
    background: #35a947;
}

/* =========================================
   REALIZACJE - WIĘKSZE
========================================= */

.realizations-section {
    padding: 55px 0 60px;
}

.realizations-section .section-heading {
    margin-bottom: 22px;
}

.realizations-section .section-heading h2 {
    font-size: 28px;
    line-height: 1.15;
}

.realizations-section .section-link {
    font-size: 13px;
    font-weight: 900;
}


/* KARTY */

.realizations-grid {
    gap: 16px;
}

.before-after {
    height: 185px;
    border-radius: 6px;
    overflow: hidden;
}


/* ZDJĘCIA */

.ba-image {
    position: relative;
    height: 100%;

    background-size: cover;
    background-position: center;
}


/* ETYKIETY PRZED / PO */

.ba-image span {
    position: absolute;

    top: 9px;
    left: 9px;

    padding: 5px 9px;

    border-radius: 4px;

    color: #fff;

    font-size: 11px;
    line-height: 1;
    font-weight: 900;

    letter-spacing: .3px;
}

.ba-image.before span {
    background: #111;
}

.ba-image.after span {
    background: #20b957;
}


/* =========================
   BUSINESS
========================= */

.business-section {
    padding: 42px 0 25px;

    background: #111;
    color: #fff;
}

.business-inner {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 45px;
    align-items: center;
}

.why-process-grid {
    grid-template-columns: 1fr;
    gap: 35px;
}

.business-content h2 {
    margin: 0;

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

.business-content h2 span {
    color: #ff7300;
}

.business-content p {
    color: #ddd;
    font-size: 12px;
}

.business-content ul {
    padding: 0;
    margin: 15px 0 20px;

    list-style: none;
}

.business-content li {
    position: relative;

    margin-bottom: 8px;
    padding-left: 17px;

    color: #ddd;

    font-size: 11px;
}

.business-content li::before {
    content: "✓";

    position: absolute;
    left: 0;

    color: #ff7300;
}

.business-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

.business-photo {
    height: 150px;

    border-radius: 4px;

    background-position: center;
    background-size: cover;
}

.photo-1 {
    background-image: url("https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?auto=format&fit=crop&w=600&q=80");
}

.photo-2 {
    background-image: url("https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=600&q=80");
}

.photo-3 {
    background-image: url("https://images.unsplash.com/photo-1556761175-b413da4baf72?auto=format&fit=crop&w=600&q=80");
}

.photo-4 {
    background-image: url("https://images.unsplash.com/photo-1543854589-fdd4a5a1fdd1?auto=format&fit=crop&w=600&q=80");
}

.business-benefits {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    margin-top: 30px;
    padding-top: 20px;

    border-top: 1px solid #333;
}

.business-benefits div {
    display: flex;
    align-items: center;
    gap: 8px;

    color: #bbb;

    font-size: 9px;
}

.business-benefits strong {
    color: #ff7300;
    font-size: 15px;
}


/* =========================
   WHY / PROCESS / REVIEWS
========================= */

.why-process-section {
    padding: 34px 0 38px;
    background: #fff;
}

.why-process-grid {
    display: grid;

    grid-template-columns:
        1fr
        1.75fr
        1.05fr;

    gap: 42px;

    align-items: start;
}


/* DLACZEGO MY */

.why-column h2,
.process-column h2,
.reviews-column h2 {
    margin: 0 0 18px;

    font-size: 20px;
    line-height: 1.1;
    font-weight: 900;
}

.check-list {
    padding: 0;
    margin: 0;

    list-style: none;
}

.check-list li {
    position: relative;

    margin-bottom: 12px;
    padding-left: 17px;

    font-size: 10px;
    line-height: 1.35;
}

.check-list li::before {
    content: "✓";

    position: absolute;
    left: 0;

    color: #ff7300;

    font-weight: 900;
}


/* JAK PRACUJEMY */

.process-grid {
    display: grid;

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

    gap: 12px;
}

.process-step {
    text-align: center;
}

.process-step > span {
    width: 44px;
    height: 44px;

    margin: 0 auto 9px;

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

    border: 1px solid #ddd;
    border-radius: 50%;

    color: #ff7300;

    font-size: 18px;
}

.process-step strong {
    display: block;

    font-size: 8px;
    line-height: 1.2;
}

.process-step small {
    display: block;

    margin-top: 5px;

    color: #777;

    font-size: 7px;
    line-height: 1.4;
}


/* OPINIE */

.reviews-column {
    min-width: 0;
}

.reviews-title {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 18px;
}

.reviews-title h2 {
    margin: 0;
}

.google-label {
    color: #4285f4;

    font-size: 15px;
    font-weight: 700;
}

.review-card {
    width: 100%;

    padding: 17px 18px;

    background: #fff;

    border: 1px solid #ddd;
    border-radius: 5px;

    box-shadow: 0 2px 8px rgba(0,0,0,.04);
}

.review-stars {
    color: #f5a623;

    font-size: 13px;
    letter-spacing: 2px;
}

.review-card p {
    margin: 10px 0;

    font-size: 9px;
    line-height: 1.5;
}

.review-card strong {
    font-size: 9px;
}

/* =========================
   REVIEWS
========================= */

.reviews-section {
    background: #f7f7f7;
}

.review-card {
    max-width: 500px;

    margin: 0 auto;
    padding: 22px;

    background: #fff;

    border: 1px solid #e5e5e5;
    border-radius: 5px;
}

.review-stars {
    color: #f5a623;
    letter-spacing: 2px;
}

.review-card p {
    margin: 12px 0;

    font-size: 11px;
    line-height: 1.6;
}

.review-card strong {
    font-size: 10px;
}


/* =========================
   CTA
========================= */

.cta-section {
    padding: 30px 0;

    background: #111;
    color: #fff;
}

.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.cta-inner h2 {
    margin: 0;

    font-size: 22px;
}

.cta-inner p {
    margin: 6px 0 0;

    color: #aaa;

    font-size: 10px;
}

.cta-buttons {
    display: flex;
    gap: 10px;
}


/* =========================
   MOBILE
========================= */

@media (max-width: 1000px) {

    .main-nav {
        display: none;
    }

    .mobile-menu-button {
        display: block;
    }

    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .business-inner {
        grid-template-columns: 1fr;
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .business-gallery {
        grid-template-columns: repeat(4, 1fr);
    }

}


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

@media (max-width: 700px) {

    .container {
        width: calc(100% - 28px);
    }

    .header-inner {
        min-height: 65px;
    }

    .logo-mark {
        width: 34px;
        height: 34px;
    }

    .logo-text strong {
        font-size: 12px;
    }

    .logo-text span {
        font-size: 7px;
    }

    .header-phone {
        display: none;
    }

    .why-process-grid {
    grid-template-columns: 1fr;
    gap: 30px;
}

.process-grid {
    grid-template-columns: repeat(2, 1fr);
}

.business-inner {
    grid-template-columns: 1fr;
}

.business-gallery {
    grid-template-columns: repeat(2, 1fr);
}

.business-photo {
    height: 125px;
}

.business-benefits {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}


    /* HERO */

    .hero {
        min-height: 650px;

        background-position: 65% center;
    }

    .hero-content {
        padding-top: 75px;
    }

    .hero-text {
        max-width: 100%;
    }

    .hero h1 {
        font-size: clamp(39px, 12vw, 54px);
    }

    .hero-location {
        font-size: 13px;
    }

    .hero-services {
        font-size: 10px;
    }

    .hero-buttons {
        flex-direction: column;

        max-width: 310px;
    }

    .button {
        width: 100%;
    }

    .hero-features {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 14px;

        margin-top: 30px;
    }

    .hero-feature {
        padding: 0;
        margin: 0;

        border: 0;
    }


    /* SECTIONS */

    .services-section,
    .realizations-section,
    .why-section,
    .reviews-section {
        padding: 30px 0;
    }

    .section-heading h2 {
        font-size: 18px;
    }

    .section-heading-row {
        align-items: flex-start;
        gap: 10px;
    }

    .section-link {
        font-size: 8px;
        white-space: nowrap;
    }


    /* SERVICES */

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .service-card {
        min-height: 105px;
    }


    /* REALIZATIONS */

    .realizations-grid {
        grid-template-columns: 1fr;
        gap: 9px;
    }

    .before-after {
        height: 145px;
    }



    
    /* =========================
   BUSINESS
========================= */

.business-section {
    padding: 35px 0 20px;

    background: #111;
    color: #fff;
}

.business-inner {
    display: grid;

    grid-template-columns: 280px 1fr;

    gap: 35px;

    align-items: center;
}

.business-content h2 {
    margin: 0;

    font-size: 25px;
    line-height: 1;

    font-weight: 900;
}

.business-content h2 span {
    color: #ff7300;
}

.business-content p {
    margin: 12px 0 10px;

    color: #ddd;

    font-size: 10px;
}

.business-content ul {
    padding: 0;
    margin: 0 0 18px;

    list-style: none;
}

.business-content li {
    position: relative;

    margin-bottom: 7px;
    padding-left: 15px;

    color: #ddd;

    font-size: 9px;
}

.business-content li::before {
    content: "✓";

    position: absolute;
    left: 0;

    color: #ff7300;
}

.business-content .button {
    min-height: 38px;

    font-size: 9px;
}


/* GALERIA */

.business-gallery {
    display: grid;

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

    gap: 8px;
}

.business-photo {
    height: 155px;

    border-radius: 4px;

    background-position: center;
    background-size: cover;
}


/* DOLNY PASEK */

.business-benefits {
    display: grid;

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

    gap: 20px;

    margin-top: 22px;
    padding-top: 17px;

    border-top: 1px solid #333;
}

.business-benefits div {
    display: flex;
    align-items: center;
    gap: 8px;

    color: #bbb;

    font-size: 9px;
}

.business-benefits strong {
    color: #ff7300;

    font-size: 14px;
}


    /* PROCESS */

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px 10px;
    }


    /* CTA */

    .cta-inner {
        flex-direction: column;
        align-items: stretch;

        text-align: center;
    }

    .cta-inner h2 {
        font-size: 19px;
    }

    .cta-buttons {
        flex-direction: column;
    }

}


/* =========================
   SMALL PHONES
========================= */

@media (max-width: 420px) {

    .hero {
        min-height: 680px;
    }

    .hero h1 {
        font-size: 40px;
    }

    .hero-features {
        grid-template-columns: 1fr;
    }

    .hero-feature {
        gap: 8px;
    }

    .section-heading-row {
        flex-direction: column;
    }

    .section-link {
        white-space: normal;
    }

}

/* =========================
   FOOTER
========================= */

.cta-section {
    padding: 25px 0;

    background: #111;
    color: #fff;
}

.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;
}

.cta-content h2 {
    margin: 0;

    font-size: 21px;
    line-height: 1.1;
    font-weight: 900;
}

.cta-content h2 span {
    color: #ff7300;
}

.cta-content p {
    margin: 7px 0 0;

    color: #ccc;

    font-size: 10px;
}

.cta-buttons {
    display: flex;
    gap: 10px;
}

.cta-buttons .button {
    min-width: 165px;
}


/* =========================
   FOOTER MAIN
========================= */

.site-footer {
    background: #0d0d0d;
    color: #fff;
}

.footer-main {
    display: grid;

    grid-template-columns:
        1.3fr
        1fr
        1fr
        .8fr;

    gap: 50px;

    padding-top: 30px;
    padding-bottom: 25px;
}


/* LOGO */

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo-mark {
    width: 42px;
    height: 42px;

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

    border: 2px solid #fff;
    border-radius: 50%;

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

.footer-logo-text {
    display: flex;
    flex-direction: column;
}

.footer-logo-text strong {
    font-size: 16px;
}

.footer-logo-text span {
    margin-top: 3px;

    color: #ff7300;

    font-size: 8px;
    font-weight: 900;
    letter-spacing: 1px;
}

.footer-brand p {
    margin: 12px 0 0;

    color: #aaa;

    font-size: 9px;
}


/* KOLUMNY */

.footer-column h3 {
    margin: 0 0 12px;

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

.footer-column p,
.footer-column a,
.footer-column span {
    display: block;

    margin: 0 0 8px;

    color: #aaa;

    font-size: 9px;
    line-height: 1.5;
}

.footer-column a:hover {
    color: #ff7300;
}


/* SOCIAL */

.social-links {
    display: flex;
    gap: 8px;
}

.social-links a {
    width: 32px;
    height: 32px;

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

    margin: 0;

    border-radius: 5px;

    background: #222;

    color: #fff;

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

.social-links a:hover {
    background: #ff7300;
}


/* =========================
   FOOTER MENU
========================= */

.footer-menu {
    border-top: 1px solid #222;
    border-bottom: 1px solid #222;

    padding: 13px 0;
}

.footer-nav {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 25px;

    margin: 0;
    padding: 0;

    list-style: none;
}

.footer-nav li {
    margin: 0;
    padding: 0;

    list-style: none;
}

.footer-nav a {
    color: #aaa;

    font-size: 8px;
    font-weight: 700;

    text-transform: uppercase;
}

.footer-nav a:hover {
    color: #ff7300;
}


/* =========================
   FOOTER BOTTOM
========================= */

.footer-bottom {
    padding: 12px 0;

    background: #0a0a0a;
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 35px;

    color: #777;

    font-size: 8px;
}

.footer-bottom a:hover {
    color: #ff7300;
}


/* =========================
   FOOTER MOBILE
========================= */

@media (max-width: 700px) {

    .cta-inner {
        flex-direction: column;
        align-items: stretch;

        text-align: center;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .button {
        width: 100%;
    }


    .footer-main {
        grid-template-columns: 1fr 1fr;

        gap: 30px 20px;

        padding-top: 30px;
    }


    .footer-brand {
        grid-column: 1 / -1;
    }


    .footer-nav {
        flex-wrap: wrap;

        gap: 12px 18px;
    }


    .footer-bottom-inner {
        flex-direction: column;

        gap: 8px;

        text-align: center;
    }

}


/* =========================================
   IKONY - CO PIERZEMY
========================================= */

.service-icon {
    width: 100%;
    height: 85px;

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

    margin-bottom: 12px;
}

.service-icon img {
    display: block;

    width: auto;
    height: 75px;

    max-width: 110px;

    object-fit: contain;
}



/* =========================================
   FONTY STRONY W JEDNYM
========================================= */

/* OGÓLNY TEKST */
body {
    font-size: 17px;
}

/* MENU GÓRNE */
.main-menu a {
    font-size: 12px;
    font-weight: 800;
}


/* =========================================
   DLACZEGO MY / JAK PRACUJEMY / OPINIE
========================================= */

.why-column h2,
.process-column h2,
.reviews-column h2 {
    font-size: 28px;
    line-height: 1.15;
}

.check-list li {
    font-size: 16px;
    line-height: 1.55;
    margin-bottom: 14px;
}


/* KROKI */

.process-step > span {
    width: 50px;
    height: 50px;
    font-size: 20px;
}

.process-step strong {
    font-size: 13px;
}

.process-step small {
    font-size: 12px;
    line-height: 1.5;
}


/* OPINIA */

.google-label {
    font-size: 18px;
}

.review-stars {
    font-size: 18px;
}

.review-card p {
    font-size: 15px;
    line-height: 1.6;
}

.review-card strong {
    font-size: 13px;
}


/* =========================================
   PRANIE DLA FIRM
========================================= */

.business-content h2 {
    font-size: 30px;
}

.business-content p {
    font-size: 16px;
    line-height: 1.55;
}

.business-content li {
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 9px;
}

.business-benefits div {
    font-size: 14px;
}


/* =========================================
   CTA
========================================= */

.cta-content h2 {
    font-size: 30px;
}

.cta-content p {
    font-size: 16px;
}


/* =========================================
   FOOTER
========================================= */

.footer-logo-text strong {
    font-size: 18px;
}

.footer-logo-text span {
    font-size: 10px;
}

.footer-brand p {
    font-size: 14px;
}

.footer-column h3 {
    font-size: 14px;
}

.footer-column p,
.footer-column a,
.footer-column span {
    font-size: 14px;
    line-height: 1.6;
}

.footer-nav a {
    font-size: 13px;
}

.footer-bottom-inner {
    font-size: 11px;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 700px) {

    body {
        font-size: 16px;
    }

.services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.service-icon {
    height: 80px;
}

.service-icon img {
    height: 65px;
    max-width: 95px;
}

    .why-column h2,
    .process-column h2,
    .reviews-column h2 {
        font-size: 25px;
    }

    .check-list li {
        font-size: 15px;
    }

    .process-step strong {
        font-size: 13px;
    }

    .process-step small {
        font-size: 11px;
    }

    .review-card p {
        font-size: 14px;
    }

    .business-content h2 {
        font-size: 27px;
    }

    .business-content p {
        font-size: 15px;
    }

    .business-content li {
        font-size: 14px;
    }

    .business-benefits div {
        font-size: 13px;
    }

    .cta-content h2 {
        font-size: 25px;
    }

    .cta-content p {
        font-size: 15px;
    }

    .footer-column p,
    .footer-column a,
    .footer-column span {
        font-size: 13px;
    }

    .footer-nav a {
        font-size: 12px;
    }

}

/* =========================================================
   ZAUFALI NAM
========================================================= */

.trusted-section {
    padding: 55px 0 60px;
    background: #fff;
    border-top: 1px solid #eeeeee;
    border-bottom: 1px solid #eeeeee;
}

.trusted-heading {
    text-align: center;
    margin-bottom: 38px;
}

.trusted-heading span {
    display: block;

    margin-bottom: 7px;

    color: #ff7300;

    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1.5px;
}

.trusted-heading h2 {
    margin: 0 0 8px;

    color: #111;

    font-size: 30px;
    line-height: 1.15;
    font-weight: 900;
}

.trusted-heading p {
    margin: 0;

    color: #666;

    font-size: 14px;
}


/* LOGOTYPY */

.trusted-logos {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    align-items: center;

    gap: 20px;
}

.trusted-logo {
    height: 85px;

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

    padding: 10px 18px;

    box-sizing: border-box;

    transition: transform .2s ease;
}

.trusted-logo img {
    display: block;

    max-width: 100%;
    max-height: 120px;

    width: auto;
    height: auto;

    object-fit: contain;

    opacity: 1;

    transition: transform .25s ease;
}

.trusted-logo:hover img {
    transform: scale(1.06);
}


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

@media (max-width: 800px) {

    .trusted-section {
        padding: 45px 0;
    }

    .trusted-heading {
        margin-bottom: 25px;
    }

    .trusted-heading h2 {
        font-size: 26px;
    }

    .trusted-logos {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    .trusted-logo {
        height: 75px;
        padding: 8px;
    }

    .trusted-logo img {
        max-height: 48px;
    }

}


@media (max-width: 500px) {

    .trusted-logos {
        grid-template-columns: repeat(2, 1fr);
        gap: 5px;
    }

    .trusted-logo {
        height: 80px;
    }

}


/* =========================================================
   STRONA - NASZA OFERTA
========================================================= */


.oferta-page {
    background: #fff;
    color: #111;
}

.oferta-page .container {
    width: min(1180px, calc(100% - 60px));
    margin: 0 auto;
}


/* =========================================================
   INTRO
========================================================= */

.oferta-intro {
    padding: 105px 0 25px;
    background: #fff;
}

.oferta-intro h1 {
    margin: 0 0 12px;

    font-size: 38px;
    line-height: 1.1;
    font-weight: 900;
    letter-spacing: -0.5px;
}

.oferta-intro p {
    margin: 0;

    font-size: 15px;
    line-height: 1.6;
    color: #555;
}


/* =========================================================
   GŁÓWNA CZĘŚĆ OFERTY
========================================================= */

.oferta-main {
    padding: 20px 0 65px;
    background: #fff;
}

.oferta-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 390px;
    gap: 55px;
    align-items: start;
}


/* =========================================================
   LISTA USŁUG
========================================================= */

.oferta-list {
    border: 1px solid #dedede;
    border-radius: 4px;
    background: #fff;
    overflow: hidden;
}

.oferta-item {
    min-height: 82px;
    box-sizing: border-box;

    display: flex;
    align-items: center;

    gap: 20px;
    padding: 16px 25px;

    color: #111;
    text-decoration: none;

    border-bottom: 1px solid #e4e4e4;

    transition:
        background .2s ease,
        padding-left .2s ease;
}

.oferta-item:last-child {
    border-bottom: none;
}

.oferta-item:hover {
    background: #fafafa;
    padding-left: 30px;
}


/* IKONA */

.oferta-icon {
    width: 48px;
    min-width: 48px;
    height: 48px;

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

    font-size: 37px;
    line-height: 1;
}


/* TEKST */

.oferta-item h2 {
    margin: 0 0 5px;

    font-size: 16px;
    line-height: 1.25;
    font-weight: 900;
}

.oferta-item p {
    margin: 0;

    font-size: 14px;
    line-height: 1.5;

    color: #666;
}


/* =========================================================
   KARTA PO PRAWEJ
========================================================= */

.oferta-contact-card {
    position: relative;
    min-height: 470px;

    border-radius: 6px;
    overflow: hidden;

    background-image: url("images/szop-oferta.jpg");
    background-size: cover;
    background-position: center;

    box-shadow: 0 12px 30px rgba(0,0,0,.15);
}


/* ZDJĘCIE */

.oferta-card-image {
    display: none;
}


/* CZĘŚĆ KONTAKTOWA */

.oferta-card-content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;

    z-index: 2;

    padding: 70px 22px 22px;

    color: #fff;

    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.15) 15%,
        rgba(0, 0, 0, 0.82) 45%,
        rgba(0, 0, 0, 0.97) 100%
    );

    border-radius: 0;
}

.oferta-card-content h2 {
    margin: 0 0 7px;

    font-size: 20px;
    line-height: 1.2;
    font-weight: 900;
}

.oferta-card-content p {
    margin: 0 0 17px;

    font-size: 14px;
    line-height: 1.4;

    color: #ddd;
}


/* =========================================================
   PRZYCISKI KARTY
========================================================= */

.oferta-button {
    width: 100%;
    min-height: 44px;

    box-sizing: border-box;

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

    border-radius: 4px;

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

    text-decoration: none;

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

.oferta-button + .oferta-button {
    margin-top: 9px;
}

.oferta-button-orange {
    background: #ff7300;
    color: #fff;
    border: 1px solid #ff7300;
}

.oferta-button-orange:hover {
    background: #e96600;
    color: #fff;
}

.oferta-button-dark {
    background: transparent;
    color: #fff;

    border: 1px solid #777;
}

.oferta-button-dark:hover {
    border-color: #ff7300;
    color: #ff7300;
}


/* =========================================================
   PASEK ZALET
========================================================= */

.oferta-benefits {
    padding: 28px 0;

    background: #fff;

    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.benefit-item {
    min-height: 58px;

    display: flex;
    align-items: center;

    gap: 14px;

    padding: 5px 28px;

    border-right: 1px solid #ddd;
}

.benefit-item:first-child {
    padding-left: 0;
}

.benefit-item:last-child {
    border-right: none;
}


/* IKONA ZALET */

.benefit-icon {
    width: 60px;
    min-width: 60px;
    height: 60px;

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

    border: 1px solid #e5a06b;
    border-radius: 50%;

    color: #ff7300;

    font-size: 30px;
    font-weight: 700;
}


/* TEKST ZALET */

.benefit-item strong {
    display: block;

    margin-bottom: 3px;

    font-size: 15px;
    line-height: 1.2;
    font-weight: 900;
}

.benefit-item span {
    display: block;

    font-size: 14px;
    line-height: 1.35;

    color: #666;
}


/* =========================================================
   RESPONSIVE — TABLET
========================================================= */

@media (max-width: 900px) {

    .oferta-page .container {
        width: min(100% - 40px, 700px);
    }

    .oferta-layout {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .oferta-contact-card {
        margin-top: 0;
    }

    .oferta-card-image {
        height: 300px;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 20px;
    }

    .benefit-item {
        padding: 10px 20px;
    }

    .benefit-item:nth-child(2) {
        border-right: none;
    }

}


/* =========================================================
   RESPONSIVE — TELEFON
========================================================= */

@media (max-width: 600px) {

    .oferta-page .container {
        width: calc(100% - 30px);
    }


    /* INTRO */

    .oferta-intro {
        padding: 40px 0 20px;
    }

    .oferta-intro h1 {
        font-size: 30px;
    }

    .oferta-intro p {
        font-size: 14px;
    }


    /* OFERTA */

    .oferta-main {
        padding: 15px 0 45px;
    }

    .oferta-layout {
        gap: 25px;
    }


    /* ELEMENTY LISTY */

    .oferta-item {
        min-height: 78px;

        gap: 14px;
        padding: 14px 15px;
    }

    .oferta-item:hover {
        padding-left: 15px;
    }

    .oferta-icon {
        width: 40px;
        min-width: 40px;
        height: 40px;

        font-size: 25px;
    }

    .oferta-item h2 {
        font-size: 14px;
    }

    .oferta-item p {
        font-size: 11px;
    }


    /* KARTA */

    .oferta-card-image {
        height: 250px;
        transform: translateY(-5px);
    }

    .oferta-card-content {
        padding: 17px 17px 20px;
    }

    .oferta-card-content h2 {
        font-size: 19px;
    }


    /* ZALETY */

    .benefits-grid {
        grid-template-columns: 1fr;
        row-gap: 0;
    }

    .benefit-item,
    .benefit-item:first-child {
        min-height: 55px;

        padding: 13px 0;

        border-right: none;
        border-bottom: 1px solid #ddd;
    }

    .benefit-item:last-child {
        border-bottom: none;
    }

}

/* =========================================
   CZARNY HEADER NA PODSTRONACH
========================================= */

body.page header {
    background: #111 !important;
    background-color: #111 !important;
    opacity: 1 !important;
}

/* =========================================================
   STRONA - NASZA OFERTA - KONIEC CSS
========================================================= */


/* =========================================================
   STRONA - DLA FIRM - START CSS
========================================================= */


.bf-page {
    width: 100%;
    margin: 0;
    padding: 0;

    background: #ffffff;
    color: #111111;

    overflow: hidden;
}


/* =========================================================
   HERO
========================================================= */

.bf-hero {
    width: 100%;
    margin: 0;
    padding: 105px 0 65px;

    background: #ffffff;
}


.bf-hero-inner {
    width: 1180px;
    max-width: calc(100% - 60px);

    margin: 0 auto 20px;

    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 55px;

    align-items: center;
}


/* =========================================================
   HERO - TEKST
========================================================= */

.bf-hero-text {
    width: 100%;
}


.bf-hero-text h1 {
    margin: 0 0 12px;

    color: #111111;

    font-size: 42px;
    line-height: 1.05;

    font-weight: 900;

    letter-spacing: -1px;
}


.bf-hero-text h1 span {
    color: #ff7300;
}


.bf-lead {
    margin: 0 0 25px;

    color: #555555;

    font-size: 24px;
    line-height: 1.5;

    font-weight: 600;
}


.bf-description {
    max-width: 570px;

    margin: 0 0 25px;

    color: #333333;

    font-size: 18px;
    line-height: 1.7;
}


/* =========================================================
   LISTA
========================================================= */

.bf-list {
    margin: 0;
    padding: 0;

    list-style: none;
}


.bf-list li {
    position: relative;

    margin: 0 0 11px;
    padding-left: 25px;

    color: #222222;

    font-size: 14px;
    line-height: 1.4;

    font-weight: 600;
}


.bf-list li::before {
    content: "✓";

    position: absolute;

    left: 0;
    top: 0;

    color: #ff7300;

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


/* =========================================================
   ZDJĘCIE
========================================================= */

.bf-photo {
    width: 100%;
    height: 390px;

    margin: 0;

    overflow: hidden;

    background: #eeeeee;

    border-radius: 8px;

    box-shadow: 0 14px 35px rgba(0, 0, 0, .12);
}


.bf-photo img {
    display: block;

    width: 100%;
    height: 100%;

    margin: 0;
    padding: 0;

    object-fit: cover;
    object-position: center;

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


/* =========================================================
   BENEFITY - CZARNA SEKCJA
========================================================= */

.bf-benefits {
    width: 1180px;
    max-width: calc(100% - 60px);

    margin: 0 auto;
    padding: 35px 0 30px;

    background: #111111;

    border-radius: 10px;
}

.bf-benefits-inner {
    width: 100%;

    margin: 0;
    padding: 0 30px;

    box-sizing: border-box;
}


/* =========================================================
   NAGŁÓWEK
========================================================= */

.bf-benefits-title {
    margin: 0 0 40px;

    text-align: center;

    color: #ffffff;

    font-size: 26px;
    line-height: 1.2;

    font-weight: 900;
}


.bf-benefits-title span {
    color: #ff7300;
}


/* =========================================================
   BENEFITY - GRID
========================================================= */

.bf-benefits-grid {
    width: 100%;

    margin: 0;
    padding: 0;

    display: grid;

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

    border-top: 1px solid rgba(255,255,255,.18);
    border-bottom: 1px solid rgba(255,255,255,.18);
}


/* =========================================================
   POJEDYNCZY BENEFIT
========================================================= */

.bf-benefit {
    min-width: 0;

    min-height: 190px;

    padding: 30px 28px;

    box-sizing: border-box;

    text-align: center;

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


.bf-benefit:last-child {
    border-right: none;
}


/* =========================================================
   IKONA
========================================================= */

.bf-icon {
    width: 78px;
    height: 78px;

    margin: 0 auto 18px;

    display: flex;

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

    box-sizing: border-box;

    border: 1px solid #777777;

    border-radius: 50%;

    color: #ff7300;

    font-size: 29px;

    font-weight: 700;
}


/* =========================================================
   BENEFIT - TYTUŁ
========================================================= */

.bf-benefit h3 {
    margin: 0 0 9px;

    color: #ffffff;

    font-size: 17px;
    line-height: 1.25;

    font-weight: 800;
}


/* =========================================================
   BENEFIT - OPIS
========================================================= */

.bf-benefit p {
    max-width: 210px;

    margin: 0 auto;

    color: #bdbdbd;

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


/* =========================================================
   CTA
========================================================= */

.bf-cta {
    width: 1180px;
    max-width: calc(100% - 60px);

    margin: 18px auto 35px;
    padding: 0;

    box-sizing: border-box;

    background: #111111;
    border-radius: 10px;
}


/* zawartość CTA */
.bf-cta-inner {
    width: 100%;
    max-width: none;

    margin: 0;
    padding: 24px 34px;

    box-sizing: border-box;

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

    gap: 30px;

    background: #111111;
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 10px;
}


/* LEWA CZĘŚĆ — tekst */
.bf-cta-inner > div:first-child {
    flex: 1;
    min-width: 0;
    display: block;
}


.bf-cta-inner > div:first-child h2 {
    display: block;

    margin: 0 0 4px;

    color: #ffffff;

    font-size: 21px;
    line-height: 1.15;
    font-weight: 800;
}


.bf-cta-inner > div:first-child h2 span {
    color: #ff6a00;
}


.bf-cta-inner > div:first-child p {
    display: block;

    margin: 0;

    color: #ffffff;

    font-size: 16spx;
    line-height: 1.3;
}


/* PRAWA CZĘŚĆ — przyciski */
.bf-cta-buttons {
    display: flex;
    align-items: center;
    gap: 10px;

    flex-shrink: 0;
}


.bf-cta-buttons .bf-btn {
    height: 38px;

    padding: 0 18px;

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

    white-space: nowrap;

    box-sizing: border-box;

    font-size: 16px;
    font-weight: 700;
}

/* POMARAŃCZOWY */

.bf-btn-primary {
    background: #ff7300;

    border: 1px solid #ff7300;

    color: #ffffff;
}


.bf-btn-primary:hover {
    background: #ff851f;

    border-color: #ff851f;

    color: #ffffff;

    transform: translateY(-2px);
}


/* OUTLINE */

.bf-btn-outline {
    background: transparent;

    border: 1px solid #777777;

    color: #ffffff;
}


.bf-btn-outline:hover {
    border-color: #ff7300;

    color: #ff7300;

    transform: translateY(-2px);
}


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

@media (max-width: 1000px) {

    .bf-hero-inner {
        grid-template-columns: 1fr 1fr;

        gap: 35px;
    }


    .bf-hero-text h1 {
        font-size: 36px;
    }


    .bf-photo {
        height: 340px;
    }


    .bf-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }


    .bf-benefit:nth-child(2) {
        border-right: none;
    }


    .bf-benefit:nth-child(-n+2) {
        border-bottom: 1px solid rgba(255,255,255,.18);
    }

}


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

@media (max-width: 700px) {

    .bf-hero {
        padding: 40px 0 45px;
    }


    .bf-hero-inner {
        width: calc(100% - 30px);
        max-width: none;

        grid-template-columns: 1fr;

        gap: 30px;
    }


    .bf-hero-text h1 {
        font-size: 32px;
    }


    .bf-lead {
        font-size: 16px;
    }


    .bf-description {
        font-size: 14px;
    }


    .bf-list li {
        font-size: 14px;
    }


    .bf-photo {
        height: 280px;
    }


    /* BENEFITY */

    .bf-benefits {
        padding: 45px 0;
    }


    .bf-benefits-inner {
        width: calc(100% - 30px);
        max-width: none;
    }


    .bf-benefits-title {
        margin-bottom: 30px;

        font-size: 23px;
    }


    .bf-benefits-grid {
        grid-template-columns: 1fr;
    }


    .bf-benefit {
        min-height: auto;

        padding: 30px 20px;

        border-right: none !important;

        border-bottom: 1px solid rgba(255,255,255,.18);
    }


    .bf-benefit:last-child {
        border-bottom: none;
    }


    /* CTA */

    .bf-cta {
        padding: 20px 0 25px;
    }


    .bf-cta-inner {
        width: calc(100% - 30px);
        max-width: none;

        padding: 25px 20px;

        flex-direction: column;

        align-items: flex-start;

        gap: 24px;
    }


    .bf-cta-text h2 {
        font-size: 21px;
    }


    .bf-cta-buttons {
        width: 100%;

        flex-direction: column;
    }


    .bf-btn {
        width: 100%;
    }

}


/* =========================================================
   MAŁE TELEFONY
========================================================= */

@media (max-width: 400px) {

    .bf-hero-text h1 {
        font-size: 29px;
    }


    .bf-photo {
        height: 240px;
    }


    .bf-benefits-title {
        font-size: 21px;
    }

}

/* =========================================================
   STRONA - DLA FIRM - KONIEC CSS
========================================================= */

/* =========================================================
   STRONA - REALIZACJE - START CSS
========================================================= */

.realizations-page {
    background: #fff;
    color: #111;
}


/* =========================
   WSPÓLNY KONTENER
========================= */

.realizations-container {
    width: 1180px;
    max-width: calc(100% - 60px);
    margin: 0 auto;
}


/* =========================
   NAGŁÓWEK
========================= */

.realizations-hero {
    padding: 105px 0 25px;
    background: #fff;
}

.realizations-hero h1 {
    margin: 0 0 8px;

    font-size: 42px;
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -1px;
}

.realizations-hero h1 span {
    color: #ff7200;
}

.realizations-hero p {
    margin: 0;

    font-size: 17px;
    line-height: 1.6;
    color: #555;
}


/* =========================
   GALERIA
========================= */

.realizations-gallery {
    padding: 15px 0 70px;
    background: #fff;
}


/* =========================
   FILTRY
========================= */

.realizations-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;

    margin-bottom: 30px;
}

.realization-filter {
    appearance: none;

    border: 1px solid #d5d5d5;
    background: #fff;

    padding: 11px 18px;

    border-radius: 5px;

    font-family: inherit;
    font-size: 13px;
    font-weight: 700;

    cursor: pointer;

    transition: .2s ease;
}

.realization-filter:hover {
    border-color: #ff7200;
    color: #ff7200;
}

.realization-filter.active {
    background: #ff7200;
    border-color: #ff7200;
    color: #fff;
}


/* =========================
   SIATKA
========================= */

.realizations-grid {
    display: grid;

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

    gap: 24px;
}


/* =========================
   KARTA
========================= */

.realization-card {
    overflow: hidden;

    border-radius: 8px;

    background: #fff;

    box-shadow: 0 5px 20px rgba(0,0,0,.08);
}


/* =========================
   PRZED / PO
========================= */

.realization-before-after {
    display: grid;
    grid-template-columns: 1fr 1fr;

    width: 100%;
    height: 260px;
}

.realization-photo {
    position: relative;
    overflow: hidden;
}

.realization-photo img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
}


/* =========================
   ETYKIETY PRZED / PO
========================= */

.realization-photo span {
    position: absolute;

    top: 10px;
    left: 10px;

    z-index: 2;

    padding: 5px 9px;

    border-radius: 4px;

    background: #111;
    color: #fff;

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

    line-height: 1;
}

.realization-photo.after span {
    background: #22b455;
}


/* =========================
   HOVER
========================= */

.realization-photo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;

    transition: none;
}

.realization-card {
    position: relative;
    overflow: hidden;
    border-radius: 8px;

    background: #fff;
    box-shadow: 0 5px 20px rgba(0,0,0,.08);

    transform: scale(1);
    transition:
        transform .3s ease,
        box-shadow .3s ease;

    z-index: 1;
}

.realization-card:hover {
    transform: scale(1.46);

    box-shadow: 0 15px 35px rgba(0,0,0,.18);

    z-index: 10;
}


/* =========================
   ZOBACZ WIĘCEJ
========================= */

.realizations-more {
    width: 100%;

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

    margin-top: 35px;
}

.realizations-more-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 150px;

    padding: 13px 25px;

    border: 0;
    border-radius: 5px;

    background: #111;
    color: #fff;

    font-family: inherit;
    font-size: 13px;
    font-weight: 800;

    cursor: pointer;

    transition:
        background .2s ease,
        transform .2s ease;
}

.realizations-more-button:hover {
    background: #ff7200;
    transform: translateY(-2px);
}S


/* =========================
   MOBILE
========================= */

@media (max-width: 900px) {

    .realizations-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .realizations-hero h1 {
        font-size: 34px;
    }

}


@media (max-width: 600px) {

    .realizations-container {
        max-width: calc(100% - 30px);
    }

    .realizations-hero {
        padding: 40px 0 20px;
    }

    .realizations-hero h1 {
        font-size: 30px;
    }

    .realizations-hero p {
        font-size: 15px;
    }

    .realizations-filters {
        gap: 6px;
    }

    .realization-filter {
        padding: 9px 12px;
        font-size: 11px;
    }

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

    .realization-before-after {
        height: 230px;
    }

}

/* =========================================================
   STRONA - REALIZACJE - KONIEC CSS
========================================================= */

/* =========================================================
   STRONA - CENNIK - START CSS
========================================================= */


.pricing-page {
    width: 100%;
    background: #fff;
    color: #111;
}


/* =========================================================
   GŁÓWNY OBSZAR
========================================================= */

.pricing-section {
    padding: 105px 0 65px;
}

.pricing-container {
    width: 1180px;
    max-width: calc(100% - 60px);
    margin: 0 auto;
}


/* =========================================================
   NAGŁÓWEK
========================================================= */

.pricing-heading {
    text-align: center;
    margin-bottom: 35px;
}

.pricing-heading h1 {
    margin: 0 0 8px;

    font-size: 34px;
    line-height: 1.1;
    font-weight: 900;

    color: #111;
}

.pricing-heading p {
    margin: 0;

    font-size: 17px;
    color: #666;
}


/* =========================================================
   KARTY CENNIKA
========================================================= */

.pricing-grid {
    display: grid;

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

    gap: 14px;
}


/* pojedyncza karta */

.pricing-card {
    min-height: 205px;

    padding: 20px 15px 12px;

    display: flex;
    flex-direction: column;
    align-items: center;

    text-align: center;

    background: #fff;

    border: 1px solid #dedede;
    border-radius: 6px;

    overflow: hidden;

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


/* hover */

.pricing-card:hover {
    transform: translateY(-4px);

    border-color: #ff7200;

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


/* nazwa */

.pricing-card h2 {
    margin: 0 0 7px;

    font-size: 14px;
    line-height: 1.2;

    font-weight: 900;

    color: #111;
}


/* cena */

.pricing-card strong {
    display: block;

    margin-bottom: 10px;

    font-size: 16px;
    line-height: 1.2;

    font-weight: 900;

    color: #ff7200;
}


/* zdjęcie */

.pricing-card img {
    display: block;

    width: 120px;
    height: 95px;

    object-fit: contain;

    margin-top: auto;

    transition: transform .25s ease;
}


.pricing-card:hover img {
    transform: scale(1.06);
}


/* =========================================================
   INFORMACJE POD CENNIKIEM
========================================================= */

.pricing-info {
    display: grid;

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

    margin-top: 28px;

    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}


.pricing-info > div {
    min-height: 75px;

    padding: 15px 20px;

    display: flex;
    flex-direction: column;
    align-items: center;

    text-align: center;

    border-right: 1px solid #ddd;
}


.pricing-info > div:last-child {
    border-right: none;
}


.pricing-info span {
    margin-bottom: 5px;

    font-size: 32px;

    color: #ff7200;
}


.pricing-info strong {
    font-size: 17px;
    font-weight: 800;

    color: #222;
}


.pricing-info p {
    margin: 3px 0 0;

    font-size: 14px;

    color: #777;
}


/* =========================================================
   CTA
========================================================= */

.pricing-cta {
    margin-top: 30px;

    padding: 22px 28px;

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

    gap: 30px;

    background: #111;

    border-radius: 7px;

    color: #fff;
}


.pricing-cta h2 {
    margin: 0 0 5px;

    font-size: 21px;
    line-height: 1.2;

    font-weight: 900;

    color: #fff;
}


.pricing-cta h2 span {
    color: #ff7200;
}


.pricing-cta p {
    margin: 0;

    font-size: 13px;

    color: #ccc;
}


/* =========================================================
   PRZYCISKI CTA
========================================================= */

.pricing-cta-buttons {
    display: flex;

    align-items: center;

    gap: 10px;

    flex-shrink: 0;
}


.pricing-cta .btn {
    min-height: 42px;

    padding: 0 20px;

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

    border-radius: 4px;

    text-decoration: none;

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

    white-space: nowrap;

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


/* pomarańczowy */

.pricing-cta .btn-primary {
    background: #ff7200;

    color: #fff;

    border: 1px solid #ff7200;
}


.pricing-cta .btn-primary:hover {
    background: #e86600;

    transform: translateY(-2px);
}


/* obrys */

.pricing-cta .btn-outline {
    background: transparent;

    color: #fff;

    border: 1px solid #777;
}


.pricing-cta .btn-outline:hover {
    border-color: #ff7200;

    color: #ff7200;

    transform: translateY(-2px);
}


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

@media (max-width: 900px) {

    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-info {
        grid-template-columns: 1fr;
    }

    .pricing-info > div {
        border-right: none;
        border-bottom: 1px solid #ddd;
    }

    .pricing-info > div:last-child {
        border-bottom: none;
    }

    .pricing-cta {
        flex-direction: column;
        align-items: flex-start;
    }

}


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

@media (max-width: 600px) {

    .pricing-section {
        padding: 40px 0 50px;
    }

    .pricing-container {
        max-width: calc(100% - 30px);
    }

    .pricing-heading {
        margin-bottom: 25px;
    }

    .pricing-heading h1 {
        font-size: 28px;
    }

    .pricing-heading p {
        font-size: 13px;
    }

    .pricing-grid {
        grid-template-columns: 1fr 1fr;

        gap: 10px;
    }

    .pricing-card {
        min-height: 180px;

        padding: 15px 8px 10px;
    }

    .pricing-card h2 {
        font-size: 11px;
    }

    .pricing-card strong {
        font-size: 14px;
    }

    .pricing-card img {
        width: 100px;
        height: 80px;
    }

    .pricing-cta {
        padding: 20px;
    }

    .pricing-cta h2 {
        font-size: 18px;
    }

    .pricing-cta-buttons {
        width: 100%;

        flex-direction: column;
    }

    .pricing-cta .btn {
        width: 100%;
    }

}

/* =========================================================
   STRONA - CENNIK - KONIEC CSS
========================================================= */

/* =========================================================
   STRONA - KONTAKT - START CSS
========================================================= */

.contact-page {
    width: 100%;
    background: #fff;
    color: #111;
}


/* =========================================================
   GŁÓWNA SEKCJA
========================================================= */

.contact-section {
    padding: 105px 0 55px;
}

.contact-container {
    width: 1180px;
    max-width: calc(100% - 60px);
    margin: 0 auto;
}


/* =========================================================
   UKŁAD
========================================================= */

.contact-grid {
    display: grid;

    grid-template-columns: 1fr 1fr 1.15fr;

    min-height: 440px;

    border: 1px solid #ddd;
    border-radius: 6px;

    overflow: hidden;

    background: #fff;
}


/* =========================================================
   LEWA KOLUMNA
========================================================= */

.contact-info {
    padding: 35px 30px;
}

.contact-info h1 {
    margin: 0 0 8px;

    font-size: 30px;
    line-height: 1.1;

    font-weight: 900;

    color: #111;
}

.contact-lead {
    margin: 0 0 28px;

    font-size: 13px;
    line-height: 1.5;

    color: #666;
}


/* =========================================================
   DANE KONTAKTOWE
========================================================= */

.contact-details {
    display: flex;
    flex-direction: column;

    gap: 18px;
}


.contact-detail {
    display: flex;
    align-items: flex-start;

    gap: 12px;
}


.contact-detail > span {
    width: 22px;

    flex-shrink: 0;

    font-size: 18px;
    line-height: 1;

    color: #ff7200;

    text-align: center;
}


.contact-detail strong {
    display: block;

    font-size: 13px;
    line-height: 1.4;

    font-weight: 700;

    color: #222;
}


.contact-detail small {
    display: block;

    margin-top: 3px;

    font-size: 11px;

    color: #777;
}


/* =========================================================
   SOCIAL MEDIA
========================================================= */

.contact-social {
    margin-top: 30px;
}

.contact-social h3 {
    margin: 0 0 12px;

    font-size: 12px;

    font-weight: 900;
}


.contact-social-links {
    display: flex;
    gap: 10px;
}


.contact-social-links a {
    width: 34px;
    height: 34px;

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

    border-radius: 5px;

    background: #111;

    color: #fff;

    text-decoration: none;

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

    transition:
        background .2s ease,
        transform .2s ease;
}


.contact-social-links a:hover {
    background: #ff7200;

    transform: translateY(-2px);
}


/* =========================================================
   FORMULARZ
========================================================= */

.contact-form-box {
    padding: 35px 30px;

    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;

    background: #fff;
}


.contact-form-box h2 {
    margin: 0 0 22px;

    font-size: 22px;

    font-weight: 900;

    color: #111;
}


.contact-form-box form {
    display: flex;
    flex-direction: column;

    gap: 11px;
}


.contact-form-box input,
.contact-form-box textarea {
    width: 100%;

    box-sizing: border-box;

    padding: 12px 13px;

    border: 1px solid #ddd;
    border-radius: 3px;

    background: #fff;

    color: #111;

    font-family: inherit;
    font-size: 12px;

    outline: none;

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


.contact-form-box input:focus,
.contact-form-box textarea:focus {
    border-color: #ff7200;

    box-shadow: 0 0 0 2px rgba(255,114,0,.10);
}


.contact-form-box textarea {
    min-height: 115px;

    resize: vertical;
}


.contact-form-box button {
    min-height: 43px;

    margin-top: 3px;

    border: none;
    border-radius: 4px;

    background: #ff7200;

    color: #fff;

    font-family: inherit;

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

    cursor: pointer;

    transition:
        background .2s ease,
        transform .2s ease;
}


.contact-form-box button:hover {
    background: #e86600;

    transform: translateY(-2px);
}


/* =========================================================
   MAPA
========================================================= */

.contact-map {
    min-height: 440px;

    background: #eee;
}


.contact-map iframe {
    width: 100%;
    height: 100%;

    min-height: 440px;

    display: block;

    border: 0;
}


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

@media (max-width: 900px) {

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

    .contact-map {
        grid-column: 1 / -1;

        min-height: 350px;
    }

    .contact-map iframe {
        min-height: 350px;
    }

}


@media (max-width: 600px) {

    .contact-section {
        padding: 35px 0 45px;
    }

    .contact-container {
        max-width: calc(100% - 30px);
    }

    .contact-grid {
        display: flex;
        flex-direction: column;
    }

    .contact-info {
        padding: 28px 22px;
    }

    .contact-form-box {
        padding: 28px 22px;

        border-left: none;
        border-right: none;

        border-top: 1px solid #ddd;
        border-bottom: 1px solid #ddd;
    }

    .contact-map {
        min-height: 300px;
    }

    .contact-map iframe {
        min-height: 300px;
    }

}

/* =========================================================
   STRONA - KONTAKT - KONIEC CSS
========================================================= */

/* =========================================================
   STRONA - O NAS - START CSS
========================================================= */

.about-page {
    width: 100%;
    margin: 0;
    padding: 0;
    background: #fff;
}


/* GŁÓWNA SEKCJA */

.about-hero {
    position: relative;

    width: 100%;
    height: 470px;

    overflow: hidden;

    background: #111;
}


/* ZDJĘCIE JAKO TŁO */

.about-hero-bg {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    z-index: 1;
}

.about-hero-bg img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
    object-position: center;
}


/* CIEMNY GRADIENT OD LEWEJ */

.about-hero-overlay {
    position: absolute;

    inset: 0;

    z-index: 2;

    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,.94) 0%,
            rgba(0,0,0,.84) 24%,
            rgba(0,0,0,.58) 43%,
            rgba(0,0,0,.22) 65%,
            rgba(0,0,0,0) 100%
        );
}


/* KONTENER TREŚCI */

.about-hero-container {
    position: relative;

    width: 1180px;
    max-width: calc(100% - 60px);

    height: 100%;

    margin: 0 auto;

    z-index: 3;

    display: flex;
    align-items: center;
    padding-top: 70px;
}


/* LEWA CZĘŚĆ */

.about-hero-content {
    width: 600px;
    max-width: 65%;

    padding: 35px 0;
}


/* MAŁE "O NAS" */

.about-eyebrow {
    margin: 0 0 7px;

    color: #ff7200;

    font-size: 18px;
    line-height: 1;

    font-weight: 900;

    letter-spacing: .5px;
}


/* GŁÓWNY NAGŁÓWEK */

.about-hero-content h1 {
    margin: 0;

    color: #fff;

    font-size: 44px;
    line-height: 1.02;

    font-weight: 900;

    letter-spacing: -1.4px;
}


/* POMARAŃCZOWA KRESKA */

.about-title-line {
    width: 48px;
    height: 4px;

    margin: 14px 0 17px;

    background: #ff7200;
}


/* OPISY */

.about-hero-content > p {
    max-width: 570px;

    margin: 0 0 8px;

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

    font-size: 13px;
    line-height: 1.55;
}


/* =========================================================
   4 WYRÓŻNIKI
========================================================= */

.about-features {
    width: 100%;
    max-width: 590px;

    margin-top: 19px;

    display: grid;

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

    gap: 18px;
}


.about-feature {
    min-width: 0;
}


/* IKONA */

.about-feature-icon {
    margin-bottom: 6px;

    color: #ff7200;

    font-size: 28px;
    line-height: 1;
}


/* TYTUŁ */

.about-feature strong {
    display: block;

    color: #fff;

    font-size: 14px;
    line-height: 1.3;

    font-weight: 800;
}


/* PODPIS */

.about-feature span {
    display: block;

    margin-top: 2px;

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

    font-size: 13px;
    line-height: 1.3;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 800px) {

    .about-hero {
        height: auto;
        min-height: 550px;
    }

    .about-hero-container {
        max-width: calc(100% - 40px);
    }

    .about-hero-content {
        width: 100%;
        max-width: 100%;

        padding: 55px 0;
    }

    .about-hero-content h1 {
        font-size: 40px;
    }

    .about-features {
        grid-template-columns: repeat(2, 1fr);

        gap: 18px 12px;
    }

}


@media (max-width: 600px) {

    .about-hero {
        min-height: 620px;
    }

    .about-hero-container {
        max-width: calc(100% - 30px);
    }

    .about-hero-content h1 {
        font-size: 36px;
    }

    .about-features {
        grid-template-columns: repeat(2, 1fr);

        gap: 18px 12px;
    }

}

/* =========================================================
   AWARD
========================================================= */

.about-award {
    width: 100%;

    padding: 30px 0;
}


.about-award-inner {
    width: 1180px;
    max-width: calc(100% - 60px);

    min-height: 280px;

    margin: 0 auto;

    padding: 35px 45px;

    box-sizing: border-box;

    display: grid;
    grid-template-columns: 1.2fr .8fr;

    gap: 45px;

    align-items: center;

    border-radius: 14px;

    background:
        radial-gradient(
            circle at 20% 50%,
            rgba(255,114,0,.12),
            transparent 35%
        ),
        #111111;

    color: #fff;

    position: relative;

    overflow: hidden;
}


.about-award-inner::before {
    content: "✦  ✦  ✦";

    position: absolute;

    right: 45%;
    top: 25px;

    color: #ff7200;

    opacity: .7;

    font-size: 18px;

    letter-spacing: 25px;
}


.about-award-content {
    display: flex;

    gap: 25px;

    align-items: flex-start;

    position: relative;
    z-index: 2;
}


.about-award-trophy {
    flex-shrink: 0;

    font-size: 52px;

    line-height: 1;
}


.about-award-title {
    font-size: 29px;
    line-height: 1.05;

    font-weight: 900;
}


.about-award-title.orange {
    color: #ff7200;
}


.about-award-line {
    width: 42px;
    height: 3px;

    margin: 15px 0;

    background: #ff7200;
}


.about-award-content p {
    max-width: 600px;

    margin: 0 0 9px;

    font-size: 12px;
    line-height: 1.55;

    color: #ddd;
}


.about-award-highlight {
    color: #fff !important;

    font-weight: 800;
}


.about-award-image {
    position: relative;

    z-index: 2;
}


.about-award-image img {
    width: 100%;
    max-width: 390px;

    display: block;

    margin-left: auto;

    border-radius: 8px;

    background: #fff;

    box-shadow: 0 12px 30px rgba(0,0,0,.3);
}


/* =========================================================
   COMPANY
========================================================= */

.about-company {
    width: 100%;

    padding: 35px 0 45px;

    background: #fff;
}


.about-company-inner {
    width: 1180px;
    max-width: calc(100% - 60px);

    margin: 0 auto;

    display: grid;

    grid-template-columns: .8fr 1.2fr;

    gap: 45px;

    align-items: center;
}


.about-small-title {
    margin-bottom: 6px;

    color: #ff7200;

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


.about-company-text h2 {
    margin: 0;

    font-size: 32px;
    line-height: 1.1;

    font-weight: 900;

    color: #111;
}


.about-orange-line {
    width: 42px;
    height: 3px;

    margin: 13px 0 18px;

    background: #ff7200;
}


.about-company-text p {
    margin: 0 0 14px;

    font-size: 14px;
    line-height: 1.65;

    color: #333;
}


.about-location {
    display: flex;

    gap: 12px;

    align-items: flex-start;

    margin-top: 22px;

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


.about-location span {
    flex-shrink: 0;

    color: #ff7200;

    font-size: 32px;

    line-height: 1;
}


.about-company-photo {
    position: relative;

    min-height: 380px;

    border-radius: 12px;

    overflow: hidden;
}


.about-company-photo > img {
    width: 100%;
    height: 380px;

    display: block;

    object-fit: cover;
}


/* =========================================================
   STATYSTYKI NA ZDJĘCIU
========================================================= */

.about-stats {
    position: absolute;

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

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

    background: rgba(10,10,10,.90);

    backdrop-filter: blur(4px);

    border-top: 1px solid rgba(255,255,255,.15);
}


.about-stat {
    min-height: 95px;

    padding: 13px 8px;

    box-sizing: border-box;

    display: flex;
    flex-direction: column;

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

    text-align: center;

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


.about-stat:last-child {
    border-right: none;
}


.about-stat-icon {
    margin-bottom: 4px;

    color: #ff7200;

    font-size: 24px;
}


.about-stat strong {
    color: #fff;

    font-size: 24px;
    line-height: 1;

    font-weight: 900;
}


.about-stat small {
    margin-top: 5px;

    color: #ddd;

    font-size: 12px;
}


/* =========================================================
   PROCESS
========================================================= */

.about-process {
    padding: 25px 0 55px;

    background: #fff;
}


.about-process-inner {
    width: 1180px;
    max-width: calc(100% - 60px);

    margin: 0 auto;
}


.about-section-heading {
    text-align: center;

    margin-bottom: 28px;
}


.about-section-heading h2 {
    margin: 0;

    font-size: 28px;
    line-height: 1.1;

    font-weight: 900;

    color: #111;
}


.about-heading-line {
    width: 45px;
    height: 3px;

    margin: 10px auto 0;

    background: #ff7200;
}


.about-process-grid {
    display: grid;

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

    gap: 25px;

    position: relative;
}


.about-process-grid::before {
    content: "";

    position: absolute;

    left: 12%;
    right: 12%;

    top: 90px;

    border-top: 2px dashed #ff7200;

    opacity: .7;

    z-index: 0;
}


.about-process-item {
    position: relative;

    text-align: center;

    z-index: 1;
}


.about-process-number {
    position: absolute;

    top: 0;
    left: 8px;

    width: 32px;
    height: 32px;

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

    border-radius: 50%;

    background: #ff7200;

    color: #fff;

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

    z-index: 3;
}


.about-process-image {
    width: 150px;
    height: 150px;

    margin: 0 auto 12px;

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

    border-radius: 50%;

    background: #fff;

    box-shadow:
        0 0 0 12px rgba(255,114,0,.04),
        0 5px 20px rgba(0,0,0,.08);
}

.about-process-image img {
    width: 135px;
    height: 135px;

    display: block;

    object-fit: contain;
}

.about-process-imagemini {
    width: 150px;
    height: 150px;

    margin: 0 auto 12px;

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

    border-radius: 50%;

    background: #fff;

    box-shadow:
        0 0 0 12px rgba(255,114,0,.04),
        0 5px 20px rgba(0,0,0,.08);
}


.about-process-imagemini img {
    width: 160px;
    height: 160px;

    display: block;

    object-fit: contain;
}


.about-process-item h3 {
    margin: 0 0 7px;

    font-size: 17px;

    font-weight: 900;

    color: #111;
}


.about-process-item p {
    max-width: 210px;

    margin: 0 auto;

    font-size: 14px;
    line-height: 1.5;

    color: #555;
}


/* =========================================================
   CTA
========================================================= */

.about-cta {
    width: 100%;

    padding: 0 0 25px;
}


.about-cta-inner {
    width: 1180px;
    max-width: calc(100% - 60px);

    min-height: 125px;

    margin: 0 auto;

    padding: 25px 45px;

    box-sizing: border-box;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 35px;

    border-radius: 12px;

    background:
        radial-gradient(
            circle at 90% 50%,
            rgba(255,114,0,.08),
            transparent 30%
        ),
        #fff4e8;

    border: 1px solid #f2dfcc;
}


.about-cta-text h2 {
    margin: 0;

    font-size: 28px;
    line-height: 1.05;

    font-weight: 900;

    color: #111;
}


.about-cta-text h2 span {
    display: block;

    color: #ff7200;
}


.about-cta-text p {
    margin: 7px 0 0;

    font-size: 12px;

    color: #444;
}


.about-cta-buttons {
    display: flex;

    gap: 12px;

    flex-shrink: 0;
}


.about-btn {
    min-width: 165px;
    min-height: 48px;

    padding: 0 20px;

    box-sizing: border-box;

    display: inline-flex;

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

    border-radius: 5px;

    text-decoration: none;

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

    transition:
        transform .2s ease,
        background .2s ease;
}


.about-btn:hover {
    transform: translateY(-2px);
}


.about-btn-primary {
    background: #ff7200;

    color: #fff;
}


.about-btn-primary:hover {
    background: #e86600;
}


.about-btn-outline {
    border: 1px solid #333;

    background: transparent;

    color: #111;
}


.about-btn-outline:hover {
    background: #111;

    color: #fff;
}


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

@media (max-width: 1000px) {

    .about-hero-inner {
        grid-template-columns: 1fr;
    }

    .about-hero-content {
    position: relative;

    width: 72%;
    max-width: 760px;

    height: 100%;

    padding: 45px 35px 35px 45px;

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

    z-index: 3;
}

    .about-hero-image {
        min-height: 380px;

        border-radius: 12px;
    }

    .about-hero-image img {
        min-height: 380px;
    }

    .about-hero-image::before {
        display: none;
    }

    .about-company-inner {
        grid-template-columns: 1fr;
    }

    .about-company-photo {
        min-height: 400px;
    }

    .about-company-photo > img {
        height: 400px;
    }

    .about-award-inner {
        grid-template-columns: 1fr;
    }

    .about-award-image img {
        margin: 0 auto;
    }

}


@media (max-width: 800px) {

    .about-hero-features {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-process-grid {
        grid-template-columns: repeat(2, 1fr);

        row-gap: 40px;
    }

    .about-process-grid::before {
        display: none;
    }

    .about-cta-inner {
        flex-direction: column;

        align-items: flex-start;
    }

}


@media (max-width: 600px) {

    .about-hero-inner,
    .about-award-inner,
    .about-company-inner,
    .about-process-inner,
    .about-cta-inner {
        max-width: calc(100% - 30px);
    }


    .about-hero-content h1 {
        font-size: 40px;
    }


    .about-hero-features {
        gap: 15px;
    }


    .about-award-inner {
        padding: 28px 22px;

        gap: 25px;
    }


    .about-award-content {
        flex-direction: column;

        gap: 10px;
    }


    .about-award-title {
        font-size: 24px;
    }


    .about-company-text h2 {
        font-size: 27px;
    }


    .about-company-photo,
    .about-company-photo > img {
        height: 320px;

        min-height: 320px;
    }


    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }


    .about-stat {
        min-height: 75px;
    }


    .about-stat:nth-child(2) {
        border-right: none;
    }


    .about-stat:nth-child(-n+2) {
        border-bottom: 1px solid rgba(255,255,255,.2);
    }


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


    .about-process-item p {
        max-width: 280px;
    }


    .about-cta-inner {
        padding: 25px 22px;
    }


    .about-cta-text h2 {
        font-size: 24px;
    }


    .about-cta-buttons {
        width: 100%;

        flex-direction: column;
    }


    .about-btn {
        width: 100%;
    }

}

/* =========================================================
   STRONA - O NAS - KONIEC CSS
========================================================= */

/* =========================================================
   STRONA - FAQ - START CSS
========================================================= */

.faq-page {
    width: 100%;
    margin: 0;
    padding: 0;
    padding-top: 50px;
    background: #fff;
    color: #111;
}

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


/* =========================================================
   GŁÓWNY KONTENER
========================================================= */

.faq-container {
    width: 1180px;
    max-width: calc(100% - 60px);

    margin: 0 auto;
}


/* =========================================================
   NAGŁÓWEK FAQ
========================================================= */

.faq-hero {
    padding: 65px 0 70px;

    background:
        radial-gradient(
            circle at 90% 5%,
            rgba(255,114,0,.035),
            transparent 30%
        ),
        #fff;
}


.faq-heading {
    max-width: 850px;

    margin-bottom: 38px;
}


.faq-eyebrow {
    margin-bottom: 8px;

    color: #ff7200;

    font-size: 17px;
    line-height: 1;

    font-weight: 900;

    letter-spacing: .5px;
}


.faq-heading h1 {
    margin: 0;

    color: #111;

    font-size: 48px;
    line-height: .98;

    font-weight: 900;

    letter-spacing: -1.8px;
}


.faq-title-line {
    width: 50px;
    height: 4px;

    margin: 17px 0 17px;

    background: #ff7200;
}


.faq-heading p {
    max-width: 680px;

    margin: 0 0 7px;

    color: #555;

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


/* =========================================================
   UKŁAD FAQ
========================================================= */

.faq-layout {
    display: grid;

    grid-template-columns: minmax(0, 1fr) 360px;

    gap: 45px;

    align-items: start;
}


/* =========================================================
   LISTA PYTAŃ
========================================================= */

.faq-list {
    display: flex;

    flex-direction: column;

    gap: 10px;
}


.faq-item {
    overflow: hidden;

    border: 1px solid #e8e8e8;

    border-radius: 9px;

    background: #fff;

    box-shadow:
        0 4px 18px rgba(0,0,0,.045);

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


.faq-item:hover {
    border-color: #ff7200;

    box-shadow:
        0 6px 22px rgba(0,0,0,.07);
}


/* =========================================================
   PYTANIE
========================================================= */

.faq-question {
    width: 100%;

    min-height: 62px;

    padding: 0 20px 0 23px;

    display: flex;

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

    gap: 20px;

    border: 0;

    background: #fff;

    color: #111;

    cursor: pointer;

    text-align: left;

    font-family: inherit;

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

    transition: background .2s ease;
}


.faq-question:hover {
    background: #fffaf6;
}


.faq-toggle {
    flex-shrink: 0;

    width: 29px;
    height: 29px;

    display: flex;

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

    border-radius: 50%;

    background: #ff7200;

    color: #fff;

    font-size: 21px;
    line-height: 1;

    font-weight: 400;
}


/* =========================================================
   ODPOWIEDŹ
========================================================= */

.faq-answer {
    display: none;

    padding: 0 23px 20px;

    border-top: 1px solid #f0f0f0;
}


.faq-answer p {
    max-width: 760px;

    margin: 16px 0 0;

    color: #555;

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


/* OTWARTE */

.faq-item.active {
    border-color: #ff7200;
}


.faq-item.active .faq-answer {
    display: block;
}


.faq-item.active .faq-question {
    background: #fffaf6;
}


/* =========================================================
   PRAWA KOLUMNA
========================================================= */

.faq-sidebar {
    position: relative;

    min-width: 0;
}


/* =========================================================
   MASKOTKA
========================================================= */

.faq-mascot {
    position: relative;

    height: 310px;

    margin-bottom: -5px;

    display: flex;

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

    overflow: visible;

    z-index: 2;
}


.faq-mascot img {
    width: 330px;
    max-width: 100%;
    height: auto;

    display: block;

    object-fit: contain;

    filter:
        drop-shadow(0 12px 18px rgba(0,0,0,.12));
}


/* =========================================================
   BOX KONTAKTOWY
========================================================= */

.faq-contact-box {
    position: relative;

    padding: 28px 27px 27px;

    border: 1px solid #ececec;

    border-radius: 12px;

    background: #fff;

    box-shadow:
        0 8px 28px rgba(0,0,0,.07);

    z-index: 3;
}


.faq-contact-icon {
    width: 54px;
    height: 54px;

    margin-bottom: 16px;

    display: flex;

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

    border-radius: 50%;

    background: #fff1e5;

    color: #ff7200;

    font-size: 24px;
}


.faq-contact-box h2 {
    margin: 0 0 8px;

    color: #111;

    font-size: 21px;
    line-height: 1.1;

    font-weight: 900;
}


.faq-contact-box p {
    margin: 0 0 20px;

    color: #555;

    font-size: 12px;
    line-height: 1.55;
}


.faq-contact-button {
    width: 100%;
    min-height: 45px;

    padding: 0 18px;

    display: flex;

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

    border-radius: 5px;

    background: #ff7200;

    color: #fff;

    text-decoration: none;

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

    transition:
        transform .2s ease,
        background .2s ease;
}


.faq-contact-button:hover {
    background: #e96500;

    transform: translateY(-2px);
}


/* =========================================================
   4 ZALETY
========================================================= */

.faq-benefits {
    margin-top: 45px;

    display: grid;

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

    gap: 14px;
}


.faq-benefit {
    min-height: 100px;

    padding: 18px 15px;

    display: flex;

    align-items: flex-start;

    gap: 12px;

    border: 1px solid #ededed;

    border-radius: 9px;

    background: #fff;

    box-shadow:
        0 4px 15px rgba(0,0,0,.035);
}


.faq-benefit-icon {
    flex-shrink: 0;

    width: 36px;
    height: 36px;

    display: flex;

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

    border-radius: 50%;

    background: #fff2e7;

    color: #ff7200;

    font-size: 22px;
}


.faq-benefit strong {
    display: block;

    margin: 1px 0 5px;

    color: #111;

    font-size: 14px;
    line-height: 1.2;

    font-weight: 900;
}


.faq-benefit span {
    display: block;

    color: #666;

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


/* =========================================================
   CTA
========================================================= */

.faq-cta {
    padding: 0 0 55px;

    background: #fff;
}


.faq-cta-inner {
    width: 1180px;
    max-width: calc(100% - 60px);

    min-height: 110px;

    margin: 0 auto;

    padding: 23px 32px;

    display: flex;

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

    gap: 25px;

    border: 1px solid #f0ddc9;

    border-radius: 10px;

    background:
        radial-gradient(
            circle at 90% 50%,
            rgba(255,114,0,.06),
            transparent 35%
        ),
        #fff5ea;
}


.faq-cta-inner h2 {
    margin: 0;

    color: #111;

    font-size: 21px;
    line-height: 1.05;

    font-weight: 900;
}


.faq-cta-inner h2 span {
    color: #ff7200;
}


.faq-cta-inner p {
    margin: 6px 0 0;

    color: #555;

    font-size: 10px;
}


.faq-cta-buttons {
    display: flex;

    gap: 9px;

    flex-shrink: 0;
}


.faq-btn {
    min-width: 145px;
    min-height: 42px;

    padding: 0 17px;

    display: inline-flex;

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

    border-radius: 4px;

    text-decoration: none;

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

    transition:
        transform .2s ease,
        background .2s ease;
}


.faq-btn:hover {
    transform: translateY(-2px);
}


.faq-btn-primary {
    background: #ff7200;

    color: #fff;
}


.faq-btn-outline {
    border: 1px solid #333;

    background: transparent;

    color: #111;
}


/* =========================================================
   RESPONSIVE — TABLET
========================================================= */

@media (max-width: 1000px) {

    .faq-layout {
        grid-template-columns: minmax(0, 1fr) 300px;

        gap: 25px;
    }

    .faq-heading h1 {
        font-size: 44px;
    }

    .faq-mascot {
        height: 270px;
    }

    .faq-mascot img {
        width: 290px;
    }

    .faq-benefits {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* =========================================================
   RESPONSIVE — MOBILE
========================================================= */

@media (max-width: 800px) {

    .faq-container {
        max-width: calc(100% - 40px);
    }

    .faq-hero {
        padding: 45px 0 50px;
    }

    .faq-heading {
        margin-bottom: 30px;
    }

    .faq-heading h1 {
        font-size: 39px;

        letter-spacing: -1px;
    }

    .faq-layout {
        grid-template-columns: 1fr;

        gap: 25px;
    }

    .faq-sidebar {
        display: grid;

        grid-template-columns: 1fr 1fr;

        gap: 20px;

        align-items: end;
    }

    .faq-mascot {
        height: 260px;

        margin: 0;
    }

    .faq-mascot img {
        width: 270px;
    }

    .faq-contact-box {
        height: fit-content;
    }

    .faq-benefits {
        grid-template-columns: repeat(2, 1fr);

        margin-top: 30px;
    }

    .faq-cta-inner {
        max-width: calc(100% - 40px);

        flex-direction: column;

        align-items: flex-start;
    }

}


@media (max-width: 600px) {

    .faq-container {
        max-width: calc(100% - 30px);
    }

    .faq-heading h1 {
        font-size: 34px;
    }

    .faq-heading p {
        font-size: 12px;
    }

    .faq-question {
        min-height: 58px;

        padding-left: 17px;
        padding-right: 17px;

        font-size: 12px;
    }

    .faq-answer {
        padding-left: 17px;
        padding-right: 17px;
    }

    .faq-sidebar {
        display: flex;

        flex-direction: column;
    }

    .faq-mascot {
        height: 250px;

        order: 1;
    }

    .faq-contact-box {
        order: 2;
    }

    .faq-benefits {
        grid-template-columns: 1fr;
    }

    .faq-cta-inner {
        max-width: calc(100% - 30px);

        padding: 22px 20px;
    }

    .faq-cta-inner h2 {
        font-size: 19px;
    }

    .faq-cta-buttons {
        width: 100%;

        flex-direction: column;
    }

    .faq-btn {
        width: 100%;
    }

}

/* =========================================================
   STRONA - FAQ - KONIEC CSS
========================================================= */

/* =========================================================
   POPRAWKA MOBILNA - START CSS
========================================================= */

html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 1180px;
    max-width: calc(100% - 40px);
    margin-left: auto;
    margin-right: auto;
}


/* MOBILE */

@media (max-width: 800px) {

    .container {
        width: 100%;
        max-width: calc(100% - 30px);
    }

    section,
    main,
    header,
    footer {
        max-width: 100%;
    }

    .about,
    .about-section,
    .for-business,
    .why-us,
    .how-we-work,
    .realizations,
    .services,
    .faq-layout {
        max-width: 100%;
    }

}

/* =========================================================
   MOBILE MENU
========================================================= */

.mobile-menu-button {
    display: none;

    width: 44px;
    height: 44px;

    padding: 0;

    border: 0;

    background: transparent;

    color: #fff;

    font-size: 30px;
    line-height: 1;

    cursor: pointer;
}


@media (max-width: 800px) {

    .header-inner {
        position: relative;

        min-height: 74px;
    }

    .mobile-menu-button {
        display: flex;

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

        margin-left: auto;
    }


    .main-nav {
        display: none;

        position: absolute;

        top: 100%;
        left: 0;
        right: 0;

        width: 100%;

        padding: 15px;

        background: #111;

        border-top: 1px solid #333;

        z-index: 9999;
    }


    .main-nav.mobile-open {
        display: block;
    }


    .main-menu {
        display: flex;

        flex-direction: column;

        align-items: stretch;

        gap: 0;

        width: 100%;
    }


    .main-menu li {
        width: 100%;
    }


    .main-menu li a {
        display: flex;

        width: 100%;

        min-height: 48px;

        align-items: center;

        padding: 0 10px;

        border-bottom: 1px solid #292929;

        font-size: 13px;
    }


    .header-phone {
        display: none;
    }

}

/* =========================================================
   CONTACT FORM 7
========================================================= */

.contact-form {
    width: 100%;
}


/* POJEDYNCZE POLE */

.contact-form .form-field {
    width: 100%;
    margin-bottom: 12px;
}


/* IMIĘ + TELEFON */

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;

    width: 100%;
}


/* INPUT + TEXTAREA */

.contact-form input[type="text"],
.contact-form input[type="tel"],
.contact-form input[type="email"],
.contact-form textarea {
    width: 100%;

    padding: 0 14px;

    border: 1px solid #ddd;
    border-radius: 4px;

    background: #fff;

    color: #111;

    font-family: inherit;
    font-size: 13px;

    outline: none;

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


/* WYSOKOŚĆ INPUTÓW */

.contact-form input[type="text"],
.contact-form input[type="tel"],
.contact-form input[type="email"] {
    height: 48px;
}


/* WIADOMOŚĆ */

.contact-form textarea {
    min-height: 125px;

    padding: 14px;

    resize: vertical;
}


/* PLACEHOLDER */

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #777;

    opacity: 1;
}


/* FOCUS */

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #ff7200;

    box-shadow:
        0 0 0 2px rgba(255,114,0,.08);
}


/* PRZYCISK */

.contact-form .form-submit {
    width: 100%;

    margin-top: 3px;
}


.contact-form input[type="submit"] {
    width: 100%;

    height: 48px;

    padding: 0 20px;

    border: 0;
    border-radius: 4px;

    background: #ff7200;

    color: #fff;

    font-family: inherit;

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

    letter-spacing: .2px;

    cursor: pointer;

    transition:
        background .2s ease,
        transform .2s ease;
}


.contact-form input[type="submit"]:hover {
    background: #e96500;

    transform: translateY(-1px);
}


/* =========================================================
   BŁĘDY CONTACT FORM 7
========================================================= */

.contact-form .wpcf7-not-valid-tip {
    margin-top: 4px;

    font-size: 10px;

    color: #d63638;
}


.contact-form .wpcf7-response-output {
    margin: 15px 0 0 !important;
    padding: 10px 12px !important;

    border-radius: 4px;

    font-size: 11px;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .contact-form .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-form .form-field {
        margin-bottom: 10px;
    }

    .contact-form input[type="text"],
    .contact-form input[type="tel"],
    .contact-form input[type="email"] {
        height: 46px;
    }

    .contact-form textarea {
        min-height: 115px;
    }

    .contact-form input[type="submit"] {
        height: 48px;
    }

}

/* =========================================================
   DLA FIRM — POPRAWKA MOBILE
========================================================= */

@media (max-width: 700px) {

    /* GALERIA ZDJĘĆ */

    .business-gallery {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .business-photo {
        height: 110px;
    }


    /* PASEK ZALET */

    .business-benefits {
        grid-template-columns: 1fr 1fr;
        width: 100%;
        box-sizing: border-box;
    }

    .business-benefits div {
        min-width: 0;
        box-sizing: border-box;

        padding: 12px 10px;

        font-size: 12px;
        line-height: 1.3;
    }

    .business-benefits div:nth-child(2) {
        border-right: none;
    }

    .business-benefits div:nth-child(3),
    .business-benefits div:nth-child(4) {
        border-top: 1px solid #333;
    }

}

/* =========================================================
   GLOBALNA POPRAWKA ODSTĘPU POD HEADEREM — MOBILE
========================================================= */

@media (max-width: 700px) {

    /* Wszystkie podstrony */
    body.page:not(.home) .site-header {
        position: relative;
        top: auto;
        left: auto;
    }

}