/* 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 {
  scroll-behavior: smooth;
}
body {
  line-height: 1.5;
  font-family: 'Roboto', Arial, sans-serif;
  color: #172947;
  background: #fff;
  font-size: 16px;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #123463;
  text-decoration: none;
  transition: color 0.2s cubic-bezier(.68,-0.55,.27,1.55);
}
a:hover, a:focus {
  color: #19A1A7;
  outline: none;
}
ul, ol {
  margin: 16px 0 16px 24px;
  padding: 0;
}
strong {
  font-weight: 700;
}

/* CUSTOM FONT FAMILY (Monteserrat/Roboto) */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 900;
  color: #123463;
  letter-spacing: 0.5px;
}
h1 { font-size: 2.6rem; margin-bottom: 18px; }
h2 { font-size: 2rem; margin-bottom: 16px; }
h3 { font-size: 1.4rem; margin-bottom: 12px; }
h4 { font-size: 1.1rem; margin-bottom: 8px; }
h5, h6 { font-size: 1rem; margin-bottom: 8px; }

p, li {
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  line-height: 1.7;
  margin-bottom: 12px;
  color: #21385d;
}

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 18px;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  position: relative;
  margin-bottom: 20px;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* BRAND COLORS (playful_dynamic) */
:root {
  --color-primary: #123463;
  --color-primary-dark: #0f284c;
  --color-secondary: #19A1A7;
  --color-secondary-light: #37d0e6;
  --color-accent: #F5F5F5;
  --color-yellow: #FFE159;
  --color-pink: #FF85A1;
  --color-green: #70DB9F;
  --color-orange: #FFA856;
  --color-dark: #172947;
  --color-light: #fff;
  --shadow: 0 4px 18px rgba(25,161,167,.09), 0 2px 5px rgba(30,48,87,0.03);
  --radius: 18px;
}

/* PLAYFUL/ENERGETIC ELEMENTS */
.hero {
  background: linear-gradient(95deg, #19A1A7 85%, #FF85A1 110%);
  padding: 60px 0 40px 0;
  border-bottom-left-radius: 44px;
  border-bottom-right-radius: 44px;
  box-shadow: 0 12px 24px rgba(25,161,167,.13);
  animation: popHero 0.7s cubic-bezier(.68,-0.55,.27,1.55);
}
@keyframes popHero {
  0% { transform: scale(.96) translateY(18px); opacity: .5; }
  70% { transform: scale(1.04) translateY(-10px); opacity: 1; }
  100% { transform: scale(1) translateY(0); }
}
.hero h1,
.hero p {
  color: #fff;
  text-shadow: 0 2px 4px #19939730;
}

.btn-primary {
  background: var(--color-yellow);
  color: var(--color-primary);
  border: none;
  border-radius: 24px;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.18rem;
  font-weight: 900;
  text-transform: uppercase;
  padding: 14px 38px;
  margin-top: 18px;
  cursor: pointer;
  box-shadow: 0 2px 10px #12346312;
  transition: background 0.15s, color 0.15s, transform 0.18s cubic-bezier(.68,-0.55,.27,1.55);
  letter-spacing: 1.5px;
  outline: 0;
}
.btn-primary:hover,
.btn-primary:focus {
  background: var(--color-orange);
  color: #fff;
  transform: scale(1.05) rotate(-2deg);
}

/* MAIN NAV */
.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 14px 0;
  background: #fff;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
}
.main-nav a {
  padding: 8px 12px;
  border-radius: 16px;
  transition: background .16s cubic-bezier(.68,-0.55,.27,1.55), color .13s;
  color: var(--color-primary);
}
.main-nav a:hover,
.main-nav a:focus {
  background: #19A1A713;
  color: var(--color-secondary);
}
.main-nav a.btn-primary {
  margin-left: 10px;
  box-shadow: 0 2px 6px #12346314;
}
.main-nav img {
  height: 38px;
}

/* FOOTER */
footer {
  background: var(--color-primary);
  color: #fff;
  padding: 32px 0 16px 0;
  margin-top: 50px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: center;
  font-size: 1.01rem;
  margin-bottom: 10px;
}
.footer-nav a {
  color: #fff;
  opacity: .93;
  border-radius: 14px;
  padding: 6px 14px;
}
.footer-nav a:hover,
.footer-nav a:focus {
  background: var(--color-yellow);
  color: var(--color-primary);
}
.footer-info {
  text-align: center;
  font-size: 0.98rem;
  opacity: 0.85;
}

