html, body, p, ol, ul, li, dl, dt, dd, blockquote, figure, fieldset, legend, textarea, pre, iframe, hr, h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0; }

html {
  box-sizing: border-box !important;
  scroll-behavior: smooth;

  scrollbar-color: rgba(63,145,58,.55) rgba(255, 255, 255, 0);
}


*, *:before, *:after {
  box-sizing: inherit; }

:root {
    --text-color: #1d214e;
    --accent-color: rgb(63, 145, 58);
    --background-color: #fff;
}

body {
    height: 100%;
    font-family: 'Poppins';
    font-size: 15px;
    font-weight: 400;
    line-height: 30px;
    color: var(--text-color);
}

.page{
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.page-content{
  flex: 1;
}

a {
    text-decoration: none;
    color: inherit;
}

header {
    display: block;
    unicode-bidi: isolate;
}

#header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--background-color);
  transition: box-shadow .25s ease, transform .25s ease;
}

#header.scrolled {
  box-shadow: 0px 0px 38px 0px rgba(27, 16, 7, 0.11);
}

.wrap {
    margin: 0 auto;
    max-width: 1220px;

    width: 100%;
    padding: 0 20px;
}

header#header .wrap {
    max-width: 1600px;
    min-height: 90px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}


header#header .logo img {
    width: auto;
    display: block;
    max-height: 90px;
}

header#header .main-nav {
    margin-left: auto;
    margin-right: 60px;
}


header#header .nav-menu {
    display: flex;
    list-style: none;
    gap: 46px;
    margin: 0;
    padding: 0;
}

header#header.scrolled .main-nav ul {
    display: flex;
    list-style: none;
    
}

header#header .nav-menu a {
    position: relative;
    font-weight: 500;
    color: var(--text-color);
    transition: color 0.3s ease;
    text-decoration: none;
}

header#header .nav-menu .nav-select {
    color: #3F913A;
}


header#header .menu-toggle {
    display: none;
    width: 30px;
    height: 24px;
    position: relative;
    cursor: pointer;
    z-index: 10;
    border: none;
    background: none;
    background-color: transparent;
    box-shadow: none;
    outline: none;
}


header#header .menu-toggle span {
    display: block;
    background-color: #333;
    height: 3px;
    width: 100%;
    border-radius: 3px;
    position: absolute;
    left: 0;
    transition: all 0.3s ease-in-out;
}

header#header .menu-toggle span:nth-child(1) {
    top: 0;
}

header#header .menu-toggle span:nth-child(2) {
    top: 10px;
}

header#header .menu-toggle span:nth-child(3) {
    top: 20px;
}

@media screen and (min-width: 1000px) {
  header#header .nav-menu a::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: -6px;
      width: 100%;
      height: 2px;
      background-color: var(--accent-color);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.25s ease;
  }

  header#header .nav-menu a:hover {
      color: var(--accent-color);
  }

  header#header .nav-menu a:hover::after {
      transform: scaleX(1);
  }

  header#header .nav-menu .nav-select::after {
      transform: scaleX(1);
  }

}

@media screen and (max-width: 1000px) {
    #header{
      position: sticky;
      top: 0;
      z-index: 1000;
    }

    header#header .menu-toggle {
        display: block;
        order: 3;
    }

    header#header .main-nav {
        position: absolute;
        top: 90px;
        left: 0;
        width: 100%;
        background: #fff;
        max-height: 0;
        overflow: hidden;
        transition: max-height .4s ease;
    }

    header#header .main-nav.active {
        max-height: 300px;
    }

    header#header .nav-menu {
        flex-direction: column;
        gap: 0;
    }

    header#header .nav-menu a {
        display: block;
        padding: 15px 20px;
        font-size: 17px;
    }

    header#header.scrolled{
      height: auto;
    }


    header#header .main-nav,
    header#header.scrolled .main-nav{
      top: 90px;
    }

    header#header .contact {
        order: 2;
        margin-left: auto;
        margin-right: 20px;
    }

    header#header .contact .button {
        display: none;
    }

    .container .glide__slide {
        max-height: 550px;
    }
    .container .image {
        max-height: 550px;
    }
}

@media screen and (max-width: 1200px) {
    header#header .contact .button span {
        display: none;
    }
}

header#header .contact {
    position: relative;
}

