@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap");

html {
  font-size: 0.052083333vw;
}

@media (min-width: 1920px) {
  html {
    font-size: 1px;
  }
}

body {
  margin: 0 auto;
  font-family: 'Noto Sans', sans-serif;
  overflow-x: hidden;
}

p {
  margin: 0;
  font-size: 18rem;
  font-weight: 200;
  letter-spacing: 5%;
  line-height: 140%;
}

p.scattered {
  letter-spacing: 10%;
  line-height: 180%;
  font-weight: 500;
  color: #303A5A;
}

h1 {
  font-size: 60rem;
  margin: 0;
  font-weight: bold;
}

h2 {
  font-size: 36rem;
  margin: 0;
  font-weight: normal;
}

h3 {
  font-size: 30rem;
  margin: 0;
  font-weight: normal;
  color: #303A5A;
}

h4 {
  font-size: 25rem;
  margin: 0;
  font-weight: lighter;
}

h5 {
  font-size: 18rem;
  margin: 0;
  font-weight: bold;
}

a:hover {
  font-weight: 500 !important;
}

section p {
  color: #303A5A;
}

li {
  color: #303A5A;
  font-size: 18rem;
}

strong {
  font-weight: 700;
}

.section-wrapper {
  width: 100%;
  display: block;
  background: #F8F8FF;
}

section {
  display: block;
  margin: 0 auto;
  max-width: 1300rem;
  padding-top: 65rem;
  padding-bottom: 90rem;
}

section .cta-button {
  cursor: pointer;
  font-size: 18rem;
  color: white;
  padding: 11rem 22rem;
  border-radius: 10rem;
  background: #303A5A;
  width: fit-content;
  text-align: center;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

section .cta-button.big-white {
  background: #F8F8FF;
  padding: 16rem 48rem;
  color: #303A5A;
}

section .cta-button:hover {
  transform: scale(0.95);
}

section .cta-button.intro {
  font-size: 30rem;
  font-weight: 300;
}

sep {
  display: block;
  height: 40rem;
}

sep.big {
  height: 65rem;
}

sep.small {
  height: 20rem;
}

.row {
  display: flex;
  width: 100%;
  gap: 100rem;
}

.col-50 {
  display: block;
  width: calc(50% - 50rem);
}

.w-100 {
  width: 100%;
}

.h-100 {
  height: 100%;
}

.flex {
  display: flex !important;
}

.ac {
  align-items: center;
}

.sb {
  justify-content: space-between;
}

.jc {
  justify-content: center;
}

.je {
  justify-content: end;
}

.cta-button {
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  z-index: 1000;
  background-color: rgba(0, 0, 0, 0.4);
  transition: background-color 0.3s, box-shadow 0.3s;
}

header.scrolled {
  background-color: white;
  box-shadow: 0rem 4rem 10rem 0rem rgba(66, 68, 90, 0.4);
}

header.scrolled .navbar {
  height: 120rem;
}

header.scrolled .nav-link {
  color: black !important;
}

header.scrolled .nav-link:hover {
  font-weight: 700 !important;
}

header.scrolled .nav-link.button {
  background: #009aff;
  color: white;
}

header.scrolled .button {
  background: #303A5A !important;
  color: white !important;
}

header.scrolled .dropdown {
  top: 90rem !important;
}

header.scrolled .logo {
  background-image: url("../../Img/Misc/logo_gray.png") !important;
}

header .navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1920rem;
  height: 235rem;
  margin: 0 auto;
  padding: 0 60rem;
  box-sizing: border-box;
  transition: height 0.3s;
}

header .navbar .logo {
  width: 352rem;
  height: 100%;
  display: block;
  background-image: url("../../Img/Misc/logo.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: left center;
  flex-shrink: 0;
}

header .navbar .nav-links-wrapper {
  height: 100%;
  display: flex;
  align-items: center;
}

header .navbar .nav-links-wrapper .nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 32rem;
  height: 100%;
  align-items: center;
}

