/* Jolatrix Join - geometric_structured CSS Style
   Responsive, Flexbox-only, mobile menu & cookie consent included
   Brand: Jolatrix Join | geometric_structured aesthetic
   Colors: #0B2545 (primary), #3E92CC (secondary), #F4F4F9 (accent)
   Fonts: Montserrat (display, angular, geometric), Open Sans (body)
----------------------------------------------------------*/
/* === CSS RESET & NORMALIZE === */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body { line-height: 1.5; background: #F4F4F9; }
*, *:before, *:after { box-sizing: inherit; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; cursor: pointer; transition: color 0.2s; }
ul, ol { list-style: none; margin: 0; padding: 0; }
:focus-visible { outline: 2px solid #3E92CC; outline-offset: 2px; }

/* === FONT IMPORTS === */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600&display=swap');

body {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #0B2545;
  background: #F4F4F9;
  min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 900;
  color: #0B2545;
  letter-spacing: 0.6px;
  text-transform: none;
}
h1 {
  font-size: 2.3rem;
  line-height: 1.16;
  margin-bottom: 20px;
}
h2 {
  font-size: 1.7rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  font-weight: 700;
}
h4, h5, h6 {
  font-size: 1rem;
  font-weight: 700;
}
p, li {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  color: #0B2545;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 0.5em;
}
strong {
  font-weight: 700;
}

/* === LAYOUT CONTAINERS & GEOMETRIC STRUCTURE === */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
}
.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #F4F4F9;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  width: 100%;
}

/* Card Containers / Feature Grids */
.card-container, .feature-grid, .service-cards, .testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 8px;
}
.card, .service-card, .feature-item, .testimonial-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 10px 0 rgba(11, 37, 69, 0.08);
  border: 2px solid #E3E8EF;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.23s, border-color 0.23s, transform 0.17s;
}
.card:hover, .service-card:hover, .feature-item:hover, .testimonial-card:hover {
  border-color: #3E92CC;
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 4px 18px 0 rgba(62, 146, 204, 0.18);
}

/* feature-item (vertical stacking, left align) */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  min-width: 250px;
  flex: 1 1 260px;
  padding: 22px 20px 20px 20px;
}
.feature-item img {
  width: 44px;
  height: 44px;
}

/* service-card */
.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.service-card {
  flex: 1 1 310px;
  min-width: 260px;
  padding: 30px 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  text-align: left;
}
.service-card img {
  width: 40px;
  height: 40px;
}

/* testimonial-slider and card */
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 10px;
}
.testimonial-card {
  background: #fff;
  border: 2px solid #3E92CC;
  color: #0B2545;
  flex: 1 1 320px;
  min-width: 260px;
  max-width: 370px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 24px;
  margin-bottom: 20px;
  box-shadow: 0 2px 12px 0 rgba(11, 37, 69, 0.06);
}
.testimonial-card p {
  font-size: 1.11rem;
  font-style: italic;
  color: #0B2545;
  margin-bottom: 0.4em;
}
.testimonial-card h4 {
  color: #3E92CC;
  font-size: 1rem;
}

.certificates {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  margin-top: 16px;
}
.certificates p {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #F4F4F9;
  padding: 7px 18px;
  border-radius: 8px;
  font-weight: 600;
  color: #0B2545;
}

/* content-grid (for FAQ/contact/other blocks) */
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  margin-bottom: 24px;
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