.contact .button {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 24px;
    height: 46px;
    font-weight: 500;
    font-size: 14px;
    font-family: 'Poppins';
    color: #fff;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50px;
    cursor: pointer;
    border: none;
    width: auto;
    max-width: fit-content;
    transition: all 0.3s ease 0s;
    gap: 10px;
}

header#header .contact .button:hover {
    background: var(--accent-color);
}

@keyframes ring {
    0% { transform: rotate(0deg); }
    15% { transform: rotate(15deg); }
    30% { transform: rotate(-10deg); }
    45% { transform: rotate(15deg); }
    60% { transform: rotate(-10deg); }
    75% { transform: rotate(15deg); }
    100% { transform: rotate(0deg); }
}

header#header .contact .button:hover img {
    animation: ring 0.8s ease-in-out 1;
    transform-origin: top center;
}

header#header .contact .phone-dropdown{
  position: absolute;
  bottom: -80px;
  right: 0;
  z-index: 100;
  white-space: nowrap;
}

header#header .contact .phone{
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--background-color);
  color: var(--text-color);
  font-size: 16px;
  font-weight: 500;
  font-family: 'Poppins';

  padding: 8px 22px;
  gap: 10px;
  border-radius: 50px;
  border: 0;
  cursor: pointer;
  white-space: nowrap;
  transition: all;
}

@keyframes phone {
  0%   { transform: rotate(0deg); }
  10%  { transform: rotate(15deg); }
  20%  { transform: rotate(-15deg); }
  30%  { transform: rotate(12deg); }
  40%  { transform: rotate(-12deg); }
  50%  { transform: rotate(8deg); }
  60%  { transform: rotate(-8deg); }
  70%  { transform: rotate(5deg); }
  80%  { transform: rotate(-5deg); }
  90%  { transform: rotate(2deg); }
  100% { transform: rotate(0deg); }
}

header#header .contact .phone:hover img {
    animation: phone 0.8s ease-in-out 1;
    transform-origin: top center;
}

header#header .contact .phone-list{
  position: absolute;
  top: calc(100% + 8px);

  min-width: 210px;

  padding: 8px;
  border-radius: 14px;
  background: var(--background-color);
  box-shadow: 0 10px 30px rgba(0,0,0,.18);

  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}

header#header .contact .phone-dropdown.open .phone-list{
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

header#header .contact .phone-list a{
  display: block;
  padding: 10px 12px;
  border-radius: 12px;
  text-decoration: none;
  color: var(--text-color);
  font-size: 16px;
}

header#header .contact .phone-list a:hover{
  background: rgba(0,0,0,.06);
}

header#header.scrolled .contact .phone-dropdown{
  display: none;
}

@media screen and (max-width: 1000px){
  header#header .contact .phone-dropdown{
    position: relative;
    bottom: auto;
    right: auto;
    margin-left: auto;
  }

  header#header.scrolled .contact .phone-dropdown{
    display: block;
  }

  header#header .contact .phone{
    background: rgba(0,0,0,.5);
    color: #fff;
  }
  
  header#header .contact .phone img{
    display: none;
  }
}

.hero{
  position: relative;

  min-height: min(90svh, 920px);
  display: grid;
  place-items: center;

  padding: clamp(22px, 5vw, 64px);
  padding-top: calc(clamp(22px, 5vw, 64px) + env(safe-area-inset-top));
  padding-bottom: calc(clamp(22px, 5vw, 64px) + env(safe-area-inset-bottom));

  background: url("assets/img/background/background.png") no-repeat;
  background-size: cover;
  background-position: 68% 18%;
  overflow: hidden;
}

.hero__overlay{
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(
    90deg,
    rgba(8,16,32,.62) 0%,
    rgba(8,16,32,.32) 55%,
    rgba(8,16,32,.10) 100%
  );
}

.hero__content{
  position: relative;
  z-index: 1;

  max-width: 760px;
  width: min(760px, 100%);
  margin-inline: auto;

  display: grid;
  justify-items: center;
  gap: clamp(14px, 2.2vw, 22px);

  text-align: center;
  color: #fff;
}

.hero__logo{
  width: min(560px, 82vw);
  height: auto;
  display: block;

  object-fit: contain;
}


.hero__content h2{
  margin: 0;
  font-size: clamp(16px, 2.2vw, 20px);
  font-weight: 400;
  line-height: 1.55;
  opacity: .98;
  text-shadow: 0 2px 12px rgba(0,0,0,.45);
}