header .navbar .nav-links-wrapper .nav-item {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

header .navbar .nav-links-wrapper .nav-item:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

header .navbar .nav-links-wrapper .nav-link {
  color: white;
  font-size: 20rem;
  font-weight: 300;
  text-decoration: none;
  transition: color 0.3s;
  white-space: nowrap;
  display: flex;    
    flex-direction: column; 
    align-items: center;   
}
header .navbar .nav-links-wrapper ::after {
  content: attr(data-text); 
        font-weight: 700;   
        height: 0;         
        overflow: hidden;       
        visibility: hidden;   
}

header .navbar .nav-links-wrapper .nav-link.button {
  cursor: pointer;
}

header .navbar .nav-links-wrapper .nav-link.active {
  font-weight: 600;
}

header .navbar .nav-links-wrapper .nav-link:hover {
  font-weight: 700 !important;
}

header .navbar .nav-links-wrapper .nav-link.button {
  background: #F8F8FF;
  color: black;
  padding: 11rem 18rem;
  border-radius: 15rem;
  font-weight: 400;
}

header .navbar .dropdown {
  position: absolute;
  top: 150rem;
  left: -20rem;
  background: #f7f8fa;
  min-width: 320rem;
  list-style: none;
  padding: 25rem;
  margin: 0;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  border-radius: 12rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20rem);
  transition: all 0.2s ease;
  z-index: 1000;
}

header .navbar .dropdown .dropdown-header {
  display: block;
  color: #1e204d;
  font-size: 20rem;
  font-weight: 800;
  margin-bottom: 20rem;
  padding-left: 10rem;
}

header .navbar .dropdown li {
  display: block;
}

header .navbar .dropdown li a {
  display: block;
  padding: 10rem;
  color: #555;
  text-decoration: none;
  font-size: 17rem;
  transition: all 0.2s;
  border-radius: 6rem;
}

header .navbar .dropdown li a:hover {
  background: rgba(0, 0, 0, 0.05);
  font-weight: 700 !important;
  transform: translateX(5rem);
}

header .navbar .hamburger {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 6rem;
}

header .navbar .hamburger img {
  filter: invert(1);
  width: 40px;
  height: 40px;
  display: block;
  transition: 0.3s;
}

@media (max-width: 1100px) {
  header.scrolled .hamburger img {
    filter: invert(0);
  }

  header .navbar {
    height: 80px !important;
    padding: 0 20px;
  }

  header .navbar .hamburger {
    display: flex;
    z-index: 1001;
  }

  header .navbar .logo {
    width: 150px;
  }

  header .navbar .nav-links-wrapper {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background: white;
    flex-direction: column;
    transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.2);
    overflow-y: auto;
    overflow-x: hidden;
  }

  header .navbar .nav-links-wrapper.active {
    right: 0;
  }

  header .navbar .nav-links-wrapper .nav-list {
    padding: 50px 0;
    flex-direction: column;
    height: auto;
    width: 100%;
    gap: 0;
    align-items: flex-start;
  }

  header .navbar .nav-links-wrapper .nav-item {
    width: 100%;
    height: auto;
    flex-direction: column;
    align-items: flex-start;
    border-bottom: 1px solid #f0f0f0;
  }

  header .navbar .nav-links-wrapper .nav-item .nav-link {
    color: black;
    font-size: 24px;
    padding: 20px 30px;
    display: block;
    width: 100%;
    border-bottom: none;
  }

  header .navbar .nav-links-wrapper .nav-item .nav-link.button {
    background: #303A5A !important;
    color: white !important;
    border-radius: 0 !important;
  }

  header .navbar .nav-links-wrapper .nav-item .dropdown {
    position: relative;
    top: 0;
    left: 0;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: white;
    min-width: 100%;
    padding: 0 0 20px 0;
    border-radius: 0;
    margin: 0;
    display: block;
  }

  header .navbar .nav-links-wrapper .nav-item .dropdown .dropdown-header {
    display: none;
  }

  header .navbar .nav-links-wrapper .nav-item .dropdown li a {
    padding: 12px 30px 12px 50px;
    font-size: 18px;
    color: #666;
    border-radius: 0;
  }

  header .navbar .nav-links-wrapper .nav-item .dropdown li a:hover {
    background: transparent;
    font-weight: 700 !important;
    transform: none;
  }

  header .navbar .nav-links-wrapper .nav-item:hover .dropdown {
    display: block;
  }
}

