﻿@import url("reset.css");

@import url("https://fonts.googleapis.com/css?family=Inter:regular,500,600,700&display=swap");

/* ************COMMON************ */

.logo {
  font-weight: 700;
  font-size: 2.25rem;
  display: flex;
  align-items: center;
}

.logo__image {
  height: 18px;
  width: auto;
  display: block;
  object-fit: contain;
}

html {
  scroll-behavior: smooth;
  height: 100%;
}

body {
  font-family: "Inter", sans-serif;
  font-size: 1.1rem;
  color: #303a4d;
  height: 100%;
}

#nasza-oferta {
  scroll-margin-top: 100px;
}

#poznaj-nas {
  scroll-margin-top: 0;
}

[class*="__container"] {
  max-width: 72.624rem;
  margin: 0 auto;
  padding: 0 0.938rem;
}

.button {
  font-weight: 600;
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
  transition: all 0.3s;
  color: #fff;
  background-color: #303a4d;
}

.title {
  font-size: clamp(28px, 2.5vw, 42px);
  font-weight: 600;
  line-height: 1.2;
}

.wrapper {
  min-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  overflow: hidden;
}

/* ************HEADER************ */

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(34, 34, 34, 0.9);
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.header__container {
  display: grid;
  grid-template-columns: 15% 70% 15%;
  align-items: center;
  min-height: 5.75rem;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

.header__section {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.header__section--logo {
  justify-content: center;
  padding-left: 0.938rem;
}

.header__section--menu {
  justify-content: center;
}

.header__section--button {
  justify-content: center;
  padding-right: 0.938rem;
}

.header__logo {
  position: relative;
  z-index: 2;
  color: #fff;
  font-weight: 600;
}

.header__navigation {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.menu__body {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.menu__list {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  list-style: none;
}

.menu__link {
  font-weight: 600;
  position: relative;
  color: #fff;
  transition: all 0.3s;
  padding: 0 0 0.25rem 0;
  white-space: nowrap;
  font-size: clamp(0.75rem, 0.5rem + 0.5vw, 1.1rem);
  line-height: 1.2;
  display: inline-block;
  vertical-align: middle;
}

.menu__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #00b1cf;
  transition: width 0.3s ease;
}

.menu__link:hover::after {
  width: 100%;
}

.actions-header {
  display: flex;
  align-items: center;
  gap: 0.624rem;
}

.icon-menu {
  display: none;
}

.actions-header__button {
  font-weight: 600;
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.5rem 1rem;
  border: none;
  background-color: #00b1cf;
  color: #fff;
  border-radius: 30px;
  transition: all 0.3s;
  position: relative;
  z-index: 2;
  text-align: center;
  line-height: 1.3;
  font-size: 0.8rem;
  height: auto;
}

.actions-header__button--mobile {
  display: none;
}

.actions-header__button:hover {
  transform: scale(1.1);
}

.actions-header__button span {
  display: block;
  text-align: center;
  line-height: 1.2;
}

.phone-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}

/* Header phone link */
.header__phone {
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
  font-size: clamp(0.75rem, 0.5rem + 0.5vw, 1.1rem);
  padding: 0 0 0.25rem 0;
  display: inline-block;
  line-height: 1.2;
  vertical-align: middle;
}

.header__phone:hover {
  text-decoration: underline;
}

/* ****************PAGES**************** */
.page {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
}

.page__main {
  padding-bottom: 80px;
}

/* *****************HOME**************** */

.main {
  background: url("../img/home/tlo ciemne.jpg") center / cover no-repeat;
  min-height: 100vh;
  background-attachment: fixed;
  background-position: center;
  position: relative;
}

.main::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 0;
}

.main__container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-top: 18rem;
  padding-bottom: 4rem;
  padding-left: 1.67vw;
  padding-right: 1.67vw;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  position: relative;
  z-index: 1;
}

.main__caption {
  text-transform: uppercase;
  margin-bottom: 1rem;
  font-weight: 500;
}

.main__title {
  font-size: 5.5rem;
  font-weight: 600;
  margin-bottom: 2rem;
  color: #fff;
  max-width: 80rem;
  padding: 0 2rem;
  box-sizing: border-box;
}

.main__text {
  margin-bottom: 3.5rem;
  max-width: 33.375rem;
  line-height: 150%;
  letter-spacing: 0.02em;
  color: #fff;
}

.main__button {
  font-weight: 600;
  display: inline-block;
  padding: 1.25rem 3rem;
  border-radius: 30px;
  transition: all 0.3s;
  color: #fff;
  background-color: transparent;
  border: 2px solid #fff;
  letter-spacing: 0.02em;
  font-size: 1.375rem;
  line-height: 110%;
}

.main__button:hover {
  background-color: #fff;
  color: #303a4d;
  transform: scale(1.05);
}

.outro_home {
  background: url("../img/tlo_contact.jpg") center / cover no-repeat;
  background-attachment: fixed;
  background-position: center;
  position: relative;
}

.outro_home::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 0;
}

/* ************MISSION SECTION**************** */

.mission-section {
  background-color: #fff;
}

.mission-section__container {
  padding-top: 8.75rem;
  padding-bottom: 8.75rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.mission-section__title {
  margin-bottom: 2rem;
  color: #303a4d;
}

.mission-section__text {
  font-size: 1.125rem;
  line-height: 1.7;
  color: #555;
  letter-spacing: 0.02em;
}

.mission-section__text p:not(:last-child) {
  margin-bottom: 1.5rem;
}

.mission-section__image {
  width: 100%;
  height: 500px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.mission-section__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ************EVSTACJA SECTION**************** */

.evstacja-section {
  background-color: #fff;
}

.evstacja-section__container {
  padding-top: 8.75rem;
  padding-bottom: 8.75rem;
}

.evstacja-section__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.evstacja-section__title {
  margin-bottom: 2rem;
  color: #303a4d;
}

.evstacja-section__text {
  font-size: 1.125rem;
  line-height: 1.7;
  color: #555;
  letter-spacing: 0.02em;
}

.evstacja-section__text p:not(:last-child) {
  margin-bottom: 1.5rem;
}

.evstacja-section__image {
  width: 100%;
  height: 500px;
}

.evstacja-section__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}


.evstacja-section__badges {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.evstacja-section__badge-link {
  display: inline-block;
  transition: transform 0.3s ease;
}

.evstacja-section__badge-link:hover {
  transform: scale(1.1);
}

.evstacja-section__badge {
  height: 50px;
  width: auto;
  display: block;
}

.evstacja-section__new-container {
  margin-top: 3rem;
  min-height: 500px;
}

.evstacja-section__additional-container {
  margin-top: 3rem;
}

.features-carousel-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: center;
  width: 100%;
  height: 100%;
}

.features-carousel {
  position: relative;
  width: 100%;
  max-width: 200px;
  height: 280px;
}

.carousel-slide {
  display: none;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  position: relative;
}

.carousel-slide.active {
  display: block;
  opacity: 1;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 12px;
  display: block;
}


.carousel-progress {
  position: absolute;
  bottom: 10px;
  left: 10px;
  right: 10px;
  height: 4px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 2px;
  overflow: hidden;
  z-index: 10;
}

.carousel-progress-bar {
  height: 100%;
  width: 0%;
  background: #00b1cf;
  border-radius: 2px;
  transition: width 0.1s linear;
  will-change: width;
}


.feature-description {
  display: none;
  font-size: 1.125rem;
  line-height: 1.7;
  color: #555;
  letter-spacing: 0.02em;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}

.feature-description.active {
  display: block;
  opacity: 1;
}

.evstacja-section__steps {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: flex-start;
}

.evstacja-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  flex: 1 1 0;
  min-width: 0;
  position: relative;
}

.evstacja-step__image {
  flex-shrink: 0;
  width: 200px;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.evstacja-step__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.evstacja-step__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
}

.evstacja-step__number {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #00b1cf;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
}

.evstacja-step__text {
  font-size: 0.875rem;
  line-height: 1.5;
  color: #555;
  margin: 0;
}

/* Check Icon */
.check-icon {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  color: #00b1cf;
  font-weight: bold;
}

/* ************OFFER SECTION**************** */

.offer {
  background-color: #f8f9fa;
}

.offer__container {
  padding-top: 8.75rem;
  padding-bottom: 8.75rem;
  display: grid;
  grid-template-columns: 1.2fr 1.5fr;
  gap: 5rem;
  align-items: start;
}

.offer__content {
  position: sticky;
  top: 120px;
}

.offer__title {
  margin-bottom: 1.5rem;
  color: #303a4d;
  max-width: 100%;
}

.offer__description {
  font-size: 1.125rem;
  line-height: 1.6;
  color: #555;
  letter-spacing: 0.02em;
}