@media (max-width: 900px){
  .hero{
    background-position: center;
  }
}

@media (max-width: 520px){
  .hero{
    padding: 22px 18px;
    padding-top: calc(22px + env(safe-area-inset-top));
    padding-bottom: calc(22px + env(safe-area-inset-bottom));
  }

  .hero__content{
    gap: 14px;
  }
}


.offer {
  padding: clamp(24px, 5vw, 64px);
}

.offer_title {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: #3F913A;
  text-align: center;
  margin-bottom: clamp(36px, 6vw, 64px);
}

.offer_title h2 {
  font-size: clamp(27px, 3.75vw, 42px);
  font-weight: 600;
  line-height: 1.1;
  margin: 0;
  color: #000;
}

.offer_title h4 {
  font-weight: 600;
  line-height: 1.1;
  margin: 0;
}

.offer_line {
    margin-top: 10px;
    height: 3px;
    width: 5%;
    background-color: #3F913A;
}

.offer_section {
  max-width: 1400px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 50px;
}

.offer_box {
  padding: 22px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  box-shadow: 0 14px 30px rgba(0,0,0,.15);
  transition: transform .25s ease, box-shadow .25s ease;
}

.offer_box:hover {
  transform: scale(1.05);
}

.offer_icon{
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  color: #3F913A;
}

.offer_icon svg{
  width: 44px;
  height: 44px;
}

.offer_name {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
  color: #000;
}

.offer_desc {
  font-size: 14px;
  line-height: 1.5;
  opacity: 0.9;
  margin: 6px 0 10px;
  color: #000;
  text-align: center;
}

.offer_btn {
  margin-top: auto;
  align-self: center;

  padding: 7.5px 40px;
  border-radius: 17.5px;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;

  transition: background .2s ease, transform .2s ease;
}

.offer_btn:hover {
  background: #3F913A;
  cursor: pointer;
}


