
:root {
  
  --bg: linear-gradient(135deg, #529055, #0a2709);
  --bg-light: #ffffff;
  --main: #075c3b;
  --second: #079457;
  --accent: #f4f809;
  --text: #484c48;
  --font-base: "Lato", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-size: 18px;
  --line-height: 1.5;
  --border-radius: 8px;
}

html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

*,
*::before,
*::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
[id] {
  scroll-margin-top: 120px;
}
a {
   transition: all 0.3s ease-in-out;
}

body {
    position: relative;
    background-color: var(--bg-light);
    color: var(--text);
    font-family: var(--font-base);
    font-weight: 400;
    font-size: var(--font-size);
    overflow-x: hidden;
    line-height: var(--line-height);
}

.section {
    background-image: url('../images/bg.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 8px;
    color: #fff;
    padding: 40px 0;
}

.container {
    max-width: 1220px;
    margin: 0 auto;
    padding: 0 20px;
}

.section__title {
    color: #fff;
    font-size: 2.2rem;
    font-weight: 700;
    margin: 40px 0;
    text-align: center;
    text-shadow: 0 0 10px rgba(0,0,0,0.8),
                 0 0 20px rgba(0,0,0,0.6);
}

.section__title-dark {
    color: var(--main);
    font-weight: 700;
    font-size: 2.2rem;
    margin: 40px 0;
    text-align: center;
}

.section__subtitle {
    color: var(--text);
    font-size: 1.2rem;
    text-align: center;
    line-height: 1.7;
    max-width: 700px;
    margin: 2rem auto;
}

.section__subtitle-dark {
    color: var(--text);
    font-size: 1.2rem;
    text-align: center;
    line-height: 1.7;
    max-width: 700px;
    margin: 2rem auto;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    
}

.grid__item {
    background: #fdfdfd;
    border-radius: 14px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.03);
    padding: 30px 25px;
    text-align: center;
    transition: all 0.3s ease;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.grid__item:hover {
    box-shadow: 0 12px 30px rgba(0,0,0,0.1);
    transform: translateY(-6px);
}

.grid__item i {
    color: var(--main);
    font-size: 2rem;
    margin: 1rem 0;
}

.grid__item h2,
.grid__item h3{
    color: var(--main);
    font-size: 1.6rem;
    margin-bottom: 5px;
}

.grid__item p {
    color: #414340;
    font-size: 1.2rem;
    line-height: 1.6;
}

.more {
    color: #fff;
    display: block;
    font-size: 2rem;
    font-weight: 600;
    transition: all 0.5s ease-in-out;
    text-decoration: none;
    transition: 0.2s;
    padding: 2rem 0;
}

.more:hover {
    scale: calc(1.2);
    text-decoration: underline;
}

.header {
    color: #fff;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    transition: background-color 0.3s ease;
    width: 100%;
    z-index: 1000;
}

.header.scrolled {
    position: sticky;
    top: 0;
    background: rgba(95, 98, 96, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

.header__wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

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

.nav__link {
    position: relative;
    color: var(--color-main);
    font-size: 16px;
    font-weight: 700;
    font-style: italic;
    padding: 5px;
    line-height: 200%;
    transition: all .3s ease;
    text-decoration: none;
}

.nav__link::after {
    position: absolute;
    background: var(--second);
    bottom: -5px; 
    box-shadow: 0 0 18px var(--main); 
    content: "";
    height: 1px; 
    left: 0;
    transition: width 0.4s ease;
    width: 0%; 
}

.nav__link:hover {
    color: var(--second);
}

.nav__link:hover::after {
    width: 100%;
}

.hamburger {
    
    border-radius: 2px;
    cursor: pointer;
    display: none;
}

.bar {
    background: linear-gradient(135deg, #49f552, #1b3a1a);
    border-radius: 2px;
    height: 2px;
    margin: 5px auto;
    transition: all 0.3s ease;
    width: 40px;
}


.btn {
    background: var(--bg);
    border-radius: 5px;
    color: var(--accent);
    font-weight: 500;
    padding: 10px 18px;
    transition: all 0.5s ease-in-out;
}

.btn:hover {
    background-color: var(--second);
    scale: calc(1.1);
}

.hero {
    position: relative;
    background: var(--main);
    background-image: url('../images/hero-1.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 8px;
    color: #fff;
    min-height: 80vh;
    overflow: hidden;
    padding: 80px 0;
}
.hero::before {
    position: absolute;
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0.5) 30%,
        rgba(0, 0, 0, 0.2) 55%,
        rgba(0, 0, 0, 0) 80%
    );
    content: "";
    inset: 0;
    z-index: 1;
}
.page__hero {
    position: relative;
    background: var(--main);
    background-image: url('../images/termomodernizacja-domu.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 8px;
    color: #fff;
    min-height: 80vh;
    overflow: hidden;
    padding: 80px 0;
}


.hero__wrapper {
    position: relative;
    gap: 20px;
    padding-top: 200px;
    z-index: 2;
}

.hero__top {
    max-width: 400px;
}  

.hero__title {
    font-size: 2rem;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 2;
}

.hero__subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero__actions {
    display: flex;
    justify-content:flex-start;
    align-items: center;
    gap: 20px;
    padding-top: 50px;
}

.hero__btn {
    border-radius: 8px;
    display: inline-block;
    min-width: 240px;
    padding: 12px 25px;
    transition: all 0.5s ease-in-out;
    text-transform: uppercase;
    text-align: center;
}

.hero__btn--primary {
    background-color: var(--main);
    border: 1px solid var(--main);
    color: #fff;
}

.hero__btn--primary:hover {
    background-color: var(--second);
    scale: calc(1.1);
}

.hero__btn--secondary {
    background: rgba(95, 98, 96, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    border: 1px solid var(--accent);
}

.hero__btn--secondary:hover {
    background-color: var(--main);
    scale: calc(1.1);
}


/* =========================
   BENEFITS SECTION
========================= */

.fa-solid {
    font-weight: 100;
}

.bottom__benefits {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 30px 0;
}

.bottom__benefits li {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.bottom__benefits li i {
    color: var(--main); 
    font-size: 2rem; 
}

.bottom__benefits li h2 {
    color: var(--main);
    text-align: center;
}


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

.intro {
    text-align: center;
}


/* =========================
   INSULATION SECTION
========================= */
.insulation {
    background: none;
}

.scroll-indicator {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: #111;
    text-decoration: none;
}

.scroll-indicator__circle {
    animation: pulse 2s infinite;
    border-radius: 50%;
    border-color: var(--main);
    box-shadow: 0 0 15px rgba(7, 36, 15, 0.989);
    height: 80px;
    position: absolute;
    width: 80px;
}

.scroll-indicator i {
    animation: bounce 2s infinite;
    color: var(--main);
    font-size: 20px;
    z-index: 1;
}


@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    70% {
        transform: scale(1.5);
        opacity: 0;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* ANIMACJA STRZAŁKI */
@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(6px);
    }
}

.insulation__content {
    max-height: 60px; 
    overflow: hidden;
    position: relative;
    transition: max-height 0.5s ease;
}

.insulation__content.active {
    max-height: 100%;
}

.insulation__content.active::after {
    display: none;
}

.insulation__toggle {
    background: var(--main);
    border-radius: 8px;
    border: none;
    color: var(--accent);
    cursor: pointer;
    display: block;
    font-size: 1.2rem;
    font-weight: 500;
    margin: 0 auto;
    padding: 30px 40px;
    width: 300px;
}

/* ETAP */
.step {
    margin: 60px 0;
}

/* TYTUŁ ETAPU */
.step h3 {
    color: var(--main);
    font-size: 2rem;
    margin-bottom: 20px;
}
.step p {
    margin: 20px 0;
}
/* UKŁAD: tekst + obraz */
.step__content {
    align-items: center;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
}

/* TEKST */
.step__text p {
    margin-bottom: 15px;
    line-height: 1.7;
    color: #444;
}

.step__text ul {
    color: var(--main);
    margin: 15px 0;
    padding-left: 20px;
}

.step__text li {
    margin-bottom: 8px;
    list-style: disc;
}

.step p:last-child {
    background-color: #f3f9f5;
    border-radius: 8px;
    color: #111;
    font-weight: 500;
    margin: 20px 0;
    padding: 10px 20px;
}

/* OBRAZ */
.step__image img {
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    border-radius: 16px;
    display: block;
    object-fit: cover;
    transition: all 0.3s ease-in-out;
    width: 100%;
}

.step__image img:last-child {
    margin: 30px 0;
}

/* CO DRUGI ETAP - ODWRÓCONY UKŁAD */
.step:nth-child(even) .step__content {
    grid-template-columns: 1fr 1.2fr;
}

.step:nth-child(even) .step__image {
    order: -1;
}


.step:hover img {
    transform: scale(1.02);
}


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

.services {
    background: none;
}

.services__wrapper {
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.services__grid {
    grid-template-columns: repeat(2, 1fr);
}
.services__grid-item {
    background: var(--bg);
    border: 1px solid var(--bg);
}
.services__grid-item h2 {
    font-weight: 500;
    font-size: 2rem;
    color: #fff;
}

.services__grid .fa-solid {
    font-size: 2rem;
    color: var(--accent);
}


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



.process {
    border-radius: 8px;
    background-size: cover;
    background-image: url(../images/bg.webp);
    background-repeat: no-repeat;
    background-position: center;
}

.process__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    list-style: none;
    padding: 0;
}

.process__item {
    position: relative;
    background: rgba(95, 98, 96, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    border-radius: 16px;
    overflow: hidden;
    padding: 25px 20px;
    transition: all 0.3s ease;
    text-align: center;
}

.process__item::before {
    position: absolute;
    content: "";
    border-radius: 16px;
    background: linear-gradient(
        120deg,
        rgba(255,255,255,0.4),
        rgba(255,255,255,0.05)
    );
    inset: 0;
    opacity: 0.4;
    pointer-events: none;
}
.process__item:hover {
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    transform: translateY(-6px) scale(1.02);
}

.process__icon {
    align-items: center;
    background: rgba(58, 84, 59, 0.12);
    border-radius: 50%;
    color: var(--main);
    display: inline-flex;
    font-size: 1.8rem;
    justify-content: center;
    height: 60px;
    margin: 0 auto 15px;
    width: 60px;
}

.process__step {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.process__desc {
    color: #fff;
    font-size: 0.95rem;
    line-height: 1.6;
}


/* =========================
   PROJECTS SECTION
========================= */

.projects {
   background: #f9f9f9;
    
}

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

.projects__item {
    text-align: center;
}

.projects__img {
    border-radius: 12px;
    display: block;
    margin-bottom: 10px;
    width: 100%;
}

.projects__name {
    color: #1d1d1d;
    font-size: 1rem;
    font-weight: 600;
}


/* =========================
   CLEAN AIR PRO SECTION
========================= */

.clean-air {
    color: #0a2709;
    padding: 50px 0;
    text-align: center;
}

.clean-air .grid__item {
    border: 1px dotted var(--main);
}


/* =========================
   TAX SECTION
========================= */

.tax {
    text-align: center;
}


/* =========================
   WHY-US SECTION
========================= */

.why-us { 
    background-color: #f9f9f9;
}

.why-us__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.why-us__grid i {
    color: var(--main);
    margin-bottom: 15px;
}

.why-us__grid h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.why-us__grid p {
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
}

.why-us__cta {
    margin-top: 40px;
    text-align: center;
}


/* =========================
   TESTIMONIALS SECTION
========================= */

.testimonials {
    background: #f9f9f9;
  padding: 80px 0;
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.testimonial {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  position: relative;
  padding: 30px 25px;
  gap: 15px;
}

.testimonial__icon {
  font-size: 28px;
  color: #dc6464;
}

.testimonial__text {
  color: #333;
  font-size: 16px;
  line-height: 1.6;
}

.testimonial__author {
  color: #222;
  font-weight: 600;
  margin-top: auto;
}


/* =========================
   FAQ SECTION
========================= */
/* Podstawowy wygląd sekcji */
#faq {
  font-family: 'Arial', sans-serif;
  max-width: 900px;
  margin: 50px auto;
  padding: 0 20px;
}

/* FAQ item */
.faq-item {
  border-top: 1px dotted var(--main);
  padding: 20px 0;
}

.faq-question {
  cursor: pointer;
  font-size: 1.2rem;
  margin: 0;
  position: relative;
  transition: color 0.5s;
}

.faq-question::after {
    position: absolute;
    content: '+';
    font-size: 1.5rem;
    right: 0;
    transition: transform 0.5s;
}

.faq-question.active::after {
  content: '-';
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0;
}

.faq-answer.open {
  max-height: 1000px; /* duża wartość dla animacji */
  padding-top: 10px;
}

.faq-answer p,
.faq-answer ul {
  margin: 0 0 10px 0;
  line-height: 1.6;
}

.faq-answer ul {
  padding-left: 20px;
}


/* =========================
   CONTACT SECTION
========================= */

.contact {
    background-size: cover;
    background-image: url(../images/bg.webp);
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 8px;
    color: #fff;
    margin-top: 0;
}
.contact__wrapper {
    align-items: center;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    display: flex;
    justify-content: center;
}

.form {
    max-width: 720px;
    margin: 50px auto;
    padding: 30px;
}

.form__title {
    color: var(--main);
    font-size: 22px;
    margin: 0 0 6px 0;
    text-align: center;
}
.form__subtitle {
    color: var(--main);
    font-size: 14px;
    margin: 0;
}

.form__row {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-top: 14px;
}

.form__item {
    display: flex;
    flex-direction: column;
    margin-top: 12px;
    width: 100%;
}

.form__label {
    color: var(--main);
    font-size: 13px;
    margin-bottom: 8px;
}

.form__input::placeholder,
.form__textarea::placeholder {
    color: #020202;
    opacity: 0.5;
}

.form__input,
.form__select,
.form__textarea,
.form__consent input {
    border-radius: 8px;
    border: 1px solid #cdd8cf;
    background: transparent;
    color: black;
    font-size: 14px;
    outline: none;
    padding: 12px 14px;
    transition: box-shadow 0.15s, border-color 0.15s;
}

.form__input:focus,
.form__select:focus,
.form__textarea:focus {
    box-shadow: 0 6px 18px rgba(99, 102, 241, 0.08);
    border-color: rgba(99, 241, 116, 0.25);
}

.form__textarea {
    min-height: 110px;
    resize: vertical;
}

.form__small {
    color: var(--muted);
    font-size: 12px;
    margin-top: 6px;
}

.form__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-top: 18px;
}

.form__button {
    appearance: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 300;
    font-size: 1rem;
    padding: 12px 18px;
    text-align: center;
    transition: all 0.3s ease;
    width: 100%;
}

.form__button--primary {
    background: var(--main);
    border: 1px solid var(--color-accent);
    color: #fff;
}

.form__button--primary:hover {
    background: transparent;
    box-shadow: 0 6px 18px rgba(255, 107, 53, 0.14);
}

.form__button--ghost {
    border: 1px solid var(--color-accent);
    box-shadow: 0 6px 18px rgba(255, 107, 53, 0.14);
    cursor: pointer;
}

.form__button--ghost:hover {
    background: var(--accent);
    color: #fff;
}

.form__consent {
    align-items: flex-start;
    color: var(--main);
    display: flex;
    font-size: 13px;
    gap: 10px;
    margin-top: 10px;
}

.form__consent input {
    appearance: none;
    border-radius: 4px;
    color: var(--main);
    display: inline-block;
    height: 16px;
    position: relative;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 16px;
}

.form__consent input:checked {
    background: var(--main);
}

.form__consent input:checked::after {
    position: absolute;
    content: '✔';
    color: white;
    font-size: 1.2rem;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.form__error {
    color: #8a3333;
    font-size: 13px;
    margin-top: 8px;
}

.service__area {
    color: var(--text);
    background: none;
    padding-bottom: 0;
}
.service__area-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 10px;
    margin: 40px auto;
}

.service__area-wrapper-bottom {
    max-width: 600px;
    margin: 0 auto;
}

.map {
    border-radius: 8px;
    width: 100%;
}


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

.footer {
    background-color: #1f251f;
    background-image: url("../images/bg.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 8px;
    color: #dbdcd8;
    position: relative;
    padding: 60px 0 30px;
}

.footer::before {
    position: absolute;
    background: rgba(0, 0, 0, 0.55);
    content: "";
    inset: 0;
    z-index: 0;
}

.footer .container {
    position: relative;
    z-index: 1;
}

.footer__grid {
    background: rgba(96, 96, 96, 0.63);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding: 40px;
}

.footer__title {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.footer__text {
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer__list {
    list-style: none;
    padding: 0;
}

.footer__list li {
    margin-bottom: 6px;
}

.footer__list a {
    color: #cde0c8;
    font-size: 0.9rem;
    text-decoration: none;
}

.footer__list a:hover {
    color: #fff;
}

/* TELEFON */
.footer__phone {
    color: #fff;
    display: inline-block;
    font-weight: bold;
    margin-top: 10px;
    text-decoration: none;
}

/* LISTA MIAST – 2 KOLUMNY */
.footer__list--cities {
    columns: 2;
}

/* LINKI PRAWNE */
.footer__legal {
    margin-top: 30px;
    text-align: center;
}

.footer__legal-list {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
}

.footer__legal-list a {
    color: #aaa;
    font-size: 0.85rem;
    text-decoration: none;
}

.footer__legal-list a:hover {
    color: #fff;
}

/* BOTTOM */
.footer__bottom {
    color: #aaa;
    font-size: 0.8rem;
    margin-top: 30px;
    text-align: center;
}



@media (max-width: 1200px) {
     .bar {
        display: block;
    }
    .hamburger {
        display: block;
    }
    .hamburger.active .bar:nth-child(1) {
        transform: translateX(50%) ; 
    }
    
    .hamburger.active .bar:nth-child(2) {
        transform: translateX(25%); 
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: translateX(0%); 
    }
    
    .nav__menu {
        background: rgba(202, 205, 203, 0.9);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border: 1px solid rgba(255, 255, 255, 0.3);
        box-shadow: 0 8px 32px rgba(0,0,0,0.1);
        color: var(--main);
        position: fixed;
        left: -100%;
        top: 70px;
        padding-bottom: 20px;
        display: flex;
        flex-direction: column;
        gap: 0;
        text-align: center;
        transition: 0.5s;
        width: 100%;
    }
    .nav__item {
        margin: 16px 0;
        
    }
    .nav__menu.active {
        left: 0;
    }
}
@media (max-width: 1024px) {
    .grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .services__grid {
        grid-template-columns: 1fr;
    }
    
}

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

    .step:nth-child(even) .step__image {
        order: 0;
    }
    .bottom__benefits li i {
        font-size: 1.5rem; 
    }
    
    .bottom__benefits li h2 {
        font-size: 1rem; 
    }

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

    .footer__list--cities {
        columns: 1;
    }
    
 
}


/* RESPONSYWNOŚĆ */
@media (max-width: 768px) {
   
    .step:nth-child(even) .step__content {
        grid-template-columns: 1fr;  
    }
   
    .process__list {
        grid-template-columns: repeat(2, 1fr);
    }

}

 
@media (max-width: 670px) {
    .hero__actions {
       flex-wrap: wrap;
    }
    .bottom__benefits li i {
       font-size: 1rem; 
    }
    
    .bottom__benefits li h2 {
      font-size: 0.5rem; 
    }
    .process {
        padding: 60px 0;
    }
    .process__list,
    .projects__grid,
    .grid {
        grid-template-columns: 1fr;
    }
    .form__row {
        flex-wrap: wrap;
    }
    
}
@media (max-width: 470px) {
    .hero {
        background-image: url(../images/hero-2.png);
        
    }
    .hero__title {
        font-size: 1.5rem;
    }
    
}