.offer__services {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.service-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.service-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.service-item__icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  border-radius: 8px;
  overflow: hidden;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-item__icon img {
  width: 80%;
  height: 80%;
  object-fit: contain;
}

.service-item__text {
  font-size: 1rem;
  font-weight: 600;
  color: #303a4d;
  line-height: 1.4;
  display: flex;
  align-items: center;
  height: 100%;
}

/* ************TEAM SECTION**************** */

.team-section {
  background-color: #fff;
}

.team-section__container {
  padding-top: 8.75rem;
  padding-bottom: 8.75rem;
  text-align: center;
}

.team-section__title {
  margin-bottom: 2rem;
  color: #303a4d;
}

.team-section__description {
  max-width: 900px;
  margin: 0 auto 4rem;
  font-size: 1.125rem;
  line-height: 1.7;
  color: #555;
  letter-spacing: 0.02em;
  text-align: center;
}

.team-section__members {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto;
}

.team-member {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.team-member__photo {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 1.5rem;
  border: 4px solid #00b1cf;
  box-shadow: 0 4px 16px rgba(0, 177, 207, 0.2);
  transition: all 0.3s ease;
}

.team-member__photo:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 24px rgba(0, 177, 207, 0.3);
}

.team-member__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-member__name {
  font-size: 1.25rem;
  font-weight: 600;
  color: #303a4d;
  margin-bottom: 0.5rem;
}

.team-member__position {
  font-size: 1rem;
  color: #00b1cf;
  font-weight: 500;
}

/* ************ABOUT**************** */

.main_about {
  background: url("../img/about/background_placeholder.png") center / cover no-repeat;
}

.about__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-top: 8.75rem;
  padding-bottom: 8.75rem;
}

.about__image {
  position: relative;
  max-width: 552px;
  height: 614px;
}

.about__image img {
  border-radius: 16px;
  max-width: 100%;
  height: 100%;
  object-fit: cover;
}

.about__title {
  margin-bottom: 1.5rem;
}

.about__text {
  max-width: 30rem;
  letter-spacing: 0.02em;
  line-height: 150%;
  margin-bottom: 3.5rem;
}

.about__text p:not(:last-child) {
  margin-bottom: 2.5rem;
}

.outro_about {
  background: url("../img/about/hero_placeholder.jpg") center / cover no-repeat;
}

/* **************SERVICES**************** */

.main_services {
  background: url("../img/services/background_placeholder.png") center / cover no-repeat;
}

.services {
  background-color: #fff;
}

.services__container {
  padding-top: 12.96vh;
  padding-bottom: 12.96vh;
  max-width: 80%;
  margin: 0 auto;
  padding-left: 1.67vw;
  padding-right: 1.67vw;
  width: 100%;
  box-sizing: border-box;
}

.services__title {
  text-align: center;
  margin-bottom: 5.93vh;
}

/* Base styles for services section - Desktop first */
.services__row {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(12px, 1.25vw, 24px);
  justify-content: center;
  width: 100%;
  margin: 0 auto;
}

.services__column {
  flex: 0 1 calc((100% - 4 * clamp(12px, 1.25vw, 24px)) / 5);
  max-width: calc((100% - 4 * clamp(12px, 1.25vw, 24px)) / 5);
  min-width: 0;
}

.item-services {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  text-align: center;
  background: #fff;
  border-radius: 16px;
  padding: 0 20px 24px 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
  transition: all 0.3s ease;
  height: 100%;
  text-decoration: none;
  color: inherit;
  box-sizing: border-box;
}

.item-services:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  text-decoration: none;
  color: inherit;
}

.item-services__top {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.item-services__image {
  margin-bottom: 0.26vw;
  width: 100%;
  max-width: 95%;
  aspect-ratio: 200 / 240;
  min-height: 22vh;
  border-radius: 0.63vw;
  overflow: hidden;
  background: #e1e4eb;
  display: flex;
  align-items: center;
  justify-content: center;
}

.item-services__image img {
  max-width: 100%;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: #ffffff;
  padding: 0.52vw;
  border-radius: 0.42vw;
}

/* Specific styling for AC charger image */
.item-services__image img[src="img/home/ac1.png"] {
  max-width: 80%;
  height: 80%;
  padding: 0;
  background: #ffffff;
  border-radius: 0;
}

.item-services__image:has(img[src="img/home/ac1.png"]) {
  background: #ffffff;
}

.item-services__title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  text-align: center;
}

.item-services__text {
  width: 100%;
  line-height: 150%;
  margin-bottom: 15px;
  flex-grow: 1;
  letter-spacing: 0.02em;
  text-align: center;
  font-size: 14px;
}

.item-services__button {
  background-color: transparent;
  border: 2px solid #303a4d;
  color: #303a4d;
  transition: all 0.3s;
  padding: 10px 24px;
  border-radius: 30px;
  font-weight: 600;
  text-align: center;
  display: inline-block;
  pointer-events: none;
  font-size: 15px;
  white-space: normal;
  line-height: 1.4;
}

.item-services:hover .item-services__button {
  background-color: #303a4d;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(48, 58, 77, 0.3);
}

.outro_services {
  background: url("../img/services/hero_placeholder.jpg") center / cover no-repeat;
}

/* ************TESTIMONIAL**************** */

.testimonial__container {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-direction: column;
  padding-top: 8.75rem;
  padding-bottom: 8.75rem;
}

.testiomonial__caption {
  margin-bottom: 4rem;
  font-weight: 600;
  text-transform: uppercase;
}

.testimonial__title {
  margin-bottom: 4rem;
  font-size: 2rem;
  max-width: 40.75rem;
  line-height: 136%;
  font-weight: 500;
}

.item-testimonial__image {
  max-width: 64px;
  margin: 0 auto;
  margin-bottom: 1.063rem;
  height: 64px;
}

.item-testimonial__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.item-testimonial__title {
  margin-bottom: 0.25rem;
  font-weight: 600;
}

.item-testimonial__caption {
  font-size: 0.938rem;
}

/* ****************MANUFACTURERS SECTION**************** */

.manufacturers {
  background-color: #fff;
}

.manufacturers__container {
  padding-top: 8.75rem;
  padding-bottom: 8.75rem;
  text-align: center;
}

.manufacturers__title {
  margin-bottom: 4rem;
  color: #303a4d;
}

.manufacturers__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto;
  align-items: center;
}

.manufacturers__item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  min-height: 150px;
}