@media (max-width: 992px) {
  .offer_section {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .offer_section {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .offer_box {
    min-height: 110px;
  }
}

.kontakt{
  padding: clamp(48px, 10vw, 140px);
  background: #fff;
  scroll-margin-top: calc(4.5vh - 90px);
}

.kontakt__grid{
  max-width: 1500px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(18px, 3vw, 44px);
  align-items: stretch;
}

.kontakt__left{
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.kontakt__kicker{
  display: inline-block;
  font-size: 15px;
  font-weight: 700;
  color: #3F913A;
  letter-spacing: .4px;
  margin-bottom: 4px;
}

.kontakt__title{
  margin: 0 0 10px;
  font-size: clamp(28px, 3.6vw, 52px);
  font-weight: 600;
  line-height: 1.05;
  color: #0f172a;
}

.kontakt__subtitle{
  margin: 0 0 22px;
  color: rgba(15,23,42,.7);
  font-weight: 550;
  line-height: 1.6;
  font-size: 15px;
}

.kontakt__form{
  display: grid;
  gap: 14px;
  max-width: 560px;
}

.field{
  display: grid;
  gap: 8px;
}

.field__label{
  font-size: 13px;
  color: rgba(15,23,42,.75);
}

.field__control{
  position: relative;
 transition: transform 0.3s ease;
}

.field__icon{
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  color: #64748b;
  pointer-events: none;
}

.field__control input,
.field__control textarea{
  width: 100%;
  height: 56px;
  padding: 0 16px 0 46px;

  border-radius: 16px;
  border: 2px solid #e5e7eb;
  background: #fff;

  font-size: 14px;
  outline: none;

  transition: border-color .25s ease, box-shadow .25s ease;
}

.field__control textarea{
  height: auto;
  min-height: 150px;
  padding-top: 14px;
  padding-bottom: 14px;
  resize: vertical;
}

.field__control input:focus,
.field__control textarea:focus{
  border-color: #94a3b8;
  background-color: rgba(148,163,184,.18);
  box-shadow: 0 0 0 3px rgba(148,163,184,.18);
}

.field__control input:valid,
.field__control textarea:valid{
  border-color: #22c55e;
  background-color: rgba(34,197,94,.20);
  box-shadow: 0 0 0 3px rgba(34,197,94,.10);
}

.field__control input:invalid:not(:placeholder-shown),
.field__control textarea:invalid:not(:placeholder-shown){
  border-color: #ef4444;
  background-color: rgba(239,68,68,.20);
  box-shadow: 0 0 0 3px rgba(239,68,68,.20);
}

.field__control input::placeholder,
.field__control textarea::placeholder{
  color: #94a3b8;
}

.field__control:hover{
  transform: scale(1.02);
}

.field__control--area .field__icon{
  top: 11px;
  transform: none;
}

.field__status{
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease, color .2s ease;
}

.field__control input:valid + .field__status,
.field__control textarea:valid + .field__status{
  opacity: 1;
  color: #22c55e;
}

.field__control input:valid + .field__status::before,
.field__control textarea:valid + .field__status::before{
  content: "✔";
}

.field__control input:invalid:not(:placeholder-shown) + .field__status,
.field__control textarea:invalid:not(:placeholder-shown) + .field__status{
  opacity: 1;
  color: #ef4444;
}

.field__control input:invalid:not(:placeholder-shown) + .field__status::before,
.field__control textarea:invalid:not(:placeholder-shown) + .field__status::before{
  content: "✖";
}

.consent{
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  font-size: 12.5px;
  line-height: 1.55;
  color: rgba(15,23,42,.75);
}

.consent input{
  width: 16px;
  height: 16px;
  margin-top: 2px;
  accent-color: #22c55e !important;
  cursor: pointer;
}

.consent input:focus-visible{
  outline: 2px solid rgba(34,197,94,.4);
  outline-offset: 2px;
}


.kontakt__btn{
  margin-top: 6px;
  height: 52px;
  border: 0;
  border-radius: 999px;

  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-weight: 700;
  cursor: not-allowed;

  transition: background .25s ease, box-shadow .25s ease, transform .2s ease;
}

.kontakt__btn--active{
  background-color: #3F913A;
  cursor: pointer;
}

.kontakt__btn:hover{
  transform: scale(1.01);
  box-shadow: 0 14px 30px rgba(0,0,0,.12);
}

.kontakt__msg{
  margin: 0;
  font-size: 13px;
  color: rgba(15,23,42,.75);
}

.form-msg {
  opacity: 1;
  transition: opacity 0.3s ease;
}

.form-msg--hidden {
  opacity: 0;
}

.form-msg--success {
  color: #2ecc71;
}

.form-msg--error {
  color: #e74c3c;
}

.form-msg--info {
  color: #3498db;
}

.kontakt__req{
  font-size: 12px;
  color: rgba(15,23,42,.55);
}

.kontakt__right{
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  min-height: 520px;
}

.kontakt__img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.kontakt__overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.05) 0%,
    rgba(0,0,0,0.40) 55%,
    rgba(0,0,0,0.70) 100%
  );
}

.kontakt__caption{
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 20px;
  color: #fff;
}

.kontakt__tag{
  font-size: 12px;
  letter-spacing: 1px;
  opacity: .85;
  font-weight: 700;
  margin-bottom: 5px;
}

.kontakt__quote{
  margin: 0 0 14px;
  font-size: clamp(18px, 2.2vw, 26px);
  line-height: 1.25;
  font-weight: 800;
}


@media (max-width: 980px){
  .kontakt__grid{
    grid-template-columns: 1fr;
  }

  .kontakt__right{
    min-height: 420px;
  }

  .kontakt__form{
    max-width: 100%;
  }
}

.split{
  padding: clamp(32px, 6vw, 80px) 0;

}

.split__row{
  max-width: 1200px;
  margin: 0 auto 80px;

  scroll-margin-top: calc(50vh - 90px);

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 64px);
  align-items: center;
}

.split__row:hover {
  transform: scale(1.02);
}

.split__row:last-child{
  margin-bottom: 0;
}

/* odwrócenie układu */
.split__row--reverse{
  direction: rtl;
}
.split__row--reverse > *{
  direction: ltr;
}

/* ZDJĘCIE */
.split__image img{
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 22px;
  display: block;
}

/* TEKST */
.split__content{
  max-width: 620px;
}

.split__content h2{
  font-size: clamp(20px, 2.4vw, 30px);
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 16px;
  color: #141a3a;
}

.split__content p{
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
  color: rgba(20,26,58,.85);
}

.split__content ul{
  margin: 0;
  padding-left: 0;
  font-size: 15px;
  line-height: 1.8;
  color: rgba(20,26,58,.85);
    list-style-position: inside;
}

