@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%; }

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; }

a:hover {
  color: #009aff !important;
  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;
    font-weight: bold;
    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:hover {
      transform: scale(0.95); }
    section .cta-button.intro {
      font-size: 30rem;
      font-weight: 300; }

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

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

.w-100 {
  width: 100%; }

.h-100 {
  height: 100%; }

.flex {
  display: flex !important; }
  .flex.ac {
    align-items: center; }

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  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 {
        color: #009aff !important; }
    header.scrolled .nav-link.button {
      background: #009aff;
      color: white; }
    header.scrolled .button {
      background: #303A5A !important;
      color: white !important; }
    header.scrolled .dropdown {
      top: 40rem !important; }
    header.scrolled .logo {
      background-image: url("/Assets/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("/Assets/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: 40rem;
        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; }
        header .navbar .nav-links-wrapper .nav-link.active {
          font-weight: 600; }
        header .navbar .nav-links-wrapper .nav-link:hover {
          color: #009aff; }
        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: 100rem;
      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);
            color: #009aff;
            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;
              color: #009aff;
              transform: none; }
        header .navbar .nav-links-wrapper .nav-item:hover .dropdown {
          display: block; } }

.banner-wrapper {
  width: 100%;
  display: block;
  background: black; }
  .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: 100%;
  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) {
  .desktop {
    display: none !important; }
  .mobile {
    display: initial !important; }
  html {
    font-size: 0.70px; }
  banner {
    height: 100vh !important; }
    banner .content-wrapper {
      padding: 100rem 50rem !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 25rem; }
  .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; } }

.intro-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 80rem;
  width: 100%; }
  .intro-row .intro-text {
    flex: 1;
    max-width: 65%; }
  .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; }
    .custom-bg-wrapper .custom-bg-background .custom-bg-section {
      display: flex;
      margin: 0 auto;
      max-width: 1300rem;
      height: 100%;
      align-items: center; }
      .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; }

/* Kontener ogólny dla tej sekcji */
.process-wrapper {
  display: flex;
  flex-direction: column;
  width: 100%; }

/* Wiersz zawierający: Problem -> Strzałka -> Rozwiązanie */
.process-row {
  display: flex;
  align-items: stretch;
  /* Karty będą miały tę samą wysokość */
  justify-content: space-between;
  gap: 30rem; }

/* Stylizacja kart */
.process-card {
  flex: 1;
  /* Obie karty zajmują po równo miejsca */
  padding: 40rem;
  border-radius: 15rem;
  display: flex;
  flex-direction: column;
  justify-content: center; }

/* Karta Problemu (Lewa) - Styl ostrzegawczy/neutralny */
.process-card.problem {
  background: #fff;
  border: 1px solid #e0e0e0;
  box-shadow: 0 4rem 15rem rgba(0, 0, 0, 0.03);
  border-left: 6rem solid #d9534f;
  /* Czerwony pasek z boku */ }

.process-card.problem h4 {
  font-weight: bold;
  color: #d9534f;
  font-size: 22rem;
  font-style: italic; }

/* Karta Rozwiązania (Prawa) - Styl brandowy/wyróżniony */
.process-card.solution {
  background: #303A5A;
  /* Twój granat */
  color: white;
  border-left: 6rem solid #009aff;
  /* Niebieski pasek z boku */
  box-shadow: 0 10rem 30rem rgba(48, 58, 90, 0.2); }

.process-card.solution h4 {
  color: #009aff;
  text-transform: uppercase;
  font-size: 14rem;
  font-weight: bold;
  letter-spacing: 2rem;
  margin-bottom: 10rem; }

.process-card.solution h3 {
  color: white;
  font-weight: bold; }

.process-card.solution p {
  color: #e0e0e0;
  /* Lekko szary biały dla czytelności tekstu */ }

/* Stylizacja Strzałki */
.process-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 50rem;
  /* Rozmiar strzałki */
  color: #303A5A;
  font-weight: 300;
  width: 50rem;
  /* Stała szerokość kontenera strzałki */
  flex-shrink: 0;
  /* Strzałka się nie zgniata */ }

/* --- RESPONSYWNOŚĆ (MOBILE) --- */
@media (max-width: 680px) {
  .process-row {
    flex-direction: column;
    /* Układamy elementy jeden pod drugim */
    gap: 15rem; }
  .process-arrow {
    width: 100%;
    /* Strzałka na całą szerokość */
    height: 50rem;
    transform: rotate(90deg);
    /* OBRÓT STRZAŁKI W DÓŁ */
    margin: 10rem 0; }
  .process-card {
    padding: 30rem 20rem;
    /* Nieco mniejszy padding na mobile */ } }