.manufacturers__item:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.manufacturers__item img {
  max-width: 100%;
  height: auto;
  max-height: 100px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.manufacturers__item:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

/* ****************OUTRO**************** */

.outro__container {
  padding-top: 8.75rem;
  padding-bottom: 8.75rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
}

.outro__title {
  margin-bottom: 1.25rem;
  color: #fff;
}

.outro__text {
  max-width: 33.625rem;
  line-height: 150%;
  margin-bottom: 2.5rem;
  letter-spacing: 0.02em;
  color: #fff;
}

.outro__button {
  padding: 1.25rem 3rem;
  transition: all 0.3s;
}

.outro__button:hover {
  transform: scale(1.05);
}

/* ****************FOOTER**************** */

.footer {
  line-height: 150%;
  background: rgba(34, 34, 34, 0.9);
}

.footer__container {
  padding-top: 2rem;
  padding-bottom: 2rem;
  max-width: 100rem;
  width: 95%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 4rem;
}

.footer__left,
.footer__right {
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer__left {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  justify-content: center;
  align-items: flex-end;
}

.footer__contact {
  display: flex;
  flex-direction: row;
  gap: 2.5rem;
  flex-wrap: nowrap;
  align-items: center;
}

.footer__contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
  text-decoration: none;
  font-size: 0.8rem;
  transition: opacity 0.3s;
  white-space: nowrap;
  flex-shrink: 0;
}

.footer__contact-item:hover {
  opacity: 0.8;
}

.footer__contact-icon {
  width: 24px;
  height: 24px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.footer__contact-icon svg {
  width: 16px;
  height: 16px;
}

.footer__right {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1.5rem;
  justify-content: flex-start;
}

.footer__policy {
  font-weight: 600;
  letter-spacing: 0.02em;
  font-size: 0.8rem;
  color: #fff;
  text-decoration: none;
  transition: opacity 0.3s;
}

.footer__policy:hover {
  opacity: 0.8;
}

.footer__logo {
  justify-self: center;
}

.footer__copyright {
  font-weight: 600;
  letter-spacing: 0.02em;
  font-size: 0.8rem;
  color: #fff;
}

/* ****************ABOUT PAGE**************** */
.main__text_pages {
  max-width: 37.5rem;
}

.main__container_pages {
  padding-top: 300px;
}


/* ****************SERVICES PAGE**************** */
.services-page__container {
  padding-top: 160px;
}

.services-page__item {
  margin-bottom: 132px;
}

.services-page__item:not(:last-child) {
  padding-bottom: 132px;
  margin-bottom: 132px;
  border-bottom: 1px solid rgba(48, 58, 77, 0.4);
}

.services-page__column {
  display: flex;
  align-items: center;
  gap: 97px;
}

.services-page__title {
  margin-bottom: 24px;
}

.services-page__text {
  margin-bottom: 56px;
  max-width: 480px;
  font-size: 18px;
  line-height: 150%;
  letter-spacing: 0.02em;
}

.services-page__text p:not(:last-child) {
  margin-bottom: 20px;
}

.services-page__img {
  max-width: 552px;
  height: 614px;
}

.services-page__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

/* ****************CONTACT PAGE****************/

.main_contact {
  background: url("../img/home/szybki.png") center / cover no-repeat;
  padding: 160px 0 100px;
  min-height: 30vh !important;
  position: relative;
  overflow: hidden;
}

/* Align contact hero text like realizacje hero */
.main_contact .main__container_pages {
  padding-top: 0;
  padding-bottom: 0;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 2rem;
  padding-right: 2rem;
  text-align: center;
}

.contact__container {
  display: flex;
  justify-content: space-between;
  gap: 109px;
  padding-top: 140px;
  padding-bottom: 140px;
}

.contact__title {
  margin-bottom: 24px;
  font-weight: 600;
  line-height: 110%;
  font-size: 40px;
}

.faqs__form-section .contact__title {
  margin-bottom: 12px;
  font-size: 28px;
}

.connect-contact {
  display: flex;
  flex-direction: column;
  align-items: start;
  row-gap: 32px;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #e1e4eb;
}

.connect-contact__item {
  display: inline-flex;
  align-items: center;
  gap: 24px;
}

.connect-contant__type {
  margin-bottom: 4px;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 110%;
  text-transform: uppercase;
}

.connect-contact__label {
  font-size: 22px;
  line-height: 150%;
  letter-spacing: 0.02em;
}

.contact__links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.contact__text {
  max-width: 545px;
  font-size: 18px;
  line-height: 150%;
}

.contact__text p:not(:last-child) {
  margin-bottom: 15px;
}

.faqs__form-section .contact__text {
  font-size: 14px;
  line-height: 130%;
  margin-bottom: 16px;
}

.contact__form {
  max-width: 545px;
  margin-top: 32px;
}

.faqs__form-section .contact__form {
  margin-top: 0;
}

.contact-form__field {
  margin-bottom: 24px;
  width: 100%;
  box-sizing: border-box;
}

.faqs__form-section .contact-form__field {
  margin-bottom: 12px;
}

.faqs__form-section .contact-form__label {
  font-size: 14px;
  margin-bottom: 6px;
}

.faqs__form-section .contact-form__input,
.faqs__form-section .contact-form__textarea {
  padding: 10px 14px;
  font-size: 14px;
}

.faqs__form-section .contact-form__checkbox-label {
  font-size: 11px;
  line-height: 125%;
}

.faqs__form-section .contact-form__submit {
  width: 100%;
  padding: 12px 24px;
  font-size: 15px;
}

.contact-form__label {
  display: block;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #303a4d;
}

.contact-form__label .required {
  color: #e74c3c;
}

.contact-form__input,
.contact-form__textarea {
  width: 100%;
  padding: 12px 16px;
  font-size: 16px;
  font-family: "Inter", sans-serif;
  border: 1px solid #e1e4eb;
  border-radius: 8px;
  background-color: #fff;
  transition: border-color 0.3s;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  max-width: 100%;
}

.contact-form__input:focus,
.contact-form__textarea:focus {
  outline: none;
  border-color: #303a4d;
}

.contact-form__textarea {
  resize: vertical;
  min-height: 120px;
}

.faqs__form-section .contact-form__textarea {
  min-height: 80px;
}

.contact-form__checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.contact-form__checkbox-input {
  margin-top: 4px;
  width: 18px;
  height: 18px;
  cursor: pointer;
  flex-shrink: 0;
}

.contact-form__checkbox-label {
  font-size: 14px;
  line-height: 140%;
  color: #303a4d;
  cursor: pointer;
}

.contact-form__submit {
  display: inline-block;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  background-color: #303a4d;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s;
  margin-top: 8px;
}

.contact-form__submit:hover {
  background-color: #1f2733;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(48, 58, 77, 0.3);
}

.contact-form__submit:active {
  transform: translateY(0);
}

/* Form validation styles */
.contact-form__input.error,
.contact-form__textarea.error {
  border-color: #e74c3c;
  box-shadow: 0 0 0 2px rgba(231, 76, 60, 0.1);
}

.contact-form__checkbox.error .contact-form__checkbox-label {
  color: #e74c3c;
}

.field-error {
  color: #e74c3c;
  font-size: 14px;
  margin-top: 4px;
  font-weight: 500;
}

.map {
  padding: 0 20px 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

iframe {
  width: 100%;
  max-width: 1200px;
  height: 482px;
  filter: grayscale(100%);
  margin: 0 auto;
  display: block;
}

/* **************REVIEWS PAGE**************** */
.reviews__container {
  padding-top: 160px;
  padding-bottom: 160px;
}

.reviews__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 24px;
  row-gap: 96px;
}

.reviews__column {
  border: 1px solid #e1e4eb;
  border-radius: 8px;
}

.reviews__item {
  padding-top: 48px;
  padding-bottom: 56px;
  padding-right: 32px;
  padding-left: 32px;
}

.item-reviews {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.item-reviews__img {
  max-width: 46px;
  height: 36px;
  margin: 0 auto;
  margin-bottom: 46px;
}

.item-reviews__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.item-reviews__text {
  margin-bottom: 40px;
  font-size: 18px;
  letter-spacing: 0.02em;
  line-height: 150%;
}

.item-reviews__author {
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.01em;
  margin-bottom: 10px;
}

.item-reviews__geo {
  font-size: 14px;
  letter-spacing: 0.002em;
}

/* ******************PRICING PAGE******************** */
.pricing__container {
  padding-top: 140px;
  padding-bottom: 140px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.pricing__caption {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: 4%;
}

.pricing__title {
  font-weight: 600;
  font-size: 72px;
  margin-bottom: 24px;
}

.pricing__text {
  font-size: 22px;
  letter-spacing: 2%;
  margin-bottom: 88px;
}

.pricing__row {
  display: flex;
  align-items: start;
  gap: 24px;
}

.pricing__column {
  border: 2px solid #e1e4eb;
  border-radius: 8px;
}

.pricing__item {
  padding: 40px;
  padding-bottom: 48px;
}

.item-pricing__info {
  padding-bottom: 32px;
  border-bottom: 1px solid #e1e4eb;
  margin-bottom: 32px;
}

.item-pricing__label {
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 1%;
  margin-bottom: 16px;
}

.item-pricing__cost {
  font-size: 72px;
  font-weight: 600;
  margin-bottom: 16px;
}

.item-pricing__list {
  margin-bottom: 64px;
}

.item-pricing__item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.item-pricing__item::before {
  content: "";
  background: url("../img/pricing/check.svg") 0 0 no-repeat;
  width: 16px;
  height: 18px;
}

.item-pricing__item:not(:last-child) {
  margin-bottom: 12px;
}

.item-pricing__button {
  display: inline-block;
  font-size: 22px;
  letter-spacing: 2%;
  font-weight: 600;
  color: #fff;
  padding: 20px 82px;
  background-color: #303a4d;
  border-radius: 64px;
}

.team {
  background-color: #e1e4eb;
}

.team__container {
  padding-top: 140px;
  padding-bottom: 140px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.team__title {
  text-align: center;
  margin-bottom: 96px;
  max-width: 483px;
}

.team__row {
  display: grid;
  column-gap: 24px;
  row-gap: 96px;
  grid-template-columns: repeat(3, 1fr);
}

.team__item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.item-team__img {
  max-width: 360px;
  height: 363px;
  margin-bottom: 40px;
}

.item-team__img img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  object-fit: cover;
}

.item-team__name {
  max-width: 186px;
  font-size: 32px;
  font-weight: 600;
  line-height: 120%;
  text-align: center;
  margin-bottom: 12px;
}

.item-team__role {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 26px;
  letter-spacing: 2%;
}

.item-team__role span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.item-team__role span::after {
  content: "";
  background: url("../img/team/icons/star.svg") 0 0 no-repeat;
  width: 12px;
  height: 12px;
}

.item-team__text {
  font-size: 16px;
  text-align: center;
  letter-spacing: 2%;
  line-height: 150%;
  max-width: 328px;
  margin-bottom: 20px;
}

.item-team__icons {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* *************FAQ PAGE************** */
.faqs__container {
  padding-top: 140px;
  padding-bottom: 140px;
}

.faqs__title {
  text-align: center;
  margin-bottom: 24px;
}

.faqs__subtitle {
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 80px;
  color: #555;
}

.faqs__wrapper {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}

.faqs__form-section {
  animation: floatAnimation 3s ease-in-out infinite;
}

@keyframes floatAnimation {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }
}

.faqs__questions-section {
  width: 100%;
}

.spollers-faq__item {
  width: 100%;
}

.spollers-faq__item:not(:last-child) {
  margin-bottom: 24px;
}

.spollers-faq__button {
  display: inline-block;
  border: 2px solid #e1e4eb;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.spollers-faq__item:hover .spollers-faq__button {
  border-color: #00b1cf;
  background-color: #f8f9fa;
}

.spollers-faq__item:hover .spollers-faq__inner {
  border-color: #00b1cf;
}

.spollers-faq__button span {
  padding-left: 40px;
  padding-top: 32px;
  padding-bottom: 32px;
  font-weight: 600;
  text-align: left;
}

.spollers-faq__button img {
  padding-right: 34.5px;
  transition: transform 0.3s ease;
}

.spollers-faq__text {
  max-height: 0;
  overflow: hidden;
  width: 100%;
  display: block;
  transition: max-height 0.4s ease-in-out, opacity 0.3s ease;
  opacity: 0;
}

.spollers-faq__item.active .spollers-faq__text {
  max-height: 1000px;
  max-height: calc(1000px + 16px);
  opacity: 1;
}

.spollers-faq__item.active .spollers-faq__button {
  border-bottom: none;
  border-radius: 8px 8px 0px 0px;
}

.spollers-faq__item.active .spollers-faq__button span {
  padding-bottom: 32px;
}

.spollers-faq__item.active .spollers-faq__button img {
  transform: translate(-34px, 0px) rotate(180deg);
}

.spollers-faq__inner {
  padding-top: 20px;
  padding-left: 40px;
  border: 2px solid #e1e4eb;
  border-radius: 0px 0px 8px 8px;
  line-height: 150%;
  padding-bottom: 20px;
  border-top: none;
  padding-right: 100px;
  text-align: left;
  transition: border-color 0.3s ease;
}

/* ****************TEAM PAGE**************** */
.director__container {
  padding-top: 140px;
  padding-bottom: 140px;
  display: flex;
  align-items: center;
  gap: 96px;
}

.director__title {
  margin-bottom: 16px;
}

.director__role {
  font-size: 22px;
  letter-spacing: 2%;
  margin-bottom: 40px;
}

.director__text {
  letter-spacing: 2%;
  line-height: 150%;
  max-width: 480px;
}

.director__text p:not(:last-child) {
  margin-bottom: 20px;
}

.director__img {
  max-width: 552px;
  height: 614px;
}

.director__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

/* ****************GALLERY**************** */
.gallery__container {
  padding-bottom: 140px;
  padding-top: 140px;
}

.gallery__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 24px;
  row-gap: 96px;
  margin-bottom: 96px;
  justify-items: center;
}

.gallery__item {
  max-width: 360px;
  height: 407px;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

.gallery__paggination {
  display: flex;
  align-items: center;
  justify-content: center;
  align-items: center;
  gap: 42px;
}

.gallery__paggination button:first-child {
  transform: translate(0px, 5px);
}

.gallery__paggination button:last-child {
  transform: rotate(-180deg) translate(0px, 5px);
}

.gallery_active {
  color: #fff;
  padding: 10px 15px;
  background-color: #303a4d;
  border-radius: 100px;
  display: inline-block;
}

/* ****************POPUP**************** */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(34, 34, 34, 0.9);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.popup-overlay.active {
  display: flex;
  opacity: 1;
}

.popup-content {
  background: #fff;
  border-radius: 16px;
  max-width: 1000px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  padding: 40px;
  transform: scale(0.9);
  transition: transform 0.3s ease;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
}

.popup-overlay.active .popup-content {
  transform: scale(1);
}

.popup-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: none;
  font-size: 30px;
  color: #303a4d;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.popup-close:hover {
  background: #f8f9fa;
  color: #00b1cf;
  transform: rotate(90deg);
}

.popup-title {
  font-size: 28px;
  font-weight: 600;
  color: #303a4d;
  margin-bottom: 32px;
  line-height: 140%;
  padding-right: 40px;
  text-align: center;
}

.popup-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.popup-contacts {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.popup-contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: #f8f9fa;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.popup-contact-item:hover {
  background: #e8f4f8;
  transform: translateX(5px);
}

.popup-contact-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.popup-contact-icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.popup-contact-content {
  flex: 1;
}

.popup-contact-type {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  color: #00b1cf;
  margin-bottom: 4px;
  letter-spacing: 0.05em;
}

.popup-contact-value {
  font-size: 16px;
  font-weight: 500;
  color: #303a4d;
  line-height: 1.4;
}

.popup-form {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.popup-form .contact-form__field {
  margin-bottom: 20px;
  width: 100%;
}

.popup-form .contact-form__input,
.popup-form .contact-form__textarea {
  width: 100%;
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.popup-form .contact-form__input:focus,
.popup-form .contact-form__textarea:focus {
  outline: none;
  border-color: #00b1cf;
  border-width: 2px;
}

.popup-form .contact-form__submit {
  width: 100%;
  margin-top: 8px;
  box-sizing: border-box;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

/* ****************RESOURCES**************** */
.resources__container {
  padding-top: 140px;
  padding-bottom: 140px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 24px;
  row-gap: 96px;
  justify-items: center;
}

.resources__img {
  max-width: 360px;
  height: 330px;
  margin-bottom: 32px;
}

.resources__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.resources__title {
  font-weight: 600;
  font-size: 24px;
  margin-bottom: 12px;
}

.resources__text {
  letter-spacing: 2%;
  line-height: 150%;
  max-width: 243px;
  margin-bottom: 32px;
}

.resources__button {
  background-color: #fff;
  color: #303a4d;
  font-weight: 600;
  letter-spacing: 2%;
  border: 2px solid #303a4d;
  border-radius: 64px;
}

/* ****************ADAPTIVE**************** */

@media (max-width: 992px) {
  .manufacturers__container {
    padding-top: 4.375rem;
    padding-bottom: 4.375rem;
  }

  .manufacturers__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .mission-section__container {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding-top: 4.375rem;
    padding-bottom: 4.375rem;
    text-align: center;
  }

  .mission-section__image {
    height: 400px;
  }

  .evstacja-section__container {
    padding-top: 4.375rem;
    padding-bottom: 4.375rem;
  }

  .evstacja-section__wrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .evstacja-section__image {
    height: 400px;
  }

  .features-carousel-wrapper {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .team-section__container {
    padding-top: 4.375rem;
    padding-bottom: 4.375rem;
  }

  .team-section__members {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }

  .team-member__photo {
    width: 80px;
    height: 80px;
    margin-bottom: 0.5rem;
    border: 2px solid #00b1cf;
  }

  .team-member__name {
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
  }

  .team-member__position {
    font-size: 0.8rem;
  }

  .offer__container {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding-top: 4.375rem;
    padding-bottom: 4.375rem;
  }

  .offer__content {
    position: static;
    text-align: center;
  }

  .offer__services {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .page__main {
    padding-bottom: 80px;
  }
}

/* Dla szerokoĹ›ci miÄ™dzy 900px a 1400px - dostosowanie rozmiaru elementĂłw */
@media (min-width: 56.251rem) and (max-width: 87.5rem) {
  .menu__list {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: nowrap;
  }

  .menu__link {
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
  }

  .header__phone {
    font-size: 0.75rem;
  }

  .actions-header__button {
    padding: 0.5rem 0.875rem;
    font-size: 0.7rem;
    gap: 0.375rem;
  }

  .phone-icon {
    width: 16px;
    height: 16px;
  }

  .menu__body {
    gap: 1.5rem;
  }

  .header__navigation {
    gap: 1rem;
  }
}

@media (min-width: 87.5001rem) {
  .menu__list {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: nowrap;
  }

  .menu__link {
    font-weight: 600;
    white-space: nowrap;
  }

  .service-item {
    padding: 1rem;
    gap: 0.75rem;
  }

  .service-item__icon {
    width: 50px;
    height: 50px;
  }

  .menu__body {
    position: static;
    background: transparent;
    padding: 0;
    width: auto;
    height: auto;
  }
}

@media (max-width: 995px) {
  .item-pricing__button {
    font-size: 19px;
  }
}

@media (max-width: 768px) {
  .team-section__members {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
  }

  .evstacja-section__container {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .evstacja-section__wrapper {
    gap: 2rem;
  }

  .evstacja-section__title {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
  }

  .evstacja-section__text {
    font-size: 1rem;
  }

  .evstacja-section__image {
    height: 300px;
  }

  .evstacja-section__badges {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }

  .evstacja-section__badge {
    max-width: 150px;
  }

  .evstacja-section__new-container {
    min-height: auto;
    margin-top: 2rem;
  }

  .evstacja-section__steps {
    flex-direction: column;
    gap: 2rem;
    align-items: center;
  }

  .evstacja-step {
    flex: 0 0 auto;
    width: 100%;
    max-width: 300px;
  }

  .evstacja-step__image {
    width: 100%;
    max-width: 200px;
    height: auto;
    min-height: 250px;
  }

  .features-carousel {
    max-width: 100%;
    height: auto;
    min-height: 250px;
  }

  .features-carousel-wrapper {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .evstacja-step__content {
    width: 100%;
  }

  .evstacja-step__text {
    font-size: 0.875rem;
  }
}

@media (max-width: 62.6875rem) {
  .resources__container {
    padding-top: 70px;
    padding-bottom: 70px;
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery__paggination {
    gap: 27px;
  }

  .gallery__row {
    grid-template-columns: repeat(2, 1fr);
  }

  .team__row {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 30px;
  }

  .director__container {
    flex-direction: column;
    padding-top: 70px;
    padding-bottom: 70px;
    gap: 10px;
    text-align: center;
  }

  .item-pricing {
    padding: 20px;
    padding-bottom: 30px;
  }

  .pricing__title {
    font-size: 39px;
  }

  .pricing__text {
    margin-bottom: 25px;
  }

  .item-pricing__button {
    padding: 16px 42px;
  }

  .footer__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem;
    gap: 1rem;
    width: 95%;
    max-width: none;
  }

  .footer__left {
    order: 2;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
  }

  .footer__contact {
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
  }

  .footer__logo {
    order: 1;
    margin-bottom: 0;
  }

  .footer__right {
    order: 3;
    justify-content: center;
    flex-direction: column;
    gap: 0.5rem;
  }

  .footer__policy,
  .footer__copyright {
    justify-self: center;
    text-align: center;
    margin: 0.25rem 0;
  }

  .services-page__column {
    gap: 30px;
    font-size: 15px;
  }

  .services-page__title {
    font-size: 29px;
  }

  .reviews__row {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 30px;
    column-gap: 10px;
  }

  .reviews__item {
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 20px;
    padding-top: 20px;
    display: inline-block;
  }

  .item-reviews__text {
    font-size: 16px;
  }

  .item-reviews__author {
    font-size: 16px;
  }
}

@media (max-width: 65.625rem) {
  .header__container {
    display: flex;
    grid-template-columns: none;
    justify-content: space-between;
  }

  .header__section {
    flex: 0 0 auto;
  }

  .header__section--logo {
    padding-left: 0.938rem;
  }

  .header__section--menu {
    flex: 1 1 auto;
  }

  .header__section--button {
    display: none;
  }

  .header__navigation {
    justify-content: space-between;
    width: 100%;
  }

  .header__menu {
    position: relative;
  }

  .actions-header {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-left: auto;
  }

  .icon-menu {
    display: block;
    position: relative;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 1.875rem;
    flex: 0 0 1.875rem;
    width: 1.875rem;
    height: 1.125rem;
    min-width: 44px;
    min-height: 44px;
    cursor: pointer;
    z-index: 5;
    margin-right: 0.938rem;
    touch-action: manipulation;
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0.2);
    pointer-events: auto;
    border: none;
    background: transparent;
    padding: 0;
  }

  .icon-menu span,
  .icon-menu::before,
  .icon-menu::after {
    content: "";
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    right: 0;
    position: absolute;
    width: 100%;
    height: 0.125rem;
    background-color: #fff;
  }

  .icon-menu::before {
    top: 0;
  }

  .icon-menu::after {
    bottom: 0;
  }

  .icon-menu span {
    top: calc(50% - 0.0625rem);
    pointer-events: none;
  }

  .menu-open .icon-menu span {
    width: 0;
  }

  .menu-open .icon-menu::before {
    top: calc(50% - 0.0625rem);
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }

  .menu-open .icon-menu::after {
    bottom: calc(50% - 0.0625rem);
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }

  .menu__body {
    background-color: rgba(34, 34, 34, 0.98);
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    padding: 9.375rem 0.938rem 1.875rem 0.938rem;
    overflow: auto;
    flex-direction: column;
    align-items: center;
    row-gap: 0;
  }

  .menu__body::before {
    content: "";
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    min-height: 5.75rem;
    background-color: rgba(34, 34, 34, 0.98);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 2;
  }

  .menu-open .menu__body {
    left: 0;
  }

  .menu-open .menu__body::before {
    left: 0;
  }

  .menu__list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    margin-bottom: 1.563rem;
  }

  .menu__item {
    text-align: center;
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .menu__item:not(:last-child) {
    margin-bottom: 1.563rem;
  }

  .menu__link {
    font-size: 2rem;
    text-align: center;
  }

  .header__phone {
    font-size: 2rem;
    text-align: center;
    display: block;
    width: 100%;
    margin-bottom: 1.563rem;
  }

  .actions-header__button--mobile {
    display: inline-flex;
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
    gap: 0.5rem;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0;
  }

  .phone-icon {
    width: 20px;
    height: 20px;
  }

  .logo__image {
    height: 16px;
  }

  .main {
    background-attachment: scroll;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .outro_home {
    background-attachment: scroll;
  }

  .main__container {
    padding-top: 6rem;
    padding-bottom: 4rem;
    padding-left: 1rem;
    padding-right: 1rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 0 auto;
  }

  .main__container_pages {
    padding-top: 290px;
  }

  .main__title {
    font-size: 3rem;
    padding: 0 1rem;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    width: 100%;
    max-width: 100%;
  }

  .main__text {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    width: 100%;
    max-width: 90%;
  }

  .main__button {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .title {
    font-size: 2rem;
  }

  .about__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
}

@media (max-width: 56.25rem) {
  .faqs__wrapper {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .faqs__form-section {
    position: static;
    order: 2;
    animation: none;
  }

  .faqs__form-section .contact__title {
    font-size: 28px;
    margin-bottom: 20px;
  }

  .faqs__form-section .contact__text {
    font-size: 16px;
  }

  .faqs__questions-section {
    order: 1;
  }

  .faqs__subtitle {
    margin-bottom: 50px;
  }

  .spollers-faq__item.active .spollers-faq__button img {
    transform: translate(-10px, -10px) rotate(180deg);
  }

  .spollers-faq__button span {
    padding-top: 15px;
    padding-left: 10px;
    padding-bottom: 15px;
    font-weight: 600;
    font-size: 14px;
  }

  .spollers-faq__button img {
    padding-right: 10px;
  }

  .spollers-faq__inner {
    font-size: 16px;
    padding-left: 10px;
    padding-right: 10px;
    line-height: 130%;
    text-align: left;
  }

  .spollers-faq__button span {
    text-align: left;
  }

  .pricing__container {
    text-align: center;
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .pricing__row {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .item-pricing__button {
    font-size: 17px;
    padding: 15px 32px;
  }

  .reviews__container {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .contact__container {
    flex-direction: column;
    padding-top: 80px;
    gap: 50px;
    padding-bottom: 80px;
  }

  .contact-form__submit {
    width: 100%;
    padding: 16px 32px;
  }

  .about__container {
    flex-direction: column;
    padding-top: 4.375rem;
    padding-bottom: 4.375rem;
    gap: 4rem;
  }

  .services__container {
    padding-top: 4.375rem;
    padding-bottom: 4.375rem;
  }

  .testimonial__title {
    font-size: 1.5rem;
    margin-bottom: 2rem;
  }

  .testiomonial__caption {
    margin-bottom: 2rem;
  }

  .outro__container {
    padding-top: 4.375rem;
    padding-bottom: 4.375rem;
  }

  .services-page__column {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 20px;
    gap: 4rem;
  }
}

@media (max-width: 61.936rem) {
  .footer__container {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    row-gap: 0.75rem;
    gap: 0.75rem;
    padding: 1.25rem;
    width: 95%;
    max-width: none;
  }

  .footer__left {
    order: 2;
    align-items: center;
    gap: 0.5rem;
  }

  .footer__contact {
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
  }

  .footer__logo {
    order: 1;
  }

  .footer__right {
    order: 3;
    justify-content: center;
    flex-direction: column;
    gap: 0.5rem;
  }
}

/* For large screens (2K, 4K, FHD) - allow 5 cards when there's enough space */
@media (min-width: 1400px) {
  .services__column {
    flex: 0 0 calc((100% - 4 * clamp(12px, 1.25vw, 24px)) / 5);
    max-width: calc((100% - 4 * clamp(12px, 1.25vw, 24px)) / 5);
  }
}

/* For medium screens - 3 cards */
@media (max-width: 1399px) and (min-width: 1001px) {
  .services__column {
    flex: 0 1 calc((100% - 2 * clamp(12px, 1.25vw, 24px)) / 3);
    max-width: calc((100% - 2 * clamp(12px, 1.25vw, 24px)) / 3);
    min-width: 0;
  }
}

@media (max-width: 1000px) and (min-width: 769px) {
  .services__column {
    flex: 0 1 calc((100% - 1 * clamp(12px, 1.25vw, 24px)) / 2);
    max-width: calc((100% - 1 * clamp(12px, 1.25vw, 24px)) / 2);
    min-width: 0;
  }
}

/* Tablets and medium screens - horizontal cards */
@media (max-width: 1000px) {
  .services__column {
    flex: 0 1 calc(50% - 0.75rem);
    min-width: 0;
    max-width: 100%;
  }

  .item-services {
    display: grid;
    grid-template-columns: 130px 1fr;
    grid-template-rows: 1fr auto;
    gap: 1rem;
    width: 100%;
    max-width: none;
    text-align: left;
    align-items: start;
  }

  .item-services__top {
    grid-column: 1;
    grid-row: 1 / -1;
    align-items: center;
  }

  .item-services__image {
    width: 130px;
    height: 150px;
    margin-bottom: 0.5rem;
  }

  .item-services__title {
    font-size: 0.9rem;
    text-align: center;
  }

  .item-services__text {
    grid-column: 2;
    grid-row: 1;
    text-align: center;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    height: 100%;
  }

  .item-services__button {
    grid-column: 2;
    grid-row: 2;
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
    text-align: center;
    justify-self: center;
  }
}

@media (max-width: 768px) {
  .manufacturers__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }

  .manufacturers__item {
    padding: 1rem;
    min-height: 120px;
  }

  .manufacturers__item img {
    max-height: 80px;
  }

  .popup-content {
    padding: 25px 16px;
    width: 95%;
    max-width: 95vw;
  }

  .popup-title {
    font-size: 18px;
    margin-bottom: 20px;
    padding-right: 30px;
    line-height: 1.4;
  }

  .popup-close {
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    font-size: 24px;
  }

  .popup-wrapper {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .popup-contacts {
    order: 2;
    gap: 12px;
  }

  .popup-contact-item {
    padding: 10px;
    gap: 12px;
  }

  .popup-contact-icon {
    width: 40px;
    height: 40px;
  }

  .popup-contact-icon svg {
    width: 20px;
    height: 20px;
  }

  .popup-contact-type {
    font-size: 10px;
  }

  .popup-contact-value {
    font-size: 13px;
    line-height: 1.3;
  }

  /* Mobile form improvements */
  .popup-form .contact-form__field {
    margin-bottom: 16px;
  }

  .popup-form .contact-form__label {
    font-size: 15px;
    margin-bottom: 6px;
    font-weight: 600;
  }

  .popup-form .contact-form__input,
  .popup-form .contact-form__textarea {
    width: 100%;
    padding: 14px 12px;
    font-size: 16px;
    border: 2px solid #e1e4eb;
    border-radius: 8px;
    line-height: 1.5;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    box-sizing: border-box;
  }

  .popup-form .contact-form__textarea {
    min-height: 100px;
    resize: vertical;
  }

  .popup-form .contact-form__checkbox {
    margin-bottom: 16px;
    align-items: flex-start;
    gap: 10px;
  }

  .popup-form .contact-form__checkbox-input {
    margin-top: 2px;
    width: 20px;
    height: 20px;
    min-width: 20px;
    flex-shrink: 0;
  }

  .popup-form .contact-form__checkbox-label {
    font-size: 13px;
    line-height: 1.5;
  }

  .popup-form .contact-form__submit {
    width: 100%;
    padding: 16px 24px;
    font-size: 16px;
    border-radius: 30px;
    margin-top: 8px;
  }
}

@media (max-width: 530px) {
  .services__column {
    flex: 0 1 100%;
    min-width: 0;
    max-width: 100%;
  }

  .reviews__row {
    grid-template-columns: 1fr;
  }

  .team__row {
    grid-template-columns: 1fr;
  }

  .gallery__row {
    grid-template-columns: 1fr;
  }

  .resources__container {
    grid-template-columns: 1fr;
  }

  /* Small mobile popup improvements */
  .popup-content {
    padding: 22px 14px;
  }

  .popup-title {
    font-size: 17px;
  }

  .popup-form .contact-form__input,
  .popup-form .contact-form__textarea {
    padding: 13px 11px;
  }
}

/* Medium mobile devices (481px - 767px) */
@media (min-width: 481px) and (max-width: 767px) {
  .popup-content {
    padding: 28px 18px;
  }

  .popup-title {
    font-size: 19px;
  }

  .popup-form .contact-form__input,
  .popup-form .contact-form__textarea {
    padding: 13px 12px;
    font-size: 16px;
  }

  .popup-form .contact-form__checkbox-label {
    font-size: 13.5px;
  }
}

/* Mobile - full width horizontal cards */
@media (max-width: 768px) {
  .services__column {
    flex: 0 1 100%;
    min-width: 0;
    max-width: 100%;
  }

  .item-services {
    display: grid;
    grid-template-columns: 120px 1fr;
    grid-template-rows: 1fr auto;
    gap: 1rem;
    width: 100%;
    padding: 1.5rem;
  }

  .item-services__top {
    grid-column: 1;
    grid-row: 1 / -1;
  }

  .item-services__image {
    width: 120px;
    height: 140px;
    margin-bottom: 0.5rem;
  }

  .item-services__title {
    font-size: 0.85rem;
  }

  .item-services__text {
    grid-column: 2;
    grid-row: 1;
    font-size: 0.8rem;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0.5rem;
    height: 100%;
  }

  .item-services__button {
    grid-column: 2;
    grid-row: 2;
    padding: 0.55rem 1rem;
    font-size: 0.8rem;
    text-align: center;
    justify-self: center;
  }
}

/* ****************NEW LAYOUT RESPONSIVE STYLES**************** */

@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .additional-services__grid,
  .platform-features__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .service-process__steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .lms-section__features {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .services-overview__title {
    font-size: 2.5rem;
  }

  .additional-services__title,
  .platform-features__title,
  .service-process__title,
  .lms-section__title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .additional-services__grid,
  .platform-features__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .service-process__steps {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .services-overview {
    padding: 4.375rem 0;
  }

  .additional-services,
  .platform-features,
  .service-process,
  .lms-section {
    padding: 4.375rem 0;
  }

  .services-overview__title {
    font-size: 2rem;
  }

  .additional-services__title,
  .platform-features__title,
  .service-process__title,
  .lms-section__title {
    font-size: 1.75rem;
  }

  .lms-section__subtitle {
    font-size: 1.25rem;
  }

  .service-card__content {
    padding: 1.5rem;
  }

  .service-card__title {
    font-size: 1.25rem;
  }

  .additional-service-item,
  .platform-feature-item {
    padding: 1.5rem;
  }

  .service-step {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .services-overview__title {
    font-size: 1.75rem;
  }

  .additional-services__title,
  .platform-features__title,
  .service-process__title,
  .lms-section__title {
    font-size: 1.5rem;
  }

  .service-card__content {
    padding: 1rem;
  }

  .additional-service-item,
  .platform-feature-item {
    padding: 1rem;
    flex-direction: column;
    text-align: center;
  }

  .service-step {
    padding: 1rem;
  }

  .lms-feature {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
}

/* ============================================
   COOKIE CONSENT BANNER & MODAL - RODO/GDPR
   ============================================ */

/* Cookie Banner (Bottom) */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(34, 34, 34, 0.98);
  backdrop-filter: blur(10px);
  padding: 1.25rem 1rem;
  z-index: 10000;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.4);
  border-top: 2px solid rgba(0, 177, 207, 0.3);
  overflow-y: auto;
  max-height: 95vh;
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-banner__content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cookie-banner__text {
  flex: 1 1 300px;
  color: #fff;
  font-family: "Inter", sans-serif;
  min-width: 0;
}

.cookie-banner__title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #fff;
}

.cookie-banner__text p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

.cookie-banner__link {
  color: #00b1cf;
  text-decoration: underline;
  transition: color 0.2s;
  white-space: nowrap;
}

.cookie-banner__link:hover {
  color: #00d4f5;
}

.cookie-banner__buttons {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  align-items: center;
  flex-shrink: 0;
}

.cookie-banner__button {
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  font-family: "Inter", sans-serif;
  min-width: 120px;
  text-align: center;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.cookie-banner__button--accept {
  background-color: #00b1cf;
  color: #fff;
}

.cookie-banner__button--accept:hover {
  background-color: #00d4f5;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 177, 207, 0.4);
}

.cookie-banner__button--reject {
  background-color: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.cookie-banner__button--reject:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

.cookie-banner__button--settings {
  background-color: #303a4d;
  color: #fff;
}

.cookie-banner__button--settings:hover {
  background-color: #3f4c62;
  transform: translateY(-2px);
}

/* Cookie Settings Modal */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.cookie-modal.show {
  opacity: 1;
  visibility: visible;
}

.cookie-modal.show .cookie-modal__content {
  transform: scale(1);
}

.cookie-modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
}

.cookie-modal__content {
  position: relative;
  background: #fff;
  border-radius: 12px;
  max-width: 600px;
  width: 90%;
  max-height: 85vh;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  transform: scale(0.9);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.cookie-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2rem;
  border-bottom: 1px solid #e0e0e0;
}

.cookie-modal__title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #303a4d;
  margin: 0;
}

.cookie-modal__close {
  background: none;
  border: none;
  font-size: 2rem;
  color: #666;
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.2s;
  padding: 0;
  line-height: 1;
}

.cookie-modal__close:hover {
  background-color: #f0f0f0;
  color: #303a4d;
}

.cookie-modal__body {
  padding: 2rem;
  overflow-y: auto;
  flex: 1;
}

.cookie-modal__description {
  font-size: 1rem;
  color: #666;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.cookie-option {
  margin-bottom: 1.5rem;
  padding: 1.25rem;
  background: #f8f9fa;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
  transition: all 0.2s;
}

.cookie-option:hover {
  border-color: #00b1cf;
  box-shadow: 0 2px 8px rgba(0, 177, 207, 0.1);
}

.cookie-option__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.cookie-option__info {
  flex: 1;
}

.cookie-option__title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #303a4d;
  margin: 0 0 0.5rem 0;
}

.cookie-option__description {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.5;
  margin: 0;
}

/* Custom Toggle Switch */
.cookie-toggle {
  position: relative;
  display: inline-block;
  width: 52px;
  height: 28px;
  flex-shrink: 0;
}

.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-toggle__slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.3s;
  border-radius: 28px;
}

.cookie-toggle__slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: 0.3s;
  border-radius: 50%;
}

.cookie-toggle input:checked+.cookie-toggle__slider {
  background-color: #00b1cf;
}

.cookie-toggle input:checked+.cookie-toggle__slider:before {
  transform: translateX(24px);
}

.cookie-toggle--disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.cookie-toggle--disabled .cookie-toggle__slider {
  cursor: not-allowed;
  background-color: #00b1cf;
}

.cookie-modal__footer {
  display: flex;
  gap: 1rem;
  padding: 1.5rem 2rem;
  border-top: 1px solid #e0e0e0;
  background: #f8f9fa;
}

.cookie-modal__button {
  flex: 1;
  padding: 0.875rem 1.5rem;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  font-family: "Inter", sans-serif;
}

.cookie-modal__button--primary {
  background-color: #00b1cf;
  color: #fff;
}

.cookie-modal__button--primary:hover {
  background-color: #00d4f5;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 177, 207, 0.4);
}

.cookie-modal__button--secondary {
  background-color: transparent;
  color: #303a4d;
  border: 2px solid #303a4d;
}

.cookie-modal__button--secondary:hover {
  background-color: #303a4d;
  color: #fff;
}

/* Tablet Responsiveness */
@media (max-width: 992px) and (min-width: 769px) {
  .cookie-banner__content {
    gap: 1.25rem;
  }

  .cookie-banner__buttons {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .cookie-banner__button {
    flex: 1 1 auto;
    min-width: 100px;
  }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .cookie-banner {
    padding: 1.5rem 1rem !important;
    padding-bottom: 1.5rem !important;
    max-height: none !important;
    min-height: auto !important;
    height: auto !important;
    overflow-y: visible !important;
    overflow-x: hidden !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
  }

  .cookie-banner__content {
    flex-direction: column !important;
    gap: 1.25rem !important;
    align-items: stretch !important;
    flex-wrap: nowrap !important;
    min-height: auto !important;
    height: auto !important;
  }

  .cookie-banner__title {
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
  }

  .cookie-banner__text {
    flex: none !important;
    width: 100% !important;
    margin-bottom: 0 !important;
  }

  .cookie-banner__text p {
    font-size: 0.875rem;
    line-height: 1.5;
  }

  .cookie-banner__buttons {
    flex-direction: column !important;
    gap: 1rem !important;
    width: 100% !important;
    flex-wrap: nowrap !important;
    flex-shrink: 0 !important;
    display: flex !important;
    margin-top: 0.5rem !important;
  }

  .cookie-banner__button {
    width: 100% !important;
    max-width: 100% !important;
    padding: 1.125rem 1.25rem !important;
    font-size: 1rem !important;
    display: block !important;
    text-align: center !important;
    white-space: normal !important;
    min-width: auto !important;
    margin: 0 !important;
    box-sizing: border-box !important;
    flex-shrink: 0 !important;
  }

  .cookie-banner__button--settings,
  .cookie-banner__button--reject,
  .cookie-banner__button--accept {
    width: 100% !important;
    display: block !important;
  }

  .cookie-modal__content {
    width: 95%;
    max-height: 90vh;
  }

  .cookie-modal__header {
    padding: 1.25rem 1.5rem;
  }

  .cookie-modal__title {
    font-size: 1.25rem;
  }

  .cookie-modal__body {
    padding: 1.5rem;
  }

  .cookie-modal__footer {
    flex-direction: column-reverse;
    padding: 1.25rem 1.5rem;
    gap: 0.75rem;
  }

  .cookie-modal__button {
    width: 100%;
  }

  .cookie-option {
    padding: 1rem;
  }

  .cookie-option__header {
    flex-direction: column;
    gap: 0.75rem;
  }

  .cookie-toggle {
    align-self: flex-start;
  }
}

/* Extra small mobile devices */
@media (max-width: 480px) {
  .cookie-banner {
    padding: 1rem 0.75rem !important;
    padding-bottom: max(1rem, env(safe-area-inset-bottom)) !important;
  }

  .cookie-banner__title {
    font-size: 0.95rem !important;
  }

  .cookie-banner__text p {
    font-size: 0.8rem !important;
  }

  .cookie-banner__button {
    padding: 0.875rem 1rem !important;
    font-size: 0.875rem !important;
    min-height: 48px !important;
    /* Minimum touch target size */
    width: 100% !important;
    display: block !important;
  }

  .cookie-banner__button--settings,
  .cookie-banner__button--reject,
  .cookie-banner__button--accept {
    width: 100% !important;
    display: block !important;
    min-height: 48px !important;
  }

  /* Extra small mobile popup improvements */
  .popup-content {
    padding: 20px 12px;
    width: 96%;
    max-width: 96vw;
    max-height: 92vh;
  }

  .popup-title {
    font-size: 16px;
    margin-bottom: 16px;
    padding-right: 28px;
  }

  .popup-close {
    top: 10px;
    right: 10px;
    width: 32px;
    height: 32px;
    font-size: 22px;
  }

  .popup-wrapper {
    gap: 20px;
  }

  .popup-contacts {
    gap: 10px;
  }

  .popup-contact-item {
    padding: 8px;
    gap: 10px;
    flex-direction: row;
  }

  .popup-contact-icon {
    width: 36px;
    height: 36px;
  }

  .popup-contact-icon svg {
    width: 18px;
    height: 18px;
  }

  .popup-contact-type {
    font-size: 9px;
  }

  .popup-contact-value {
    font-size: 12px;
    line-height: 1.3;
    word-break: break-word;
  }

  /* Extra small mobile form improvements */
  .popup-form .contact-form__field {
    margin-bottom: 14px;
  }

  .popup-form .contact-form__label {
    font-size: 14px;
    margin-bottom: 5px;
  }

  .popup-form .contact-form__input,
  .popup-form .contact-form__textarea {
    padding: 12px 10px;
    font-size: 16px;
    border-width: 1px;
    line-height: 1.4;
  }

  .popup-form .contact-form__textarea {
    min-height: 90px;
  }

  .popup-form .contact-form__checkbox {
    gap: 8px;
  }

  .popup-form .contact-form__checkbox-input {
    width: 18px;
    height: 18px;
    min-width: 18px;
  }

  .popup-form .contact-form__checkbox-label {
    font-size: 12px;
    line-height: 1.4;
  }

  .popup-form .contact-form__submit {
    padding: 14px 20px;
    font-size: 15px;
  }
}

/* ****************NEW LAYOUT STYLES**************** */

/* Services Overview Section */
.services-overview {
  background-color: #fff;
  padding: 8.75rem 0;
}

.services-overview__container {
  max-width: 72.624rem;
  margin: 0 auto;
  padding: 0 0.938rem;
}

.services-overview__content {
  text-align: center;
  margin-bottom: 4rem;
}

.services-overview__title {
  font-size: 3.5rem;
  font-weight: 600;
  color: #303a4d;
  margin-bottom: 1.5rem;
}

.services-overview__description {
  font-size: 1.125rem;
  line-height: 1.7;
  color: #555;
  max-width: 900px;
  margin: 0 auto;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}

/* Service Card */
.service-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  opacity: 0;
  transform: translateY(30px);
}

.service-card.animate {
  opacity: 1;
  transform: translateY(0);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.service-card__image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.service-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.service-card:hover .service-card__image img {
  transform: scale(1.05);
}

.service-card__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 177, 207, 0.8), rgba(0, 153, 184, 0.8));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover .service-card__overlay {
  opacity: 1;
}

.service-card__icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
}

.service-card__content {
  padding: 2rem;
}

.service-card__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #303a4d;
  margin-bottom: 1rem;
}

.service-card__description {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
  margin-bottom: 1.5rem;
}

.service-card__features {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.service-card__features li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  color: #555;
}

.service-card__features li::before {
  content: "âś“";
  position: absolute;
  left: 0;
  color: #00b1cf;
  font-weight: bold;
}

.service-card__button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, #00b1cf, #0099b8);
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.service-card__button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 177, 207, 0.3);
}

/* Additional Services Section */
.additional-services {
  background-color: #f8f9fa;
  padding: 8.75rem 0;
}

.additional-services__container {
  max-width: 72.624rem;
  margin: 0 auto;
  padding: 0 0.938rem;
}

.additional-services__title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 600;
  color: #303a4d;
  margin-bottom: 3rem;
}

.additional-services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.additional-service-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 2rem;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateX(-30px);
}

.additional-service-item.animate {
  opacity: 1;
  transform: translateX(0);
}

.additional-service-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.additional-service-item__icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #00b1cf, #0099b8);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.additional-service-item__content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #303a4d;
  margin-bottom: 0.5rem;
}

.additional-service-item__content p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #555;
}

/* Service Process Section */
.service-process {
  background-color: #fff;
  padding: 8.75rem 0;
}

.service-process__container {
  max-width: 72.624rem;
  margin: 0 auto;
  padding: 0 0.938rem;
}

.service-process__title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 600;
  color: #303a4d;
  margin-bottom: 4rem;
}

.service-process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.service-step {
  text-align: center;
  padding: 2rem;
  opacity: 0;
  transform: translateY(30px);
}

.service-step.animate {
  opacity: 1;
  transform: translateY(0);
}

.service-step__number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #00b1cf, #0099b8);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1.5rem;
}

.service-step__title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #303a4d;
  margin-bottom: 1rem;
}

.service-step__description {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #555;
}

/* Platform Features Section */
.platform-features {
  background-color: #f8f9fa;
  padding: 8.75rem 0;
}

.platform-features__container {
  max-width: 72.624rem;
  margin: 0 auto;
  padding: 0 0.938rem;
}

.platform-features__title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 600;
  color: #303a4d;
  margin-bottom: 3rem;
}