/* FAQ Block */
.faq-block {
  background: #fff;
  border: 2px solid #E3E8EF;
  border-radius: 12px;
  box-shadow: 0 2px 10px 0 rgba(11, 37, 69, 0.06);
  padding: 28px 24px;
  margin-bottom: 20px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq-block h3 {
  color: #3E92CC;
  font-size: 1.1rem;
  margin-bottom: 4px;
}

/* CTA Section */
.cta-section {
  background: #0B2545;
  color: #fff;
  border-radius: 18px;
  padding: 48px 20px;
  text-align: center;
}
.cta-section h2 {
  color: #fff;
  font-size: 2rem;
  margin-bottom: 16px;
}
.cta-section p {
  color: #F4F4F9;
  margin-bottom: 24px;
}

/* Info / Highlight Blocks */
.info-block, .customer-service-highlight {
  background: #E3E8EF;
  border-radius: 8px;
  padding: 18px 20px;
  margin-top: 12px;
  font-size: 1rem;
  color: #0B2545;
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
}

.customer-service-highlight {
  background: #fff;
  border: 2px solid #3E92CC;
  color: #0B2545;
}

/* === BUTTONS & LINKS === */
.cta-btn, .btn, button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #3E92CC;
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  border-radius: 8px;
  box-shadow: 0 2px 8px 0 rgba(62,146,204,0.06);
  padding: 12px 32px;
  margin-top: 16px;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s, transform 0.18s;
  cursor: pointer;
}
.cta-btn:hover, .btn:hover, button:hover, .cta-btn:focus {
  background: #0B2545;
  color: #fff;
  box-shadow: 0 4px 16px 0 rgba(11,37,69,0.10);
  transform: translateY(-2px) scale(1.04);
}
.cta-btn:active { background: #2174a4; }

a.cta-btn {
  text-decoration: none;
}

/* === MAIN NAVIGATION === */
header {
  background: #fff;
  border-bottom: 2px solid #E3E8EF;
  position: sticky;
  top: 0;
  z-index: 100;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  justify-content: flex-start;
  padding: 16px 0;
}
.main-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: #0B2545;
  font-size: 1rem;
  letter-spacing: 0.5px;
  padding: 8px 14px;
  border-radius: 7px;
  transition: background 0.16s, color 0.16s;
  position: relative;
}
.main-nav a:not(.cta-btn):hover, .main-nav a:not(.cta-btn):focus {
  background: #E3E8EF;
  color: #3E92CC;
}
.main-nav .cta-btn {
  margin-left: auto;
  background: #3E92CC;
  color: #fff;
  font-weight: 900;
  font-size: 1rem;
}
.main-nav img {
  height: 38px;
  margin-right: 28px;
  margin-left: 0;
}

/* === HERO/HEADER === */
.hero {
  background: linear-gradient(150deg, #F4F4F9 55%, #E3E8EF 100%);
  border-radius: 0 0 26px 26px;
  margin-bottom: 42px !important;
  padding-top: 38px;
  padding-bottom: 0;
  box-shadow: 0 2px 14px 0 rgba(62, 146, 204, 0.05);
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 20px;
  max-width: 680px;
  margin-top: 38px;
  margin-bottom: 30px;
}
.hero h1 {
  color: #0B2545;
  margin-bottom: 16px;
  font-size: 2.5rem;
}
.hero p {
  color: #3E92CC;
  font-size: 1.17rem;
  margin-bottom: 22px;
}

/* === TABLES (Cennik) === */
.price-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  box-shadow: 0 2px 10px 0 rgba(11, 37, 69, 0.04);
  border-radius: 12px;
  overflow: hidden;
  margin: 24px 0 32px 0;
}
.price-table th, .price-table td {
  padding: 20px 12px;
  border: 1.3px solid #E3E8EF;
  text-align: center;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
.price-table th {
  background: #E3E8EF;
  color: #0B2545;
  font-size: 1.08rem;
}
.price-table td {
  color: #0B2545;
  font-weight: 600;
  background: #fff;
  font-size: 1rem;
}

/* === CONTACT / THANK-YOU INFO === */
.contact-info p,
.info-block p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  font-size: 1rem;
}
.contact-info img { width: 25px; height: 25px; }