.banner-wrapper {
  width: 100%;
  display: block;
  background: black;
  margin-top: -3rem;
  position: relative;
  overflow: hidden;
}

.banner-wrapper .banner-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.banner-wrapper .banner-wrapper banner .content-wrapper {
  padding: 100rem 200rem;
  box-sizing: border-box;
  width: 100%;
  height: 100dvh;
  max-height: 1080rem;
  position: relative;
  z-index: 1;
}

.banner-wrapper.custom-1 h1 {
  font-size: 55rem;
}

.banner-wrapper.custom-1 h4 {
  margin-left: 50%;
}

.banner-wrapper.custom-2 .content-wrapper {
  width: 90%;
}

.banner-wrapper banner {
  color: white;
  display: block;
  margin: 0 auto;
  max-width: 1920rem;
  height: 1080rem;
  background: black;
  background-position: center;
  background-size: cover;
}

.banner-wrapper banner h1,
.banner-wrapper banner h2,
.banner-wrapper banner h4 {
  text-shadow: 1rem 1rem 2rem black;
}

.banner-wrapper banner .content-wrapper {
  padding: 100rem 200rem;
  box-sizing: border-box;
  position: relative;
  width: 100%;
  height: 100dvh;
  max-height: 1080rem;
}

.banner-wrapper banner .content-wrapper .banner-content {
  position: absolute;
  bottom: 0;
  right: 0;
  padding: inherit;
}

.banner-wrapper banner .cta-wrapper {
  margin-top: 34rem;
  width: 100%;
  display: flex;
}

.banner-wrapper banner .cta-wrapper .cta-button {
  cursor: pointer;
  font-size: 20rem;
  font-weight: bold;
  color: #303A5A;
  padding: 16rem 32rem;
  border-radius: 10rem;
  background: #F8F8FF;
  width: fit-content;
  text-align: center;
}

.banner-wrapper banner .cta-wrapper .cta-button:hover {
  transform: scale(0.95);
}

footer {
  display: block;
  width: 100vw;
  overflow: hidden;
  background: #303A5A;
  height: 182rem;
  color: white;
  box-shadow: 0px -4px 10px 0px rgba(66, 68, 90, 0.4);
}

footer .footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

footer .footer-content .scatter {
  text-align: center;
  width: 100%;
}

footer .footer-content .logo img {
  width: 190rem;
}