.platform-features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.platform-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 2rem;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateX(-30px);
}

.platform-feature-item.animate {
  opacity: 1;
  transform: translateX(0);
}

.platform-feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.platform-feature-item__icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #00b1cf, #0099b8);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.platform-feature-item__content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #303a4d;
  margin-bottom: 0.5rem;
}

.platform-feature-item__content p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #555;
}

/* LMS Section */
.lms-section {
  background-color: #fff;
  padding: 8.75rem 0;
}

.lms-section__container {
  max-width: 72.624rem;
  margin: 0 auto;
  padding: 0 0.938rem;
}

.lms-section__content {
  text-align: center;
}

.lms-section__title {
  font-size: 2.5rem;
  font-weight: 600;
  color: #303a4d;
  margin-bottom: 1rem;
}

.lms-section__subtitle {
  font-size: 1.5rem;
  font-weight: 600;
  color: #00b1cf;
  margin-bottom: 2rem;
}

.lms-section__description {
  font-size: 1.125rem;
  line-height: 1.7;
  color: #555;
  max-width: 900px;
  margin: 0 auto 3rem;
}

.lms-section__features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.lms-feature {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 8px;
  text-align: left;
}

.lms-feature__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #00b1cf, #0099b8);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lms-feature span {
  font-size: 0.95rem;
  font-weight: 500;
  color: #303a4d;
}