/* === FOOTER === */
footer {
  background: #0B2545;
  color: #F4F4F9;
  box-shadow: 0 -2px 12px 0 rgba(11,37,69,0.05);
  padding: 0;
}
.footer-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 54px 36px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 44px 20px 20px 20px;
  border-radius: 22px 22px 0 0;
  flex-direction: row;
}
.footer-wrapper > a img {
  height: 55px;
  margin-bottom: 18px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 20px;
}
.footer-nav a {
  color: #F4F4F9;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 5px;
  padding: 3px 9px;
  transition: background 0.18s, color 0.18s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: #3E92CC;
  color: #fff;
}
.footer-contact {
  font-size: 1rem;
  color: #F4F4F9;
  line-height: 1.7;
}
.footer-contact span {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 6px;
}
.copywrite {
  margin-top: 16px;
  font-size: 0.97rem;
  color: #B3B9C7;
  width: 100%;
  text-align: left;
}

/* === MOBILE NAVIGATION === */
.mobile-menu-toggle {
  display: none;
  background: #3E92CC;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 2rem;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  margin-right: 16px;
  z-index: 110;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #0B2545;
  color: #fff;
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #0B2545;
  z-index: 2001;
  transform: translateX(-100vw);
  transition: transform 0.32s cubic-bezier(.8,.13,.55,1.05);
  box-shadow: 4px 0 26px 0 rgba(11, 37, 69, 0.26);
  opacity: 1;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  background: transparent;
  color: #fff;
  font-size: 2.1rem;
  border: none;
  align-self: flex-end;
  margin: 24px 26px 4px 0;
  cursor: pointer;
  transition: color 0.16s;
  z-index: 2002;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #3E92CC;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 32px 32px 0 36px;
  width: 100%;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 800;
  font-size: 1.18rem;
  border-radius: 7px;
  padding: 12px 10px;
  background: none;
  transition: background 0.15s, color 0.15s, font-size 0.19s;
  min-width: 180px;
  width: fit-content;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #3E92CC;
  color: #F4F4F9;
}

/* === COOKIE CONSENT BANNER & MODAL === */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #fff;
  color: #0B2545;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  align-items: center;
  z-index: 3010;
  padding: 24px 28px;
  box-shadow: 0 -2px 16px 0 rgba(62,146,204,0.09);
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  font-size: 1rem;
  transition: opacity 0.3s, bottom 0.3s;
  min-height: 90px;
}
.cookie-banner.hide {
  opacity: 0;
  bottom: -150px;
  pointer-events: none;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}
.cookie-btn {
  background: #3E92CC;
  color: #fff;
  border: none;
  border-radius: 7px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  padding: 9px 18px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, transform 0.18s;
  box-shadow: 0 1px 4px 0 rgba(62,146,204,0.04);
}
.cookie-btn.settings {
  background: #E3E8EF;
  color: #0B2545;
}
.cookie-btn.reject {
  background: #fff;
  color: #3E92CC;
  border: 2px solid #3E92CC;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #0B2545;
  color: #fff;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #3E92CC;
  color: #fff;
}

/* Cookie Modal */
.cookie-modal-overlay {
  position: fixed;
  left: 0; top: 0;
  width: 100vw; height: 100vh;
  background: rgba(11,37,69,0.25);
  z-index: 3500;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: cookieModalFade 0.3s cubic-bezier(.85,.15,.25,1.12);
}
@keyframes cookieModalFade {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  border-radius: 14px;
  max-width: 420px;
  width: 90vw;
  padding: 32px 24px 24px 24px;
  box-shadow: 0 4px 32px 0 rgba(62,146,204,0.16);
  color: #0B2545;
  z-index: 3501;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
}
.cookie-modal h3 {
  font-size: 1.35rem;
  color: #3E92CC;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 12px;
}
.cookie-category label {
  font-size: 1rem;
  font-weight: 600;
  color: #0B2545;
  cursor: pointer;
}
.cookie-toggle {
  appearance: none;
  width: 34px;
  height: 18px;
  background: #E3E8EF;
  border-radius: 12px;
  position: relative;
  outline: none;
  cursor: pointer;
  transition: background 0.16s;
}
.cookie-toggle:checked {
  background: #3E92CC;
}
.cookie-toggle:before {
  content: "";
  display: block;
  position: absolute;
  top: 2px; left: 2px;
  width: 14px; height: 14px;
  background: #fff;
  border-radius: 50%;
  transition: left 0.18s;
}
.cookie-toggle:checked:before {
  left: 18px;
}
.cookie-modal .cookie-actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  margin-top: 14px;
}
.cookie-modal .close-modal {
  background: transparent;
  color: #3E92CC;
  border: none;
  font-size: 1.7rem;
  position: absolute;
  top: 13px; right: 17px;
  cursor: pointer;
  transition: color 0.16s;
}
.cookie-modal .close-modal:hover {
  color: #0B2545;
}
/* === FORMS / INPUTS === */
input, textarea, select {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  background: #fff;
  color: #0B2545;
  border: 2px solid #E3E8EF;
  border-radius: 8px;
  padding: 11px 14px;
  font-size: 1rem;
  margin-bottom: 12px;
  width: 100%;
  transition: border-color 0.18s;
}
input:focus, textarea:focus, select:focus {
  border-color: #3E92CC;
  outline: none;
}