footer .footer-content .center-content {
  min-width: 1300rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

footer .footer-content .center-content .upper-info {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10rem;
}

footer .footer-content .lower-links {
  border-top: 1rem solid;
  border-image: linear-gradient(to right, transparent, white) 1;
  padding-top: 5rem;
  display: flex;
  width: 100%;
  align-items: center;
  gap: 40rem;
  justify-content: end;
}

footer .footer-content .lower-links a {
  font-size: 18rem;
  color: white;
  text-decoration: none;
  font-weight: 200;
}

.mobile {
  display: none !important;
}

@media (max-width: 680px) {
  h1 {
    font-size: 50rem;
  }

  p {
    font-size: 20rem;
  }

  .desktop {
    display: none !important;
  }

  .mobile {
    display: initial !important;
  }

  html {
    font-size: 0.70px;
  }

  ul {
    padding-left: 20rem !important;
  }

  banner {
    height: 100dvh !important;
    min-height: -webkit-fill-available;
  }

  banner .content-wrapper {
    padding: 40rem !important;
    padding-top: calc(40rem + env(safe-area-inset-top)) !important;
  }

  banner .banner-content {
    text-align: left !important;
  }

  banner h1 {
    font-size: 3.6dvh !important;
  }

  banner .flex {
    justify-content: start !important;
  }

  banner h2 {
    font-size: 2.8dvh !important;
    padding: 0 !important;
  }

  banner h4 {
    font-size: 2.5dvh !important;
  }

  banner p {
    font-size: 1.5dvh !important;
  }

  banner .cta-wrapper {
    align-items: center !important;
  }

  section {
    padding-left: 50rem;
    padding-right: 50rem;
  }

  .row {
    flex-direction: column;
    gap: 65rem;
  }

  .row .col-50 {
    width: 100% !important;
  }

  footer {
    height: 200rem !important;
  }

  footer .upper-info {
    width: unset !important;
    display: block !important;
    align-items: end !important;
  }

  footer .lower-links {
    gap: 20rem !important;
    justify-content: start !important;
  }

  footer .lower-links a {
    font-size: 16rem !important;
  }

  footer .logo {
    padding: 0 15rem;
  }

  footer p {
    font-size: 16rem !important;
  }

  .intro-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 40rem;
  }

  .intro-text {
    max-width: 100% !important;
  }

  .custom-bg-section {
    padding-left: 50rem;
    padding-right: 50rem;
  }

  .process-row {
    flex-direction: column;
    gap: 15rem;
  }

  .process-arrow {
    transform: rotate(90deg);
    margin: 10rem 0;
  }

  .ico-card-row {
    gap: 80rem !important;
  }

  .banner-wrapper.custom-1 h4 {
    margin-left: 0;
  }

  banner .content-wrapper {
    max-height: unset !important;
    width: 100% !important;
  }

  banner .cta-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .jun-container {
    flex-direction: column;
    align-items: stretch;
    gap: 50rem;
    padding-bottom: 40rem;
  }

  .jun-visual-col {
    width: 100% !important;
    height: 80rem !important;
    background-position: center center !important;
    flex: auto !important;
    background-image: url("../../Img/Misc/logo_white.png");
  }

  .jun-content-col {
    align-items: center !important;
    text-align: center !important;
    width: 100% !important;
    min-width: unset;
  }

  .jun-map-col {
    width: 100%;
    flex: auto;
    display: flex;
    justify-content: center;
  }

  .jun-map-col iframe {
    max-width: 600rem;
  }
}

.intro-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 80rem;
  width: 100%;
}

.intro-row .intro-text {
  flex: 1;
  max-width: 60%;
}

.intro-row .intro-buttons-wrapper {
  display: flex;
  flex-direction: column;
  gap: 50rem;
  flex-shrink: 0;
  min-width: 300rem;
}

.custom-bg-wrapper {
  width: 100%;
  display: block;
  background: black;
}

.custom-bg-wrapper .custom-bg-background {
  display: block;
  margin: 0 auto;
  max-width: 1920rem;
  background: black;
  background-position: center;
  background-size: cover;
  min-height: 100%;
  box-sizing: border-box;
}

.custom-bg-wrapper .custom-bg-background .custom-bg-section {
  display: flex;
  margin: 0 auto;
  max-width: 1300rem;
  min-height: 100%;
  align-items: center;
  box-sizing: border-box;
}

.custom-bg-wrapper .custom-bg-background .custom-bg-section .bg-content-wrapper {
  margin: 80rem 0;
}

.custom-bg-wrapper .custom-bg-background .custom-bg-section h3,
.custom-bg-wrapper .custom-bg-background .custom-bg-section p,
.custom-bg-wrapper .custom-bg-background .custom-bg-section ul,
.custom-bg-wrapper .custom-bg-background .custom-bg-section li {
  color: white;
  text-shadow: 1rem 1rem 2rem black;
}

.custom-bg-wrapper .cta-button {
  cursor: pointer;
  color: #303A5A;
  padding: 10rem 25rem;
  font-size: 18rem;
  font-weight: 600;
  letter-spacing: 5%;
  background: #F8F8FF;
  width: fit-content;
  border-radius: 15rem;
  margin-left: 50rem;
}

.custom-bg-wrapper .cta-button:hover {
  transform: scale(0.9);
}