.lms-section__button {
  padding: 1.25rem 3rem;
  font-size: 1.125rem;
  background: linear-gradient(135deg, #00b1cf, #0099b8);
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
}

.lms-section__button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 177, 207, 0.3);
}

/* Animation Classes */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Privacy Policy Page Styles */
.privacy-section {
  padding: 8rem 0 4rem;
  background: #fff;
}

.privacy-section__container {
  max-width: 72.624rem;
  margin: 0 auto;
  padding: 0 0.938rem;
}

.privacy-section__title {
  text-align: center;
  margin-bottom: 3rem;
  color: #303a4d;
}

.privacy-section__intro {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #303a4d;
  margin-bottom: 3rem;
  text-align: center;
  font-weight: 500;
}

.privacy-section__content {
  max-width: 60rem;
  margin: 0 auto;
}

.privacy-section__article {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #e1e4eb;
}

.privacy-section__article:last-child {
  border-bottom: none;
}

.privacy-section__subtitle {
  font-size: 1.5rem;
  font-weight: 600;
  color: #303a4d;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #00b1cf;
}

.privacy-section__article p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #303a4d;
  margin-bottom: 1.5rem;
}

.privacy-section__article ul {
  margin: 1.5rem 0;
  padding-left: 2rem;
}

.privacy-section__article li {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #303a4d;
  margin-bottom: 1rem;
}

