@charset "UTF-8";
/*
0-600px: Phone
600-900px: Tablet portrait
900-1200px: Tablet landscape
1800px+: Big desktop
*/
@keyframes moveInLeft {
  0% {
    opacity: 0;
    transform: translateX(-10rem);
  }
  80% {
    transform: translateX(1rem);
  }
  100% {
    opacity: 1;
    transform: translate(0);
  }
}
@keyframes moveInRight {
  0% {
    opacity: 0;
    transform: translateX(10rem);
  }
  80% {
    transform: translateX(-1rem);
  }
  100% {
    opacity: 1;
    transform: translate(0);
  }
}
@keyframes moveInBottom {
  0% {
    opacity: 0;
    transform: translateY(6rem);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}

html {
  font-size: 62.5%;
}
@media (max-width: 112.5em) {
  html {
    font-size: 80%;
  }
}
@media (max-width: 75em) {
  html {
    font-size: 70%;
  }
}
@media (max-width: 56.25em) {
  html {
    font-size: 60%;
  }
}
@media (max-width: 37.5em) {
  html {
    font-size: 50%;
  }
}

body {
  box-sizing: border-box;
  padding: 3rem;
}
@media (max-width: 56.25em) {
  body {
    padding: 0;
  }
}

body {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  /* font-size: 16px; */
  line-height: 1.7;
  color: #777;
}

.heading-primary {
  color: #fff;
  text-transform: uppercase;
  backface-visibility: hidden;
  margin-bottom: 8rem;
}
.heading-primary--main {
  display: block;
  font-size: 6rem;
  font-weight: 700;
  letter-spacing: 1rem;
  animation: moveInLeft 1s ease-out;
}
@media (max-width: 37.5em) {
  .heading-primary--main {
    letter-spacing: 1rem;
    font-size: 3.5rem;
  }
}
.heading-primary--sub {
  display: block;
  font-size: 3rem;
  font-weight: 400;
  letter-spacing: 0.5rem;
  animation: moveInRight 1s ease-out;
}
@media (max-width: 37.5em) {
  .heading-primary--sub {
    letter-spacing: 0.5rem;
    font-size: 2rem;
  }
}

.heading-secondary {
  font-size: 3rem;
  text-transform: uppercase;
  font-weight: 700;
  display: inline-block;
  background-image: linear-gradient(to right, #7ed56f, #00796b);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  letter-spacing: 0.2rem;
  transition: all 0.2s;
}
@media (max-width: 56.25em) {
  .heading-secondary {
    font-size: 3rem;
  }
}
@media (max-width: 37.5em) {
  .heading-secondary {
    font-size: 2.5rem;
  }
}
.heading-secondary:hover {
  transform: skewY(2deg) skewX(15deg) scale(1.1);
  text-shadow: 0.5rem 1 rem 2rem rgba(0, 0, 0, 0.2);
}

.heading-tertiary {
  font-size: 1.6rem;
  font-weight: 700;
  text-transform: uppercase;
}

.paragraph {
  font-size: 1.6rem;
}
.paragraph:not(:last-child) {
  margin-bottom: 3rem;
}

.u-center-text {
  text-align: center !important;
}

.u-margin-bottom-small {
  margin-bottom: 1.5rem !important;
}

.u-margin-bottom-medium {
  margin-bottom: 4rem !important;
}

.u-margin-bottom-big {
  margin-bottom: 8rem !important;
}

.u-margin-top-medium {
  margin-top: 4rem !important;
}

.u-margin-top-big {
  margin-top: 8rem !important;
}

.u-margin-top-huge {
  margin-top: 10rem !important;
}

.form__group:not(:last-child) {
  margin-bottom: 2rem;
}
@media (max-width: 37.5em) {
  .form__group:not(:last-child) {
    margin-bottom: 1.6rem;
  }
}
.form__input {
  font-size: 1.5rem;
  font-family: inherit;
  padding: 1.5rem 2rem;
  border-radius: 2px;
  background-color: rgba(255, 255, 255, 0.5);
  border: none;
  border-bottom: 3px solid transparent;
  width: 90%;
  display: block;
  transition: all 0.3s;
}
@media (max-width: 37.5em) {
  .form__input {
    width: 100%;
    padding: 1.3rem 1.6rem;
    font-size: 1.6rem;
  }
}
.form__input:focus {
  outline: none;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.1);
  border-bottom: 3px solid #55c57a;
}
.form__input:focus:invalid {
  border-bottom: 3px solid #192c3a;
}
.form__input::-webkit-input-placeholder {
  color: #999;
}
.form__label {
  font-size: 1.2rem;
  font-weight: 700;
  margin-left: 2rem;
  margin-top: 0.7rem;
  display: block;
  transition: all 0.3s;
}
@media (max-width: 37.5em) {
  .form__label {
    margin-left: 1.2rem;
  }
}
.form__input:placeholder-shown + .form__label {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4rem);
}
.form__text {
  min-height: 10rem;
  resize: vertical;
}
@media (max-width: 37.5em) {
  .form__text {
    min-height: 12rem;
  }
}

