* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.logo a {
    text-decoration: none;
    color: inherit;
    font-weight: inherit;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    color: #1f2937;
    background-color: #ffffff;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    transition: box-shadow 0.3s ease;
}

.header.scrolled {
    box-shadow: 0 6px 25px rgba(0,0,0,0.08);
}

/* pasek postępu */
.reading-progress {
    position: absolute;
    left: 0;
    bottom: -4px;
    height: 4px;
    width: 0%;
    background: linear-gradient(90deg, #5b1f6f, #a855f7);
    transition: width 0.15s ease-out;
}

/* żeby treść nie wchodziła pod header */
body {
    padding-top: 90px;  /* dostosuj do wysokości headera */
}

.header.scrolled {
    box-shadow: 0 6px 24px rgba(0,0,0,0.08);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #4b1c5c;
    text-transform: uppercase;
    line-height: 1;
}

.nav {
    display: flex;
    gap: 26px;
}

.nav a {
    font-size: 14px;
    font-weight: 500;
    color: #374151;
}

.nav a:hover {
    color: #4b1c5c;
}

.nav-right {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-right-group {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
}

.languages span {
    font-size: 12px;
    margin-left: 10px;
    cursor: pointer;
    color: #6b7280;
}

.languages span:hover {
    color: #111827;
}

.hero {
    position: relative;
    height: 600px;
    padding-bottom: 40px;
    background-image: url("/images/KrakowWallpaper.png");
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
}

.hero-box {
    margin-left: 120px;
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    padding: 40px 48px;
    max-width: 460px;
    border-radius: 6px;
}

.hero-box h1 {
    font-size: 32px;
    margin-bottom: 16px;
    line-height: 1.2;
    font-weight: 800;
    color: #4b1c5c;
}

.hero-box p {
    font-size: 15px;
    color: #374151;
    margin-bottom: 24px;
}

.hero-button {
    display: inline-block;
    background-color: #5b1f6f;
    color: #ffffff;
    padding: 14px 28px;
    font-weight: 700;
    font-size: 14px;
    border-radius: 3px;
}

.hero-button:hover {
    background-color: #4b1c5c;
}


.info-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.info-container h2 {
    font-weight: 800;
    color: #4b1c5c;
}


.footer {
    padding: 24px;
    border-top: 1px solid #e5e7eb;
    text-align: center;
    font-size: 14px;
    color: #6b7280;
}

.talk-box h1 {
    font-size: 30px;
    font-weight: 800;
    color: #4b1c5c;
    margin-bottom: 28px;
}

.talk-box h2 {
    font-size: 30px;
    font-weight: 800;
    color: #4b1c5c;
    margin-bottom: 28px;
}

.talk-box p {
    font-size: 15px;
    margin-bottom: 10px;
    color: #1f2937;
}

.bank-section {
    margin-top: 32px;
}

.bank-section h2 {
    font-size: 18px;
    font-weight: 700;
    color: #4b1c5c;
    margin-bottom: 12px;
}


.bank-section p {
    font-size: 14px;
    margin-bottom: 8px;
}
/* ================= TALK TO US – SPLIT LAYOUT ================= */


.talk-brand {
    font-family: 'Montserrat', sans-serif;
    font-size: 34px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #4b1c5c;
    margin-bottom: 32px;
    line-height: 1;
}
.section-divider--soft {
    height: 100px;
    background: linear-gradient(
            to bottom,
            #ffffff 0%,
            #f9f6f1 45%,
            #f6f2ec 100%
    );
}
/* QUICK FORM - poprawka layoutu (żeby się nie rozjeżdżało) */
.quick-form-section {
    width: 100%;
    margin-top: 18px;
    padding-top: 6px;
}

/* tytuł quick form */
.quick-form-section h3 {
    font-size: 18px !important;
    font-weight: 700;
    margin-bottom: 12px;
}

/* radio group w quick form ma być pełną szerokością i w kolumnie */
.quick-form-section .radio-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* opcje w formie ramek jak wizard */
.quick-form-section .radio-group label {
    width: 100%;
}
html, body {
    max-width: 100%;
    overflow-x: hidden;
}

h1, h2, h3, p, a, span, label {
    overflow-wrap: anywhere;
    word-break: break-word;
}

.logo {
    max-width: 100%;
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: break-word;
}

input, textarea, select {
    width: 100%;
    max-width: 100%;
}
@media (max-width: 768px) {

    /* ===== NAVBAR / HEADER ===== */
    .nav-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .nav-right-group {
        width: 100%;
        align-items: flex-start;
        gap: 8px;
    }

    .logo {
        font-size: 20px;
        letter-spacing: 1px;
        max-width: 100%;
        white-space: normal;
        overflow-wrap: anywhere;
    }

    /* Menu w jednej linii (z możliwością scroll) */
    .nav {
        width: 100%;
        display: flex;
        flex-wrap: nowrap;
        gap: 16px;
        overflow-x: auto;
        padding-bottom: 6px;
    }

    .nav a {
        font-size: 12px;
        white-space: nowrap;
        flex: 0 0 auto;
    }

    .nav::-webkit-scrollbar {
        display: none;
    }

    /* ===== HERO ===== */
    .hero {
        height: auto;
        min-height: 340px;
        padding: 24px 0;
        background-position: center;
    }

    .hero-overlay {
        position: relative;
        padding: 0 14px;
        padding-top: 20px;

        justify-content: flex-start;
        align-items: flex-start;
    }

    .hero-box {
        width: calc(100% - 28px);
        max-width: 360px;

        margin-left: 14px;
        margin-right: 14px;

        padding: 16px;
        border-radius: 14px;
    }

    .hero-box h1 {
        font-size: 24px;
        line-height: 1.1;
        margin-bottom: 10px;
    }

    .hero-box p {
        font-size: 13px;
        margin-bottom: 12px;
    }

    .hero-button {
        width: 100%;
        text-align: center;
        padding: 12px 14px;
        font-size: 13px;
    }

    .form-row {
        display: flex !important;
        flex-direction: column;
        gap: 14px;
    }
}
@media (max-width: 768px) {
    .step-image img {
        mask-image: none !important;
        -webkit-mask-image: none !important;
        filter: none !important;
        opacity: 1 !important;
    }
}
/* ================= FORCE HEADER LAYOUT ON MOBILE (OUR TEAM + PRIVACY) ================= */
@media (max-width: 768px) {

  header.header .nav-container{
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    gap: 10px !important;
  }

  /* bo u Ciebie nav-container ma też klasę nav-right */
  header.header .nav-container.nav-right{
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    gap: 10px !important;
  }

  header.header .nav-right-group{
    width: 100% !important;
    align-items: flex-start !important;
  }

  header.header .languages{
    width: 100% !important;
  }

  /* logo w jednej linii */
  header.header .logo,
  header.header .logo a{
    white-space: nowrap !important;
    word-break: normal !important;
    overflow-wrap: normal !important;
  }

  /* menu scroll w bok */
  header.header .nav{
    width: 100% !important;
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
    gap: 16px !important;
    padding-bottom: 6px !important;
  }

  header.header .nav a{
    white-space: nowrap !important;
    flex: 0 0 auto !important;
    word-break: normal !important;
    overflow-wrap: normal !important;
  }

  header.header .nav::-webkit-scrollbar{
    display: none;
  }
}
.talk-page--split .talk-split-layout{
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 34px !important;
  align-items: start !important;
}

.talk-page--split .talk-left-images{
  display: grid !important;
  grid-template-columns: 1.2fr 1fr !important;
  gap: 18px !important;
}

.talk-page--split .talk-image-right-column{
  display: grid !important;
  grid-template-rows: 1fr 1fr !important;
  gap: 18px !important;
}

.talk-page--split .talk-image-big,
.talk-page--split .talk-image-small{
  border-radius: 22px !important;
  overflow: hidden !important;
}

.talk-page--split .talk-image-big img,
.talk-page--split .talk-image-small img{
  width: 100% !important;
  height: 100% !important;
  display: block !important;
  object-fit: cover !important;
}

/* tablet / phone */
@media (max-width: 1024px){
  .talk-page--split .talk-split-layout{
    grid-template-columns: 1fr !important;
  }

  .talk-page--split .talk-left-images{
    grid-template-columns: 1fr !important;
  }

  .talk-page--split .talk-image-right-column{
    grid-template-columns: 1fr 1fr !important;
    grid-template-rows: auto !important;
  }

  .talk-page--split .talk-image-big{
    height: 280px !important;
  }
  .talk-page--split .talk-image-small{
    height: 180px !important;
  }
}

@media (max-width: 600px){
  .talk-page--split .talk-image-right-column{
    grid-template-columns: 1fr !important;
  }

  .talk-page--split .talk-image-big{
    height: 200px !important;
  }
  .talk-page--split .talk-image-small{
    height: 160px !important;
  }
}
.talk-left-images,
.talk-image-big,
.talk-image-right-column,
.talk-image-small{
  visibility: visible !important;
  opacity: 1 !important;
  transform: none !important;
}
@media (max-width: 600px){
  .talk-right-form .form-wrapper{
    width: 100%;
    max-width: 380px;   /* <- tutaj sterujesz szerokością */
    margin: 0 auto;     /* wyśrodkowanie */
  }
}
@media (max-width: 600px){
  .talk-right-form .form-wrapper{
    border-radius: 18px;
    padding: 16px;
  }
}
.grecaptcha-badge {
  visibility: hidden;
}
.recaptcha-info {
  text-align: center;
  font-size: 13px;
  color: #6e6e6e;
  margin-top: 10px;
  margin-bottom: 30px;
}

.recaptcha-info a {
  color: inherit;
  text-decoration: underline;
}