/* FLEX-WRAPPED FEATURE/CONTENT GRIDS */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 14px;
}
.feature-grid > div {
  background: var(--color-accent);
  border-radius: var(--radius);
  padding: 28px 22px 20px 22px;
  flex: 1 1 230px;
  min-width: 240px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.14s, transform 0.17s;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  will-change: transform;
}
.feature-grid > div:hover {
  box-shadow: 0 6px 32px #19A1A754;
  background: #fffbe8;
  transform: translateY(-8px) scale(1.035) rotate(-0.5deg);
}
.feature-grid img {
  margin-bottom: 15px;
  height: 42px;
  width: auto;
}
.feature-grid h3 {
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: 0.6px;
  margin-bottom: 8px;
  color: var(--color-secondary);
}

/* TESTIMONIALS */
.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 20px 0;
  align-items: flex-start;
  justify-content: flex-start;
}
.testimonial-card {
  background: #fff;
  color: #21385D;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px 24px 18px 24px;
  min-width: 220px;
  max-width: 340px;
  flex: 1 1 220px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  transition: box-shadow 0.17s, transform 0.17s cubic-bezier(.68,-0.55,.27,1.55);
  z-index: 1;
}
.testimonial-card blockquote {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.09rem;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 18px;
  color: #123463;
  background: #fffaec;
  padding: 12px 18px 12px 18px;
  border-left: 6px solid var(--color-secondary);
  border-radius: 9px;
}
.testimonial-card p {
  margin-bottom: 2px;
  font-size: .94rem;
}
.testimonial-card strong {
  color: var(--color-primary);
}
.testimonial-card:after {
  content: "";
  display: block;
  position: absolute;
  top: -22px;
  right: -22px;
  width: 28px;
  height: 28px;
  background: var(--color-yellow);
  border-radius: 62% 44% 53% 62%;
  z-index: -1;
  opacity: .38;
  animation: floatBlob 3.5s infinite alternate cubic-bezier(.68,-0.55,.27,1.55);
}
@keyframes floatBlob {
  0% { transform: scale(0.8) rotate(-14deg); }
  100% { transform: scale(1.2) rotate(17deg); }
}
.partner-logos {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 14px;
  background: none;
}
.partner-logos img {
  width: 48px;
  height: 48px;
  opacity: .83;
  filter: drop-shadow(1px 3px 0px #19A1A711);
}

/* SERVICE CARDS (Oferta/Cennik) */
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}
.service-card {
  background: linear-gradient(99deg, #19A1A7 90%, #FFE159 130%);
  color: #fff;
  border-radius: var(--radius);
  padding: 30px 22px 18px 22px;
  box-shadow: 0 4px 22px #19A1A72c;
  flex: 1 1 220px;
  min-width: 220px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow .15s, transform .15s cubic-bezier(.68,-0.55,.27,1.55);
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
}
.service-card strong {
  color: #FFE159;
  font-weight: 900;
}
.service-card:hover {
  box-shadow: 0 10px 38px #12346325;
  transform: scale(1.045) rotate(1.3deg);
}
.service-card h2 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #fff;
}

/* PRICING TABLE */
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  margin: 30px 0 40px 0;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  box-shadow: 0 1px 3px #12346313;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
}
.pricing-table th, .pricing-table td {
  padding: 14px 20px;
  border-bottom: 1px solid #e0e9f7;
}
.pricing-table th {
  background: #19A1A7;
  color: #fff;
  font-weight: 900;
  font-size: 1.03rem;
  letter-spacing: 1px;
}
.pricing-table tr:last-child td {
  border-bottom: none;
}
.pricing-table tbody td {
  color: #123463;
  font-weight: 600;
  background: #F7FCFD;
}

.pricing-plans {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.pricing-plans h2 {
  font-size: 1.18rem;
  font-weight: 900;
  color: #19A1A7;
  margin-bottom: 8px;
}
.pricing-plans p {
  color: #21385D;
}

/* FAQ ACCORDION (Wsparcie) */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 22px;
}
.faq-accordion > div {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 8px #19A1A72a;
  padding: 18px 15px 15px 20px;
  transition: box-shadow 0.12s;
  border-left: 6px solid #19A1A7;
  margin-bottom: 8px;
}
.faq-accordion h3 {
  color: #19A1A7;
  font-size: 1.13rem;
  margin-bottom: 8px;
}
.faq-accordion p {
  color: #223453;
  font-size: .97rem;
}
.help-guides ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.help-guides li {
  padding: 7px 0;
}
.help-guides a {
  color: #123463;
  font-weight: 700;
  border-bottom: 2.5px solid #FFE159;
  transition: color .15s;
}
.help-guides a:hover,
.help-guides a:focus {
  color: #19A1A7;
  background: #FFF5EE;
}