.language-switcher {
  position: absolute;
  top: 5rem;
  right: 18rem;
  z-index: 10000;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.language-switcher .lang-link {
  color: #fff;
  font-weight: 600;
  font-size: 1.4rem;
  margin: 0 0.2rem;
  text-decoration: none;
  transition: color 0.2s, opacity 0.2s;
}
.language-switcher .lang-link:hover {
  color: #55c57a;
}
.language-switcher .lang-link[aria-current=true] {
  opacity: 1;
  border-bottom: 2px solid #55c57a;
}
.language-switcher .sep {
  opacity: 0.7;
  color: #fff;
  margin: 0 0.2rem;
}

@media (max-width: 768px) {
  .language-switcher {
    top: 6rem;
    right: 13rem;
  }
  .language-switcher .lang-link {
    font-size: 1.3rem;
  }
}
.btn, .btn:link, .btn:visited {
  text-transform: uppercase;
  text-decoration: none;
  padding: 1.5rem 4rem;
  border-radius: 10rem;
  display: inline-block;
  transition: all 0.2s;
  position: relative;
  font-size: 1.6rem;
  border: none;
  cursor: pointer;
}
.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.2);
}
.btn:hover::after {
  transform: scaleX(1.4) scaleY(1.6);
  opacity: 0;
}
.btn:active, .btn:focus {
  outline: none;
  transform: translateY(-1px);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.2);
}
.btn--white {
  background-color: #fff;
  color: #777;
}
.btn--white::after {
  background-color: #fff;
}
.btn--green {
  background-color: #55c57a;
  color: #fff;
}
.btn--green::after {
  background-color: #55c57a;
}
.btn::after {
  content: "";
  display: inline-block;
  height: 100%;
  width: 100%;
  border-radius: 10rem;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transition: all 0.4s;
}
.btn--animated {
  animation: moveInBottom 0.5s ease-out 0.72s;
  animation-fill-mode: backwards;
}

.btn-text:link, .btn-text:visited {
  font-size: 1.6rem;
  color: #55c57a;
  display: inline-block;
  text-decoration: none;
  border-bottom: 1px solid #55c57a;
  padding: 3px;
  transition: all 0.2s;
}
.btn-text:hover {
  background-color: #55c57a;
  color: #fff;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}
.btn-text:active {
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.15);
  transform: translateY(0);
}

.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
  opacity: 0.15;
}
.bg-video__content {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.composition {
  position: relative;
}
.composition__photo {
  width: 55%;
  box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.4);
  border-radius: 2px;
  position: absolute;
  z-index: 10;
  transition: all 0.2s;
  outline-offset: 2rem;
}
.composition__photo--p1 {
  left: 0;
  top: -2rem;
}
.composition__photo--p2 {
  right: 0;
  top: 2rem;
}
.composition__photo--p3 {
  left: 20%;
  top: 10rem;
}
.composition__photo:hover {
  transform: scale(1.1) translateY(-0.5rem);
  box-shadow: 0 2.5rem 4rem rgba(0, 0, 0, 0.5);
  z-index: 20;
  outline: 1.5rem solid #55c57a;
}
.composition:hover .composition__photo:not(:hover) {
  transform: scale(0.95);
}