.custom-bg-wrapper .bg-card {
  background: rgba(0, 0, 0, 0.6);
  border-radius: 15rem;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.custom-bg-wrapper .bg-card .card-header {
  padding: 17rem 20rem;
  display: flex;
  gap: 20rem;
  align-items: center;
}

.custom-bg-wrapper .bg-card .card-header img {
  width: 70rem;
}

.custom-bg-wrapper .bg-card .card-header h4 {
  font-size: 22rem;
  color: white;
  font-weight: 600;
  text-transform: uppercase;
}

.custom-bg-wrapper .bg-card .card-content {
  padding: 0 40rem 40rem 40rem;
}

.process-wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.process-wrapper .process-row {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 30rem;
  align-items: center;
}

.process-wrapper .process-row h4 {
  color: #303A5A;
  font-size: 22rem !important;
}

.process-wrapper .process-row .process-card {
  flex: 1;
  border-radius: 15rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  height: fit-content;
}

.process-wrapper .process-row .process-card .card-header {
  padding: 35rem;
  border-radius: 15rem 15rem 0 0;
  background: #303A5A;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.process-wrapper .process-row .process-card .card-header h3,
.process-wrapper .process-row .process-card .card-header h5 {
  text-align: center;
  color: white !important;
  font-weight: 600;
  letter-spacing: 5%;
}

.process-wrapper .process-row .process-card .card-content {
  padding: 25rem 45rem;
}

.process-wrapper .process-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 50%;
  box-shadow: 0rem 4rem 10rem rgba(0, 0, 0, 0.15);
}

.process-wrapper .process-arrow img {
  width: 80rem;
  height: 80rem;
}

.ico-card-row {
  justify-content: space-between;
  gap: 45rem;
  align-items: stretch;
}

.icon-card {
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  border-radius: 15rem;
  position: relative;
  padding: 32rem;
  padding-top: 60rem;
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.icon-card .card-header {
  margin-bottom: 32rem;
  text-align: center;
}

.icon-card h4 {
  color: #303A5A;
  font-weight: 600 !important;
  font-size: 22rem !important;
}

.icon-card .card-content {
  margin-bottom: 32rem;
}

.icon-card .circle-icon {
  width: 80rem;
  height: 80rem;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  box-shadow: 0rem 4rem 10rem rgba(0, 0, 0, 0.15);
}

.jun-footer-strip {
  width: 100%;
  background-color: #303A5A;
  color: white;
  position: relative;
  overflow: hidden;
  padding: 60rem 0;
  box-shadow: 0px -4px 10px 0px rgba(66, 68, 90, 0.4);
  background-image: url("../../Img/Bg/bg_company.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: left center;
}

.jun-footer-strip .jun-container {
  max-width: 1600rem;
  margin: 0 auto;
  padding: 0 50rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40rem;
}

.jun-footer-strip .jun-visual-col {
  flex: 1.2;
  height: 300rem;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: left center;
}

.jun-footer-strip .jun-content-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  min-width: 350rem;
  z-index: 2;
}

.jun-footer-strip .jun-label {
  font-size: 14rem;
  text-transform: uppercase;
  opacity: 0.8;
  margin-bottom: 5rem;
  display: block;
}

.jun-footer-strip .jun-title {
  font-size: 30rem !important;
  font-weight: 700 !important;
  color: white !important;
  margin-bottom: 15rem;
}

.jun-footer-strip .jun-address {
  font-size: 18rem;
  line-height: 1.6;
  margin-bottom: 15rem;
  font-weight: 300;
}

.jun-footer-strip .jun-contacts a {
  display: block;
  color: white;
  font-size: 20rem;
  text-decoration: none;
  font-weight: 600;
  margin-bottom: 5rem;
  transition: color 0.2s;
}

.jun-footer-strip .jun-contacts a:hover {
  color: #a3cfff;
}

.jun-footer-strip .cta-button.jun-btn-white {
  background: white !important;
  color: #303A5A !important;
  margin-top: 20rem;
  border: 2rem solid white;
  font-weight: 600;
  font-size: 18rem;
  text-decoration: none;
  padding: 10rem 18rem;
  border-radius: 15rem;
}

.jun-footer-strip .cta-button.jun-btn-white:hover {
  transform: scale(0.9);
}

.jun-footer-strip .jun-map-col {
  flex: 0 0 350rem;
  height: 250rem;
}

.jun-footer-strip .jun-map-col iframe {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 15rem;
  box-shadow: 0 10rem 30rem rgba(0, 0, 0, 0.3);
}

.jun-modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(3px);
}

/* Węższy kontener - 750rem zamiast 900rem */
.jun-modal-window {
  background: #F8F8FF;
  width: 750rem;
  max-width: 90%;
  padding: 45rem 60rem;
  border-radius: 20rem;
  position: relative;
  box-shadow: 0 15rem 40rem rgba(48, 58, 90, 0.4);
  box-sizing: border-box;
  max-height: 95vh;
  overflow-y: auto;
}

.jun-modal-close {
  position: absolute;
  top: 15rem;
  right: 20rem;
  background: none;
  border: none;
  font-size: 40rem;
  color: #303A5A;
  cursor: pointer;
  line-height: 1;
  font-weight: 300;
}

.jun-modal-title {
  text-align: center;
  color: #303A5A;
  font-size: 26rem;
  font-weight: 700;
  margin-bottom: 35rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.jun-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 50rem;
  row-gap: 25rem;
  margin-bottom: 25rem;
}

/* Grupa inputów: Kolumna */
.jun-input-group {
  display: flex;
  flex-direction: column;
  width: 100%;
}

/* Rząd labela i ikony */
.jun-label-row {
  display: flex;
  align-items: center;
  margin-bottom: 12rem;
  /* Odstęp między labelem a inputem */
}

.jun-icon-circle {
  width: 44rem;
  height: 44rem;
  background-color: #303A5A;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15rem;
  /* Odstęp ikony od tekstu */
  flex-shrink: 0;
}

.jun-icon-circle img {
  width: 60rem;
  height: 60rem;
}

.jun-label-row label {
  font-size: 17rem;
  font-weight: 700;
  color: #303A5A;
  margin: 0;
}

/* Input pod spodem */
.jun-input {
  width: 100%;
  height: 50rem;
  border: 1px solid #dcdce5;
  border-radius: 10rem;
  padding: 0 15rem;
  font-size: 16rem;
  color: #303A5A;
  background: white;
  box-shadow: 0px 0px 10rem 2rem rgba(66, 68, 90, 0.25);
  box-sizing: border-box;
  font-family: 'Noto Sans', sans-serif;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.jun-input:focus {
  border-color: #303A5A;
  box-shadow: 0 0 0 2rem rgba(48, 58, 90, 0.1);
}

.jun-textarea {
  height: 120rem;
  padding: 15rem;
  resize: none;
  margin-bottom: 10rem;
}

.jun-full-row {
  margin-top: 10rem;
  width: 100%;
}

.jun-consent-row {
  margin-bottom: 30rem;
  display: flex;
  align-items: flex-start;
  gap: 15rem;
}

.jun-checkbox {
  margin-top: 4rem;
  width: 18rem;
  height: 18rem;
  cursor: pointer;
  flex-shrink: 0;
  accent-color: #303A5A;
}

.jun-consent-row label {
  font-size: 11rem;
  color: #7f8c8d;
  line-height: 1.5;
  font-weight: 400;
}

.jun-modal-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #e0e0e0;
  padding-top: 25rem;
}

.jun-logo-placeholder img {
  height: 65rem;
  display: block;
}

.jun-submit-btn {
  background-color: #303A5A;
  color: white;
  font-size: 15rem;
  font-weight: 700;
  padding: 14rem 30rem;
  border: none;
  border-radius: 6rem;
  cursor: pointer;
  transition: background 0.2s;
  box-shadow: 0 4rem 10rem rgba(48, 58, 90, 0.2);
}

.jun-submit-btn:hover {
  background-color: #242d48;
}

@media (max-width: 680px) {
  .jun-form-grid {
    grid-template-columns: 1fr;
    row-gap: 20rem;
  }

  .jun-modal-window {
    padding: 30rem;
    width: 95%;
  }

  .jun-modal-footer {
    flex-direction: column;
    gap: 20rem;
  }

  .jun-label-row {
    margin-bottom: 8rem;
  }
}

.grecaptcha-badge {
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

body.show-captcha .grecaptcha-badge {
  visibility: visible;
  opacity: 1;
  z-index: 999999 !important;
}