/* CONTACT SECTIONS */
.contact-info {
  background: #F7FCFD;
  border-radius: var(--radius);
  padding: 18px 22px 10px 22px;
  margin-bottom: 20px;
  font-size: 1rem;
  box-shadow: 0 1px 6px #12346310;
  color: #113055;
}
.contact-form-section {
  background: #fffbe8;
  border-radius: var(--radius);
  padding: 22px 22px 18px 22px;
  box-shadow: 0 4px 16px #FFE15910;
  margin-bottom: 20px;
  font-size: 1rem;
}
.contact-form-section h3 {
  font-size: 1.1rem;
  color: #19A1A7;
  font-weight: 900;
  margin-bottom: 12px;
}
.contact-form-section ul {
  margin-bottom: 13px;
  margin-left: 0;
}

/* BUTTONS/LINKS GENERIC */
button, .btn, .btn-primary, .mobile-menu-close {
  border: none;
  cursor: pointer;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  transition: all .15s cubic-bezier(.68,-0.55,.27,1.55);
}

/* BURGER MENU FOR MOBILE */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  top: 26px;
  right: 25px;
  background: var(--color-secondary);
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 2.1rem;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  z-index: 60;
  box-shadow: 0 2px 10px #12346320;
}
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 280px;
  height: 100vh;
  background: #fff;
  box-shadow: -16px 0 38px #12346335;
  transform: translateX(105%);
  transition: transform 0.35s cubic-bezier(.68,-0.55,.27,1.55);
  z-index: 100;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  will-change: transform;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 18px;
  right: 18px;
  font-size: 1.9rem;
  background: #FFE159;
  color: #123463;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  box-shadow: 0 1px 8px #FFE15921;
  transition: background 0.13s, color 0.13s;
  z-index: 102;
}
.mobile-menu-close:hover {
  background: #FF85A1;
  color: #fff;
}
.mobile-nav {
  width: 100%;
  padding: 70px 24px 12px 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
}
.mobile-nav a {
  display: block;
  width: 100%;
  padding: 14px 0 14px 16px;
  font-size: 1.1rem;
  color: #123463;
  border-radius: 12px;
  margin-bottom: 3px;
  font-weight: 800;
  background: none;
  transition: background .16s, color .13s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #19A1A714;
  color: #19A1A7;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #fffbe8;
  color: #123463;
  padding: 24px 18px;
  box-shadow: 0 -4px 12px #12346318;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  animation: slideUpBanner 0.42s cubic-bezier(.68,-0.55,.27,1.55);
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
}
@keyframes slideUpBanner {
  0% { transform: translateY(80px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner .cookie-btns {
  display: flex;
  gap: 10px;
}
.cookie-banner button {
  padding: 9px 18px;
  border-radius: 10px;
  border: none;
  margin-right: 8px;
  font-size: 1rem;
  background: #FFE159;
  color: #123463;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  transition: background .16s, color .14s;
}
.cookie-banner .cookie-accept {
  background: #19A1A7;
  color: #fff;
}
.cookie-banner .cookie-accept:hover {
  background: #70DB9F;
  color: #123463;
}
.cookie-banner .cookie-reject {
  background: #FF85A1;
  color: #fff;
}
.cookie-banner .cookie-reject:hover {
  background: #FFA856;
  color: #fff;
}
.cookie-banner .cookie-settings {
  background: #FFE159;
  color: #123463;
}
.cookie-banner .cookie-settings:hover {
  background: #19A1A7;
  color: #fff;
}

/* COOKIE SETTINGS MODAL */
.cookie-modal-overlay {
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(18,52,99,0.33);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeOverlay 0.28s linear;
}
@keyframes fadeOverlay {
  from { opacity: 0; } to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 8px 48px #12346341;
  padding: 32px 28px 24px 28px;
  max-width: 335px;
  width: 95vw;
  color: #123463;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  animation: popCookie 0.32s cubic-bezier(.68,-0.55,.27,1.55);
  position: relative;
}
@keyframes popCookie {
  0% { transform: scale(0.8); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}
.cookie-modal h2 {
  font-size: 1.2rem;
  font-weight: bold;
  color: #19A1A7;
  margin-bottom: 16px;
}
.cookie-modal .cookie-modal-close {
  position: absolute;
  top: 15px;
  right: 18px;
  background: #FF85A1;
  color: #fff;
  font-size: 1.5rem;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  border: none;
  cursor: pointer;
  transition: background .12s, color .12s;
}
.cookie-modal .cookie-modal-close:hover {
  background: #19A1A7;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 18px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #F5F5F5;
  padding: 10px 12px;
  border-radius: 12px;
  font-size: 0.98rem;
}
.cookie-category label {
  font-weight: 600;
  color: #123463;
  cursor: pointer;
}
.cookie-category input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: #FFE159;
}
.cookie-category .cookie-locked {
  margin-left: auto;
  color: #19A1A7;
  font-size: .96em;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 12px;
  margin-top: 16px;
  justify-content: flex-end;
}
.cookie-modal .cookie-modal-actions button {
  padding: 8px 20px;
  border-radius: 10px;
  border: none;
  font-size: 1rem;
  background: #FFE159;
  color: #123463;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  transition: background .13s, color .12s;
}
.cookie-modal .cookie-modal-actions .cookie-accept {
  background: #19A1A7;
  color: #fff;
}
.cookie-modal .cookie-modal-actions .cookie-accept:hover {
  background: #70DB9F;
  color: #123463;
}

/* Responsive Design - MOBILE FIRST  */

@media (max-width: 1150px) {
  .feature-grid > div,
  .service-card {
    min-width: 180px;
    flex: 1 1 180px;
    padding: 23px 14px 13px 14px;
  }
}

@media (max-width: 900px) {
  .main-nav {
    gap: 12px;
    font-size: 0.98rem;
  }
  .feature-grid, .service-list, .testimonial-list {
    gap: 16px;
  }
}
@media (max-width: 860px) {
  .feature-grid > div, .service-card, .testimonial-card {
    min-width: 90vw;
    max-width: 100vw;
    flex: 1 1 99vw;
  }
  .feature-grid, .service-list, .testimonial-list {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }
}
@media (max-width: 768px) {
  .main-nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .hero,
  .section,
  [style*='background:#F5F5F5;'],
  .container {
    padding-left: 9px;
    padding-right: 9px;
    border-radius: 0;
  }
  .content-wrapper {
    padding: 0 2px;
    gap: 18px;
  }
  h1 { font-size: 2.1rem; }
  h2 { font-size: 1.34rem; }
  .btn-primary {
    margin-top: 15px;
    font-size: 1rem;
    padding: 12px 22px;
  }
}
@media (max-width: 540px) {
  .testimonial-card, .feature-grid > div, .service-card {
    padding: 14px 6vw 10px 6vw;
    font-size: .97rem;
    min-width: 0;
    max-width: 99vw;
  }
  .hero {
    padding: 40px 0 23px 0;
    border-radius: 0 0 20px 20px;
  }
}
@media (max-width: 480px) {
  .cookie-modal {
    padding: 17px 5vw;
  }
  .mobile-menu {
    width: 98vw;
  }
}

/****** Utility Spacing & Elements ******/
.section:not(.hero) { background: none; }
section { margin-bottom: 60px; }
.feature-grid > div:last-child, .service-card:last-child, .testimonial-card:last-child {
  margin-bottom: 20px;
}

/****** Miscellaneous Styling ******/
table {
  border-spacing: 0;
  border-collapse: collapse;
}
.content-wrapper > *, .footer-nav > *, .feature-grid > *, .service-list > *, .testimonial-list > * {
  margin-right: 0;
}
::selection {
  background: #FF85A1;
  color: #fff;
}

/* Distinctive playful/dynamic dots & decorations */
.feature-grid > div::before, .service-card:before {
  content: "";
  position: absolute;
  top: -16px;
  left: 30px;
  width: 28px;
  height: 15px;
  border-radius: 50% 60% 60% 45%;
  background: #FFE15966;
  opacity: 0.6;
  z-index: 0;
  pointer-events: none;
}
.service-card:before {
  left: auto;
  right: 26px;
  top: -12px;
  width: 18px;
  height: 16px;
  background: #FF85A1;
  opacity: .43;
}

/****** Print fixes ******/
@media print {
  header, footer, .mobile-menu, .cookie-banner, .cookie-modal-overlay { display: none !important; }
  body { background: #fff !important; }
}