.feature-box {
  background-color: rgba(255, 255, 255, 0.8);
  font-size: 1.5rem;
  padding: 2.5rem;
  text-align: center;
  border-radius: 3px;
  box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.15);
  transition: all 0.3s;
  min-height: 38rem;
}
.feature-box__icon {
  width: 10rem;
  height: auto;
  margin-bottom: 1rem;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.feature-box:hover {
  transform: translateY(-1.5rem) scale(1.03);
}

.story {
  width: 75%;
  margin: 0 auto;
  box-shadow: 0 3rem 6rem rgba(0, 0, 0, 0.1);
  background-color: rgba(255, 255, 255, 0.6);
  border-radius: 3px;
  padding: 6rem;
  padding-left: 9rem;
  font-size: 1.6rem;
  transform: skewX(-12deg);
}
.story__shape {
  width: 15rem;
  height: 15rem;
  float: left;
  -webkit-shape-outside: circle(50% at 50% 50%);
  shape-outside: circle(50% at 50% 50%);
  -webkit-clip-path: circle(50% at 50% 50%);
  clip-path: circle(50% at 50% 50%);
  transform: translateX(-3rem) skewX(12deg);
  position: relative;
}
.story__img {
  height: 100%;
  transform: translateX(-5.5rem) scale(1);
  transition: all 0.5s;
}
.story__text {
  transform: skewX(12deg);
}
.story__text span {
  display: block;
  margin-top: 1.5rem;
  font-size: 1.1em;
  color: #55c57a;
  font-style: italic;
}
.story__caption {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, 20%);
  color: #fff;
  text-transform: uppercase;
  font-size: 1.7rem;
  text-align: center;
  opacity: 0;
  transition: all 0.5s;
  backface-visibility: hidden;
}
.story:hover .story__caption {
  opacity: 1;
  transform: translate(-50%, -50%);
}
.story:hover .story__img {
  transform: translateX(-3.5rem) scale(0.99);
  filter: blur(3px) brightness(80%);
}