.privacy-section__article li strong {
  color: #00b1cf;
  font-weight: 600;
}

.privacy-section__article a {
  color: #00b1cf;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.privacy-section__article a:hover {
  color: #303a4d;
}

/* Mobile responsiveness for privacy policy */
@media (max-width: 768px) {
  .privacy-section {
    padding: 6rem 0 2rem;
  }

  .privacy-section__title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
  }

  .privacy-section__intro {
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }

  .privacy-section__subtitle {
    font-size: 1.3rem;
  }

  .privacy-section__article p,
  .privacy-section__article li {
    font-size: 1rem;
  }

  .privacy-section__article ul {
    padding-left: 1.5rem;
  }
}

/* ============================================
   DC STATIONS PAGE SPECIFIC STYLES
   ============================================ */

.dc-hero {
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.8) 0%, rgba(45, 45, 45, 0.8) 100%), url("/img/stacje_dc/stacje_dc_tlo.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: #fff;
  padding: 160px 0 100px;
  position: relative;
  overflow: hidden;
}

.dc-hero__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}

.dc-hero__title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #fff;
}

.dc-hero__subtitle {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 2rem;
  color: #00b1cf;
  opacity: 0.9;
}

.dc-hero__description {
  font-size: 1.25rem;
  max-width: 900px;
  margin: 0 auto 3rem;
  line-height: 1.8;
  opacity: 0.95;
}