@media (max-width: 900px){
  .split{
    padding-left: 20px;
    padding-right: 20px;
  }

  .split__row{
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .split__row--reverse{
    direction: ltr;
  }

  .split__image img{
    height: 300px;
  }

  .split__content{
    max-width: 100%;
  }
}

.site-footer{
  background: #ffffff;
  box-shadow: 0 -10px 30px rgba(15,23,42,.06);
}

.footer-wrap{
  max-width: 90%;
  margin: 0 auto;
  padding: 22px 20px;

  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  gap: 20px;
}


.footer-links{
  grid-column: 1;
  width: 100%;
  display: flex;
  gap: 18px;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.footer-links a{
  font-size: 13px;
  color: rgba(15,23,42,.65);
  text-decoration: none;
  transition: color .2s ease;
}

.footer-links a:hover{ color: #3F913A; }

.footer-copy{
  grid-column: 2;
  width: 100%;
  margin: 0;
  text-align: center;
  font-size: 14px;
  letter-spacing: .2px;
  color: rgba(15,23,42,.7);
}

.footer-copy strong{
  color: #3F913A;
  font-weight: 600;
}

.footer-social{
  grid-column: 3;
  width: 100%;
  display: flex;
  gap: 14px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.footer-social a{
  font-size: 13px;
  color: rgba(15,23,42,.65);
  text-decoration: none;
  transition: color .2s ease;
}

.footer-social img{
  width: 22px;
  height: 22px;
  object-fit: contain;
  display: block;
}

@media (max-width: 800px){
  .footer-wrap{
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .footer-links,
  .footer-copy,
  .footer-social{
    grid-column: 1;
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 600px){
  .site-footer{ 
    margin-top: 50px; 
  }

  .footer-copy{ 
    font-size: 13px; 
    line-height: 1.6; 
  }

  .footer-social img{
    width: 18px;
    height: 18px;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 1.5s ease,
    transform 1.5s ease;
  will-change: opacity, transform;
}

.reveal--visible {
  opacity: 1;
  transform: translateY(0);
}

.contact-cards{
  padding: clamp(40px, 6vw, 90px) 0;
  background: #fff;
}

.contact-cards__wrap{
  max-width: 1200px;
  margin: 0 auto;
  padding-inline: clamp(16px, 5vw, 24px);
}

.contact-cards__head{
  text-align: center;
  margin-bottom: clamp(26px, 4vw, 50px);
}

.contact-cards__kicker{
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #3F913A;
  margin-bottom: 10px;
}

.contact-cards__title{
  margin: 0;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.05;
  color: #0f172a;
}

.contact-cards__underline{
  display: block;
  width: 58px;
  height: 3px;
  margin: 14px auto 18px;
  background: #3F913A;
  border-radius: 999px;
}

.contact-cards__desc{
  margin: 0 auto;
  max-width: 680px;
  font-size: 15px;
  line-height: 1.8;
  color: rgba(15,23,42,.7);
}

.contact-cards__grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(16px, 3vw, 32px);
  align-items: stretch;
  justify-content: center;
}

/* CARD */
.contact-card{
  position: relative;
  display: grid;
  place-items: center;
  text-decoration: none;
  color: inherit;

  background: #fff;
  border: 1px solid rgba(63, 145, 58,.08);
  border-radius: 22px;
  padding: clamp(22px, 3vw, 34px);
  min-height: 260px;

  box-shadow: 0 18px 40px rgba(63, 145, 58,.06);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.contact-card:hover{
  transform: translateY(-3px);
  box-shadow: 0 26px 60px rgba(63, 145, 58,.10);
  border-color: rgba(63, 145, 58,.22);
}

.contact-card__icon{
  width: 84px;
  height: 84px;
  border-radius: 999px;
  background: #eef6ff;
  color: rgb(63, 145, 58);

  display: grid;
  place-items: center;
  margin-bottom: 18px;
}

.contact-card__body{
  text-align: center;
}

.contact-card__title{
  margin: 0 0 10px;
  font-size: 22px;
  font-weight: 700;
  color: #0f172a;
}

.contact-card__main{
  font-size: 18px;
  font-weight: 700;
  color: rgba(15,23,42,.75);
}

@media (max-width: 900px){
  .contact-cards__grid{
    grid-template-columns: 1fr;
  }

  .contact-card{
    min-height: 240px;
  }
}

.cennik-cards{
  padding: clamp(40px, 6vw, 90px) 0;
  background: #fff;
}

.cennik-cards__wrap{
  max-width: 1200px;
  margin: 0 auto;
  padding-inline: clamp(16px, 5vw, 24px);
}

.cennik-cards__head{
  text-align: center;
  margin-bottom: clamp(26px, 4vw, 50px);
}

.cennik-cards__kicker{
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #3F913A;
  margin-bottom: 10px;
}

.cennik-cards__title{
  margin: 0;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.05;
  color: #0f172a;
}

.cennik-cards__underline{
  display: block;
  width: 58px;
  height: 3px;
  margin: 14px auto 18px;
  background: #3F913A;
  border-radius: 999px;
}

.cennik-cards__desc{
  margin: 0 auto;
  max-width: 680px;
  font-size: 15px;
  line-height: 1.8;
  color: rgba(15,23,42,.7);
}

.cennik-cards__grid{
  max-width: 1400px;
  margin: 0 auto;
  padding-inline: clamp(16px, 5vw, 24px);

  display: grid;
  gap: clamp(18px, 3vw, 28px);
}

.price-block{
  background: #fff;
  border: 1px solid rgba(15,23,42,.08);
  border-radius: 22px;
  box-shadow: 0 18px 40px rgba(15,23,42,.06);
  overflow: hidden;
}

.price-block__head{
  padding: clamp(18px, 3vw, 26px);
  border-bottom: 1px solid rgba(15,23,42,.06);
}

.price-block__title{
  margin: 0 0 10px;
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 800;
  color: #0f172a;
  letter-spacing: .2px;
}

.price-block__note{
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
  color: rgba(15,23,42,.68);
}

.price-table{
  padding: 10px clamp(14px, 2vw, 18px) 16px;
}


.price-table__row{
  display: grid;
  grid-template-columns: 1.2fr .7fr 1.6fr;
  gap: 16px;
  padding: 14px 10px;
  border-radius: 14px;
}

.price-table__row + .price-table__row{
  border-top: 1px solid rgba(0,0,0,.06);
}

.price-table__row--head{
  background: rgba(63, 145, 58, 0.6);
  margin: 6px 0 10px;
}

.price-table__row--head .price-table__cell{
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .8px;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.8);
}

.price-table__cell{
  font-size: 14px;
  line-height: 1.6;
  color: rgba(0, 0, 0, 0.8);
}

.price-table__cell strong{
  color: #0f172a;
  font-weight: 800;
}

.price-block__cta{
  padding: 14px clamp(18px, 3vw, 26px) 20px;
  border-top: 1px solid rgba(15,23,42,.06);
  background: linear-gradient(180deg, rgba(63,145,58,.05), rgba(63,145,58,0));
}

.price-link{
  color: rgba(66, 66, 66, 0.75);
  font-weight: 700;
  text-decoration: none;
}

.price-link:hover{
  text-decoration: underline;
}

@media (max-width: 900px){
  .price-table__row{
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 14px 12px;
  }

  .price-table__row--head{
    display: none;
  }

  .price-table__cell{
    position: relative;
    padding-left: 0;
  }

  .price-table__cell::before{
    content: attr(data-label);
    display: block;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .8px;
    text-transform: uppercase;
    color: rgba(15,23,42,.55);
    margin-bottom: 4px;
  }
  
  .price-table__row .price-table__cell:first-child{
    font-size: 15px;
    font-weight: 800;
    color: #0f172a;
  }
}


@media (max-width: 900px){
  .cennik-cards__grid{
    grid-template-columns: 1fr;
  }

  .cennik-card{
    min-height: 240px;
  }
}

.oferta-cards__wrap{
  max-width: 1200px;
  margin: 0 auto;
  padding-inline: clamp(16px, 5vw, 24px);
}

.oferta-cards__head{
  text-align: center;
  margin-bottom: clamp(26px, 4vw, 50px);
}

.oferta-cards__kicker{
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #3F913A;
  margin-bottom: 10px;
}

.oferta-cards__title{
  margin: 0;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.05;
  color: #0f172a;
}

.oferta-cards__underline{
  display: block;
  width: 58px;
  height: 3px;
  margin: 14px auto 18px;
  background: #3F913A;
  border-radius: 999px;
}