.card {
  perspective: 150rem;
  -moz-perspective: 150rem;
  position: relative;
  height: 52rem;
}
.card__side {
  height: 52rem;
  transition: all 0.8s ease;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  backface-visibility: hidden;
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.15);
}
.card__side--front {
  background-color: #fff;
}
.card__side--back {
  transform: rotateY(180deg);
}
.card__side--back-1 {
  background-image: linear-gradient(to right bottom, #192c3a, #00cfff);
}
.card__side--back-2 {
  background-image: linear-gradient(to right bottom, #7ed56f, #55c57a);
}
.card__side--back-3 {
  background-image: linear-gradient(to right bottom, #7f7fd5, #86fde8);
}
.card:hover .card__side--front {
  transform: rotateY(-180deg);
}
.card:hover .card__side--back {
  transform: rotateY(0);
}
.card__picture {
  background-size: cover;
  height: 23rem;
  background-blend-mode: screen;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
  clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}
.card__picture--1 {
  background-image: linear-gradient(to right bottom, #192c3a, #00cfff), url(../img/site-revive.jpg);
}
.card__picture--2 {
  background-image: linear-gradient(to right bottom, #7ed56f, #55c57a), url(../img/landing-page.jpg);
}
.card__picture--3 {
  background-image: linear-gradient(to right bottom, #7f7fd5, #86fde8), url(../img/automat-1.jpg);
}
.card__heading {
  font-size: 2.6rem;
  font-weight: 400;
  text-transform: uppercase;
  text-align: right;
  color: #fff;
  position: absolute;
  top: 12rem;
  right: 2rem;
  width: 75%;
}
.card__heading-span {
  padding: 1rem 1.5rem;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
.card__heading-span--1 {
  background-image: linear-gradient(to right bottom, rgba(25, 44, 58, 0.85), rgba(0, 207, 255, 0.85));
}
.card__heading-span--2 {
  background-image: linear-gradient(to right bottom, rgba(126, 213, 111, 0.85), rgba(85, 197, 122, 0.85));
}
.card__heading-span--3 {
  background-image: linear-gradient(to right bottom, rgba(127, 127, 213, 0.85), rgba(134, 253, 232, 0.85));
}
.card__details {
  padding: 3rem;
}
.card__details ul {
  list-style: none;
  width: 80%;
  margin: 0 auto;
}
.card__details ul li {
  text-align: center;
  font-size: 1.6rem;
  padding: 1rem;
}
.card__details ul li:not(:last-child) {
  border-bottom: 1px solid #eee;
}
.card__cta {
  position: absolute;
  top: 75%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  text-align: center;
}
.card__sticker {
  position: absolute;
  top: -3.7rem;
  right: -3.2rem;
  width: 17.5rem;
  z-index: 2;
}
.card__logo {
  position: absolute;
  top: 6.2rem;
  left: 7.2rem;
  width: 20rem;
  z-index: 2;
}
@media (max-width: 37.5em) {
  .card__logo {
    top: 6.2rem;
    left: 14.2rem;
    width: 20rem;
    z-index: 2;
  }
}

.popup {
  height: 100vh;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  /* LEWA KOLUMNA: 2 obrazy jeden pod drugim (po 50%) */
  /* PRAWA KOLUMNA: treść wycentrowana */
  /* OBRAZY */
  /* Open states */
}
@supports (-webkit-backdrop-filter: blur(10px)) or (backdrop-filter: blur(10px)) {
  .popup {
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    background-color: rgba(0, 0, 0, 0.3);
  }
}
.popup__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(1100px, 90vw);
  height: min(700px, 85vh);
  background-color: #fff;
  box-shadow: 0 2rem 4rem rgba(0, 0, 0, 0.2);
  border-radius: 3px;
  display: flex;
  overflow: hidden;
  position: relative;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.25);
  transition: all 0.5s 0.2s;
}
@media (max-width: 37.5em) {
  .popup__content {
    width: 94vw;
    height: 86vh;
    flex-direction: column;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
}
.popup__left {
  flex: 0 0 40%;
  display: flex;
  flex-direction: column;
  height: 100%;
  gap: 0;
  min-height: 0;
}
@media (max-width: 37.5em) {
  .popup__left {
    flex: 0 0 45%;
  }
}
.popup__right {
  flex: 1 1 60%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3rem 5rem;
  min-width: 0;
}
@media (max-width: 37.5em) {
  .popup__right {
    padding: 2rem;
  }
}
.popup__img {
  flex: 1 1 0;
  min-height: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
  margin: 0;
}
.popup__text {
  font-size: 1.6rem;
  margin-bottom: 4rem;
  -moz-column-count: 1;
  column-count: 1;
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  -webkit-hyphens: auto;
  hyphens: auto;
}
.popup:target {
  opacity: 1;
  visibility: visible;
}
.popup:target .popup__content {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.popup__close:link, .popup__close:visited {
  color: #777;
  position: absolute;
  top: 2.5rem;
  right: 2.5rem;
  font-size: 3rem;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s;
  line-height: 1;
}
.popup__close:hover {
  color: #55c57a;
}

/* PRZYCISKI w popupie (desktop zostaje) */
.popup__buttons .btn:not(:last-child) {
  margin-right: 3rem;
}

/* PHONE ONLY: zachowujemy Twoją kolumnę i odstępy dla przycisków */
@media (max-width: 37.5em) {
  .popup__buttons {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
  }
  .popup__buttons .btn:not(:last-child) {
    margin-right: 0;
  }
  .popup__buttons .btn {
    width: 100%;
  }
}
/* Lista w treści */
.popup__list {
  margin: 1.5rem 0 2.5rem;
  padding-left: 0;
  list-style: none;
}
.popup__list li {
  margin: 1rem 0;
  line-height: 1.6;
  font-size: 1.6rem;
  color: #000;
}
.popup__list li strong {
  font-weight: 700;
  margin-right: 0.3rem;
  color: #55c57a;
  white-space: nowrap;
}

.faq-item {
  border: 2px solid transparent;
  border-radius: 1rem;
  margin-bottom: 3rem;
  box-shadow: 0 0.7rem 2.5rem rgba(0, 0, 0, 0.06);
  transition: border-color 0.24s, box-shadow 0.22s;
  width: 60rem; /* ← SZTYWNA szerokość wszystkich ramek */
  background: #fff;
  overflow: hidden;
}
@media (max-width: 37.5em) {
  .faq-item {
    width: 100%;
  }
}

.faq-item.active {
  border-color: #7ed56f;
  box-shadow: 0 1.5rem 4rem rgba(85, 197, 122, 0.11);
}

.faq-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2rem;
}
@media (max-width: 37.5em) {
  .faq-header {
    padding: 1.5rem 1.6rem;
  }
}

.faq-header h3 {
  font-size: 1.6rem;
  color: #777;
  font-weight: 700;
  margin: 0;
}
@media (max-width: 37.5em) {
  .faq-header h3 {
    word-break: break-word;
  }
}

.faq-answer p {
  font-size: 1.45rem;
}

.faq-toggle {
  border: none;
  background: #eee;
  width: 2.7rem;
  height: 2.7rem;
  border-radius: 50%;
  margin-left: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 0.3rem 0.7rem rgba(0, 0, 0, 0.07);
  padding: 0;
}

.faq-arrow {
  width: 1.1rem;
  height: 1.1rem;
  border-bottom: 0.19em solid #777;
  border-right: 0.19em solid #777;
  display: block;
  transform: rotate(45deg);
  transition: transform 0.35s cubic-bezier(0.19, 1, 0.22, 1);
  transform-origin: 50% 50%;
}

.faq-item.active .faq-arrow {
  transform: rotate(225deg);
}

.faq-answer {
  width: 100%;
  max-height: 0;
  opacity: 0.2;
  overflow: hidden;
  padding: 0 2rem;
  margin: 0;
  transition: max-height 0.28s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.19s;
}
@media (max-width: 37.5em) {
  .faq-answer {
    padding: 0 1.6rem;
  }
}

.faq-item.active .faq-answer {
  max-height: 18rem;
  opacity: 1;
  padding-bottom: 1.5rem;
}
@media (max-width: 37.5em) {
  .faq-item.active .faq-answer {
    padding-bottom: 1.5rem;
  }
}

.faq-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
@media (max-width: 37.5em) {
  .faq-list {
    align-items: stretch;
  }
}

.header {
  height: 95vh;
  background-image: linear-gradient(to right bottom, rgba(0, 121, 107, 0.8), rgba(126, 213, 111, 0.8)), url(../img/header-foto.jpg);
  background-size: cover;
  background-position: top;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 75vh, 0 100%);
  clip-path: polygon(0 0, 100% 0, 100% 75vh, 0 100%);
  position: relative;
}
@media (max-width: 37.5em) {
  .header {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 85vh, 0 100%);
    clip-path: polygon(0 0, 100% 0, 100% 85vh, 0 100%);
  }
}
.header__logo-box {
  position: absolute;
  top: 4rem;
  left: 4rem;
  right: auto;
  text-align: left;
  z-index: 2;
}
.header__logo {
  display: block;
  margin: 0;
  height: 20rem;
  width: auto;
}
@media (max-width: 112.5em) {
  .header__logo {
    height: 18rem;
  }
}
@media (max-width: 75em) {
  .header__logo {
    height: 14rem;
  }
}
@media (max-width: 56.25em) {
  .header__logo {
    height: 10rem;
  }
}
@media (max-width: 37.5em) {
  .header__logo {
    height: 7rem;
  }
}
.header__text-box {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.row {
  max-width: 114rem;
  margin: 0 auto;
}
.row:not(:last-child) {
  margin-bottom: 8rem;
}
@media (max-width: 56.25em) {
  .row:not(:last-child) {
    margin-bottom: 6rem;
  }
}
@media (max-width: 56.25em) {
  .row {
    max-width: 50rem;
  }
}
.row::after {
  content: "";
  display: table;
  clear: both;
}
.row [class^=col-] {
  float: left;
}
.row [class^=col-]:not(:last-child) {
  margin-right: 6rem;
}
@media (max-width: 56.25em) {
  .row [class^=col-]:not(:last-child) {
    margin-right: 0;
    margin-bottom: 6rem;
  }
}
@media (max-width: 56.25em) {
  .row [class^=col-] {
    width: 100% !important;
  }
}
.row .col-1-of-2 {
  width: calc((100% - 6rem) / 2);
}
.row .col-1-of-3 {
  width: calc((100% - 2 * 6rem) / 3);
}
.row .col-2-of-3 {
  width: calc(2 * (100% - 2 * 6rem) / 3 + 6rem);
}
.row .col-1-of-4 {
  width: calc((100% - 3 * 6rem) / 4);
}
.row .col-2-of-4 {
  width: calc(2 * (100% - 3 * 6rem) / 4 + 6rem);
}
.row .col-3-of-4 {
  width: calc(3 * (100% - 3 * 6rem) / 4 + 2 * 6rem);
}

.footer {
  background: #192c3a;
  color: #f7f7f7;
  padding: 8rem 0;
  font-size: 1.4rem;
  width: 100%;
}
.footer__container {
  max-width: 120rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
@media (max-width: 37.5em) {
  .footer__container {
    flex-direction: column;
    align-items: flex-start;
    gap: 3rem;
    padding: 0 2rem;
    width: 100%;
  }
}
.footer__socials {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}
@media (max-width: 37.5em) {
  .footer__socials {
    width: 100%;
    justify-content: center;
    gap: 1.8rem;
  }
}
.footer__socials .footer__icon {
  display: inline-block;
  transition: filter 0.3s, transform 0.2s;
  color: #fff;
}
.footer__socials .footer__icon .footer__img {
  width: 4.8rem;
  height: 4.8rem;
  display: block;
  filter: brightness(100);
  transition: filter 0.3s, transform 0.2s;
}
@media (max-width: 37.5em) {
  .footer__socials .footer__icon .footer__img {
    width: 4rem;
    height: 4rem;
  }
}
.footer__socials .footer__icon:hover .footer__img {
  filter: brightness(0) saturate(100%) invert(55%) sepia(80%) saturate(400%) hue-rotate(75deg) brightness(1.2);
  transform: scale(1.08);
}
.footer__logo {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 37.5em) {
  .footer__logo {
    width: 100%;
    justify-content: center;
  }
}
.footer__logo img {
  height: 20rem;
  width: auto;
  display: block;
}
@media (max-width: 37.5em) {
  .footer__logo img {
    height: 14rem;
  }
}
.footer__info {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5rem;
}
@media (max-width: 37.5em) {
  .footer__info {
    width: 100%;
    align-items: flex-start;
    text-align: left;
    gap: 0.6rem;
  }
}
.footer__info .footer__year {
  font-weight: 700;
  letter-spacing: 0.5px;
}
.footer__info .footer__claim {
  font-style: italic;
  color: #f7f7f7;
  font-size: 1.6rem;
}
@media (max-width: 37.5em) {
  .footer__info .footer__claim {
    font-size: 1.3rem;
  }
}

.navigation__checkbox {
  display: none;
}
.navigation__button {
  background-color: #fff;
  height: 7rem;
  width: 7rem;
  position: fixed;
  top: 6rem;
  right: 6rem;
  border-radius: 50%;
  z-index: 2000;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.1);
  text-align: center;
  cursor: pointer;
}
@media (max-width: 56.25em) {
  .navigation__button {
    top: 4rem;
    right: 4rem;
  }
}
@media (max-width: 37.5em) {
  .navigation__button {
    top: 3rem;
    right: 3rem;
  }
}
.navigation__background {
  height: 6rem;
  width: 6rem;
  border-radius: 50%;
  position: fixed;
  top: 6.5rem;
  right: 6.5rem;
  background-image: radial-gradient(#7ed56f, #00796b);
  z-index: 1000;
  transition: transform 0.8s cubic-bezier(0.86, 0, 0.07, 1);
}
@media (max-width: 56.25em) {
  .navigation__background {
    top: 4.5rem;
    right: 4.5rem;
  }
}
@media (max-width: 37.5em) {
  .navigation__background {
    top: 3.5rem;
    right: 3.5rem;
  }
}
.navigation__nav {
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1500;
  opacity: 0;
  width: 0;
  transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  overflow: hidden;
}
.navigation__list {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  list-style: none;
  text-align: center;
  width: 100%;
}
.navigation__item {
  margin: 1rem;
}
.navigation__link:link, .navigation__link:visited {
  display: inline-block;
  font-size: 3rem;
  font-weight: 300;
  color: #fff;
  padding: 1rem 2rem;
  text-decoration: none;
  text-transform: uppercase;
  background-image: linear-gradient(120deg, transparent 0%, transparent 50%, #fff 50%);
  background-size: 240%;
  transition: all 0.4s;
}
.navigation__link:link span, .navigation__link:visited span {
  margin-right: 1.5rem;
  display: inline-block;
}
.navigation__link:hover, .navigation__link:active {
  background-position: 100%;
  color: #55c57a;
  transform: translateX(1rem);
}
.navigation__checkbox:checked ~ .navigation__background {
  transform: scale(80);
}
.navigation__checkbox:checked ~ .navigation__nav {
  opacity: 1;
  width: 100%;
}
.navigation__icon {
  position: relative;
  margin-top: 3.5rem;
}
.navigation__icon, .navigation__icon::before, .navigation__icon::after {
  width: 3rem;
  height: 2px;
  background-color: #999;
  display: inline-block;
  transition: all 0.2s;
}
.navigation__icon::before, .navigation__icon::after {
  content: "";
  position: absolute;
  left: 0;
}
.navigation__icon::before {
  top: -0.8rem;
}
.navigation__icon::after {
  top: 0.8rem;
}
.navigation__button:hover .navigation__icon::before {
  top: -1rem;
}
.navigation__button:hover .navigation__icon::after {
  top: 1rem;
}
.navigation__checkbox:checked + .navigation__button .navigation__icon {
  background-color: transparent;
}
.navigation__checkbox:checked + .navigation__button .navigation__icon::before {
  top: 0;
  transform: rotate(135deg);
}
.navigation__checkbox:checked + .navigation__button .navigation__icon::after {
  top: 0;
  transform: rotate(-135deg);
}

.team-grid {
  display: flex;
  gap: 2rem;
  justify-content: center;
  align-items: stretch;
  margin-top: 4rem;
  flex-wrap: wrap;
  max-width: 110rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: -20rem;
}
@media (max-width: 56.25em) {
  .team-grid {
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
    max-width: 98vw;
  }
}

.team-member {
  background: #fff;
  border-radius: 2rem;
  box-shadow: 0 1.5rem 3.5rem rgba(0, 121, 107, 0.1);
  padding: 4rem 2.6rem 2.8rem 2.6rem;
  max-width: 28rem;
  min-width: 21rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  transition: box-shadow 0.3s, transform 0.3s;
  border: 2.5px solid transparent;
  background-clip: padding-box;
  cursor: pointer;
}
.team-member:hover {
  box-shadow: 0 2.5rem 6rem rgba(0, 121, 107, 0.14);
  transform: translateY(-7px) scale(1.04);
  border: 2.5px solid #66e6d7;
}

.team-member__photo {
  width: 15rem;
  height: 15rem;
  object-fit: cover;
  object-position: center 20%;
  border-radius: 50%;
  margin-bottom: 2.8rem;
  border: 5px solid #7ed56f;
  box-shadow: 0 0.5rem 1.6rem rgba(0, 121, 107, 0.13);
  background: conic-gradient(from var(--gradient-angle, 0deg), #7ed56f, #55c57a, #28b485, #66e6d7, #7ed56f);
  animation: rotation 8s linear infinite;
  padding: 0.18rem;
}

.team-member__name {
  font-size: 2rem;
  font-weight: 700;
  color: #777;
  margin-bottom: 0.2rem;
  letter-spacing: 0.03em;
  text-align: center;
}

.team-member__role {
  font-size: 1.4rem;
  font-weight: 500;
  color: #777;
  margin-bottom: 1.1rem;
  text-align: center;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.team-member__desc {
  font-size: 1.35rem;
  color: #777;
  text-align: center;
  margin-bottom: 0.6rem;
  line-height: 1.44;
}

@keyframes rotation {
  to {
    --gradient-angle: 360deg;
  }
}
/* FORCE CENTER: 3 karty w jednym rzędzie, zawsze centralnie */
@media (min-width: 1100px) {
  .about-me-section .team-grid {
    display: flex !important;
    flex-wrap: nowrap;
    gap: 2.5rem;
    /* trik: elastyczne "spacery" po bokach rzędu wymuszają idealne centrum */
    position: relative;
  }
  .about-me-section .team-grid::before,
  .about-me-section .team-grid::after {
    content: "";
    flex: 1 1 0; /* równa przestrzeń po lewej i prawej */
  }
  .about-me-section .team-member {
    flex: 0 0 28rem; /* stała szerokość karty */
    max-width: 28rem;
    width: 28rem;
    margin: 0; /* gdyby gdzieś było marginesowanie */
  }
}
@media (max-width: 900px) {
  .team-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
    max-width: 98vw;
  }
  .team-member {
    max-width: 90vw;
    min-width: 0;
  }
}
.about-me-section {
  background-color: #f7f7f7;
  padding: 25rem 0;
  margin-top: -20vh;
}

.section-about {
  background-color: #f7f7f7;
  padding: 25rem 0;
  margin-top: -20vh;
}
@media (max-width: 56.25em) {
  .section-about {
    padding: 20rem 0;
  }
}
@media (max-width: 37.5em) {
  .section-about {
    padding: 15rem 0;
    margin-bottom: 24rem;
  }
}

.section-features {
  padding: 20rem 0;
  background-image: linear-gradient(to right bottom, rgba(126, 213, 111, 0.8), rgba(0, 121, 107, 0.8)), url(../img/section-2.jpg);
  background-size: cover;
  transform: skewY(-6deg);
  margin-top: -10rem;
}
.section-features > * {
  transform: skewY(7deg);
}

.section-project {
  background-color: #f7f7f7;
  padding: 25rem 0 15rem 0;
  margin-top: -10rem;
}

.section-stories {
  position: relative;
  padding: 15rem 0;
}

.section-book {
  padding: 15rem 0;
  background-image: linear-gradient(to right bottom, #7ed56f, #00796b);
}

.section-faq {
  margin-top: 7rem;
}

.book {
  background-image: linear-gradient(105deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.9) 50%, transparent 50%), url(../img/contact-1.jpg);
  background-size: 100%;
  height: 65rem;
  border-radius: 3px;
  box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.2);
  margin-bottom: rem;
}
@media (max-width: 37.5em) {
  .book {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    /* pełne tło pod form (jak u Jonasa na phone: biała „kartka” na całości) */
    background-image: linear-gradient(to right, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.92) 100%), url(../img/contact-1.jpg);
    height: auto;
  }
}
.book__form {
  width: 50%;
  padding: 6rem;
}
@media (max-width: 37.5em) {
  .book__form {
    width: 100%;
    padding: 3rem;
  }
}

/*# sourceMappingURL=style.css.map */