.dc-main {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 3rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.dc-content {
  background: #fff;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  border: 2px solid #e0e0e0;
}

.dc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.dc-product {
  background: #fff;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  padding: 1.5rem;
  transition: all 0.3s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.dc-product:hover {
  border-color: #00b1cf;
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(0, 177, 207, 0.15);
}

.dc-product__image {
  width: 100%;
  height: 200px;
  background: #fff;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.dc-product__manufacturer {
  color: #00b1cf;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.dc-product__name {
  font-size: 1.25rem;
  font-weight: 700;
  color: #303a4d;
  margin-bottom: 1rem;
}

.dc-product__power {
  color: #666;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.dc-product__button {
  background: #00b1cf;
  color: #fff;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  margin-top: auto;
}

.dc-filters {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 2rem;
  height: fit-content;
  position: sticky;
  top: 120px;
}

.dc-filters__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #303a4d;
  margin-bottom: 2rem;
}

.dc-filter-group {
  margin-bottom: 2rem;
}

.dc-filter-group__title {
  font-size: 1rem;
  font-weight: 600;
  color: #303a4d;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.dc-filter-option {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
  cursor: pointer;
}

.dc-filter-option input[type="checkbox"] {
  margin-right: 0.75rem;
  width: 18px;
  height: 18px;
  accent-color: #00b1cf;
}

.dc-results {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #e0e0e0;
}

.dc-results__count {
  font-size: 1.1rem;
  font-weight: 600;
  color: #303a4d;
}

@media (max-width: 1200px) {
  .dc-main {
    grid-template-columns: 1fr;
  }

  .dc-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .dc-filters {
    position: static;
    order: -1;
  }
}

@media (max-width: 768px) {
  .dc-hero__title {
    font-size: 2.5rem;
  }

  .dc-grid {
    grid-template-columns: 1fr;
  }
}



.dc-product__specs-wrapper {
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.dc-product__unavailable-badge {
  position: absolute;
  top: 10px;
  right: 0;
  background: linear-gradient(135deg, rgba(255, 68, 68, 0.7) 0%, rgba(204, 0, 0, 0.7) 100%);
  color: white;
  padding: 4px 12px;
  font-weight: 700;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  box-shadow: 0 2px 8px rgba(255, 68, 68, 0.3);
  z-index: 10;
  border-radius: 4px 0 0 4px;
  opacity: 0.85;
}

.dc-product__unavailable-badge::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, #fff 0%, rgba(255, 255, 255, 0.2) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 15px 15px;
  border-radius: 4px 0 0 4px;
}

.dc-results__clear {
  background: none;
  border: none;
  color: #00b1cf;
  font-weight: 600;
  cursor: pointer;
  text-decoration: underline;
  padding: 0.5rem;
  display: inline-flex;
  align-items: center;
}

.dc-filters__toggle-icon {
  transition: transform 0.3s ease;
}

.dc-filters__toggle.expanded .dc-filters__toggle-icon {
  transform: rotate(180deg);
}
/* PDF Selection Modal Styles (Shared) */
.pdf-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.pdf-modal-content {
    background: #fff;
    padding: 2.5rem;
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    position: relative;
    text-align: center;
}

.pdf-modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #303a4d;
}

.pdf-modal-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #303a4d;
    margin-bottom: 2rem;
}

.pdf-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.pdf-item {
    display: block;
    background: #f8f9fa;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    color: #303a4d;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s;
    text-align: center;
}

.pdf-item:hover {
    background: #eef1f4;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}