/* === UTILITY CLASSES (PADDING/MARGIN) === */
.mt-20 { margin-top: 20px; }
.mb-20 { margin-bottom: 20px; }
.mb-32 { margin-bottom: 32px; }
.gap-20 { gap: 20px; }
.gap-24 { gap: 24px; }
.radius-16 { border-radius: 16px; }

/* === RESPONSIVE DESIGN === */
@media (max-width: 1200px) {
  .container {
    max-width: 1000px;
  }
  .footer-wrapper {
    gap: 35px 18px;
    padding: 40px 12px 12px 12px;
  }
}
@media (max-width: 970px) {
  .content-wrapper, .customer-service-highlight {
    gap: 16px;
  }
  .footer-wrapper {
    flex-direction: column;
    gap: 25px 5px;
    align-items: flex-start;
  }
}
@media (max-width: 900px) {
  .main-nav { gap: 8px; }
  .service-card, .feature-item, .testimonial-card {
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 1.65rem; }
  h2 { font-size: 1.24rem; }
  h3 { font-size: 1.07rem; }
  .hero .content-wrapper { max-width: 100%; margin: 24px 0 18px 0; }
  .section, section {
    padding: 30px 10px;
    margin-bottom: 40px;
  }
  .footer-wrapper {
    border-radius: 12px 12px 0 0;
    padding: 30px 6px 10px 6px;
  }
  .service-card, .feature-item, .testimonial-card {
    min-width: 140px; flex-basis: 100%;
  }
  .card-container, .feature-grid, .service-cards, .testimonial-slider, .certificates {
    flex-direction: column;
    gap: 18px;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .main-nav {
    display: none !important;
  }
  .mobile-menu {
    display: flex;
  }
  .footer-wrapper {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
  .cta-section {
    border-radius: 0;
    padding: 36px 10px;
  }
}
@media (max-width: 530px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 22px 10px;
    min-height: unset;
  }
  .cookie-modal {
    padding: 19px 6px 16px 6px;
  }
  .footer-wrapper { padding: 18px 2px 9px 2px; }
}

/* === FLEXBOX CONSTRAINT ENFORCEMENT === */
/* (NO display:grid, columns, CSS columns anywhere) */

/* === GEOMETRIC VISUAL ELEMENTS === */
.card, .service-card, .feature-item, .testimonial-card, .faq-block {
  border-radius: 14px;
  /* geometric corners */
  border-top-left-radius: 38px 14px;
  border-bottom-right-radius: 38px 14px;
}
.cta-section, .hero {
  border-top-right-radius: 48px 26px;
  border-bottom-left-radius: 48px 20px;
}

/* === MICRO-INTERACTIONS & EFFECTS === */
.card, .service-card, .feature-item, .testimonial-card {
  transition: box-shadow 0.18s, border-color 0.18s, transform 0.18s;
}
.cta-btn, .btn, button, .cookie-btn {
  transition: background 0.18s, color 0.18s, box-shadow 0.18s, transform 0.17s;
}

/* === OVERRIDE FORBIDDEN LAYOUTS === */
/* Absolutely no grid/columns properties are in this stylesheet */
