/* RESET & BASE STYLES */
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.65;
  background: #F6F1ED;
  color: #1A2634;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 16px;
  letter-spacing: 0.01em;
  min-height: 100vh;
  font-weight: 400;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #4571E1;
  text-decoration: none;
  transition: color 0.3s;
  cursor: pointer;
}
a:hover, a:focus {
  color: #D946EF;
  text-decoration: underline;
}
ul, ol {
  margin-left: 1.5em;
  margin-bottom: 16px;
}
li+li {
  margin-top: 8px;
}
strong, b {
  font-weight: 600;
}
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

/* BRAND TYPOGRAPHY */
h1, .h1 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 800;
  font-size: 2.6rem;
  color: #1A2634;
  letter-spacing: 0.02em;
  margin-bottom: 24px;
}
h2, .h2 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 2rem;
  color: #532C8E;
  letter-spacing: 0.01em;
  margin-bottom: 20px;
}
h3, .h3 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1.22rem;
  color: #1A2634;
  margin-top: 24px;
  margin-bottom: 14px;
}
p {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  margin-bottom: 14px;
  color: #222B3A;
}
blockquote {
  font-family: 'Montserrat', cursive, Arial, sans-serif;
  font-size: 1.1rem;
  font-style: italic;
  background: #F6F1ED;
  border-left: 6px solid #FCBE45;
  padding: 18px 28px 18px 24px;
  margin-bottom: 10px;
  color: #1A2634;
  border-radius: 0 24px 24px 0;
}

/* HEADER — NAVIGATION */
header {
  background: #ffffff;
  box-shadow: 0 1px 12px rgba(26,38,52,.08);
  position: sticky;
  top: 0;
  z-index: 99;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 24px 0;
  position: relative;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
.main-nav .logo {
  margin-right: 30px;
  flex-shrink: 0;
}
.main-nav a {
  font-size: 1rem;
  color: #1A2634;
  font-weight: 500;
  border-radius: 18px;
  padding: 8px 18px;
  transition: background .23s, color .21s;
  position: relative;
}
.main-nav a:hover, .main-nav a:focus {
  background: #E1DEF6;
  color: #532C8E;
}
.main-nav .cta-main {
  background: linear-gradient(90deg, #FCBE45 0%, #36B9D5 100%);
  color: #fff;
  font-weight: 700;
  font-size: 1.12rem;
  letter-spacing: 0.01em;
  border: none;
  margin-left: 18px;
  box-shadow: 0 4px 18px rgba(252,190,69,.11);
  transition: transform .17s, box-shadow .17s, background .27s;
}
.main-nav .cta-main:hover, .main-nav .cta-main:focus {
  background: #36B9D5;
  color: #fff;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 6px 12px rgba(54,185,213,.18);
}

/* BURGER MENU (MOBILE) */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.1rem;
  color: #1A2634;
  margin-left: 14px;
  cursor: pointer;
  z-index: 106;
  transition: color 0.2s;
}
.mobile-menu-toggle:focus{
  color: #36B9D5;
  outline: none;
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  transform: translateX(-100%);
  transition: transform .36s cubic-bezier(.23,1.18,.91,1);
  z-index: 110;
  padding: 0 0 0 0;
  box-shadow: 0 8px 48px 8px rgba(25,30,60,0.14);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2.2rem;
  line-height: 1;
  background: none;
  border: none;
  color: #1A2634;
  position: absolute;
  right: 22px;
  top: 22px;
  cursor: pointer;
  z-index: 111;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 70px;
  width: 100%;
  align-items: stretch;
}
.mobile-nav a {
  font-size: 1.22rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #1A2634;
  padding: 18px 32px;
  border-radius: 0 28px 28px 0;
  font-weight: 600;
  background: #F6F1ED;
  margin-bottom: 8px;
  transition: background .22s, color .22s;
  text-align: left;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #FCBE45;
  color: #fff;
}

/* HERO SECTIONS */
.hero, .hero-thankyou {
  background: linear-gradient(90deg, #E8D5FF 0%, #F6F1ED 72%);
  border-radius: 0 0 40px 40px;
  margin-bottom: 60px;
  padding: 40px 0;
  position: relative;
  min-height: 340px;
  display: flex;
  align-items: center;
}
.hero .content-wrapper, .hero-thankyou .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
.hero h1, .hero-thankyou h1 {
  color: #2B007A;
  text-shadow: 1px 7px 22px #F7DE90;
  font-size: 2.7rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  line-height: 1.06;
  margin-bottom: 10px;
}
.hero p, .hero-thankyou p {
  font-size: 1.17rem;
  color: #3F2C54;
  max-width: 670px;
}

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

/* FEATURES (creative artistic style) */
.features {
  background: linear-gradient(110deg, #FFFDF6 22%, #E8D5FF 100%);
  border-radius: 36px;
  margin-bottom: 60px;
  padding: 40px 20px;
  box-shadow: 0 1px 18px 2px rgba(52,44,138,0.07);
  position: relative;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-bottom: 40px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 3px 24px rgba(252,190,69,.13);
  padding: 28px 24px 20px 24px;
  min-width: 260px;
  min-height: 230px;
  max-width: 334px;
  position: relative;
  transition: transform .18s, box-shadow .18s;
}
.feature-item img {
  width: 56px;
  height: 56px;
  filter: drop-shadow(0 8px 36px #FCBE45BB);
}
.feature-item h3 {
  font-size: 1.18rem;
  color: #36B9D5;
  margin-top: 6px;
  font-family: 'Montserrat',Arial,sans-serif;
}
.feature-item p {
  color: #432569;
  margin-bottom: 4px;
}
.feature-item:hover {
  transform: translateY(-7px) scale(1.03);
  box-shadow: 0 12px 40px rgba(54,185,213,.13);
}

/* INSPIRATIONS */
.inspiration-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}
.inspiration-cards .text-section {
  border-radius: 20px;
  padding: 20px 24px;
  box-shadow: 0 4px 24px rgba(54,185,213,.09);
  min-width: 200px;
  flex: 1 1 250px;
  margin-bottom: 0;
  transition: box-shadow .17s, transform .16s;
}
.inspiration-cards .text-section h3 {
  color: #FCBE45;
  margin-top: 0;
  margin-bottom: 8px;
}
.inspiration-cards .text-section:hover {
  box-shadow: 0 8px 32px #36B9D544;
  transform: translateY(-5px);
}

/* CARD CONTAINERS & FLEX LAYOUTS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 1px 10px 6px rgba(54,185,213,.09);
  padding: 26px 24px;
  transition: box-shadow .20s;
}
.card:hover {
  box-shadow: 0 8px 22px 2px #FCBE45AA;
}
.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;
}

.text-section {
  margin-bottom: 16px;
}

/* TESTIMONIALS */
.testimonials {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 10px 36px 0 rgba(82,44,142,0.12);
  margin-bottom: 22px;
  flex-direction: column;
  align-items: flex-start;
  max-width: 620px;
  border-left: 8px solid #36B9D5;
  transition: transform .14s;
  color: #1A2634;
}
.testimonial-card blockquote {
  margin: 0 0 4px 0;
  color: #222B3A;
  font-size: 1.07rem;
  font-style: italic;
  background: none;
  border: none;
  padding: 0;
}
.testimonial-card p {
  color: #3F2C54;
  margin-bottom: 0;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: .01em;
}
.testimonial-card:hover {
  transform: scale(1.015);
  box-shadow: 0 12px 46px 0 rgba(252,190,69,.13);
}

/* CTA BUTTONS */
.cta-main {
  background: linear-gradient(90deg,#FCBE45,#36B9D5 90%);
  color: #fff;
  border: none;
  border-radius: 20px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: .02em;
  padding: 13px 34px;
  cursor: pointer;
  box-shadow: 0 8px 38px 0 rgba(252,190,69,0.13);
  transition: background 0.18s, transform 0.11s, box-shadow .2s;
  margin-top: 18px;
  display: inline-block;
  margin-bottom: 10px;
}
.cta-main:hover,
.cta-main:focus {
  background: #36B9D5;
  color: #fff;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 12px 32px 0 rgba(54,185,213,.17);
  outline: none;
}

/* SECTIONS */
.section, .about, .services, .contact, .contact-form, .footer-policy, .footer-cookies, .footer-rodo, .footer-terms {
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 4px 24px 0 rgba(90,80,180,0.06);
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* CONTACT INFO */
.contact .text-section p,
.contact-form .text-section p {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
  color: #1A2634;
  font-size: 1rem;
}
.contact .text-section img,
.contact-form .text-section img {
  width: 20px;
  height: 20px;
  margin-right: 6px;
  filter: drop-shadow(0 2px 7px #36B9D555);
}

/* FOOTER */
footer {
  background: #1A2634;
  color: #fff;
  padding: 44px 0 18px 0;
  margin-top: 60px;
}
.footer-nav {
  display: flex;
  gap: 32px;
  justify-content: center;
  margin-bottom: 16px;
}
.footer-nav a {
  color: #FCBE45;
  font-family: 'Montserrat',Arial,sans-serif;
  font-size: 1rem;
  transition: color .17s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #56CDF7;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 10px;
  gap: 6px;
}
.footer-brand img {
  width: 42px;
  height: auto;
  margin-bottom: 6px;
}
.footer-brand p {
  color: #fff;
  font-size: 0.93rem;
  opacity: 0.90;
  margin-bottom: 0;
}

/* UTILITY SPACING */
.section, .about, .services, .contact, .contact-form, .features, .testimonials {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container, .feature-grid, .content-grid, .inspiration-cards {
  gap: 24px;
  margin-bottom: 0;
}
.card {
  margin-bottom: 20px;
}
.text-image-section {
  gap: 30px;
}
.testimonial-card {
  gap: 20px;
  padding: 20px;
}
.feature-item {
  gap: 15px;
}
/* FAQ ACCORDION - Artistic simple styling */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #F6F1ED;
  border-radius: 18px;
  padding: 24px 22px;
  margin-bottom: 16px;
}
.faq-accordion .text-section h3 {
  color: #532C8E;
  margin-bottom: 3px;
  margin-top: 24px;
  font-size: 1.06rem;
  font-weight: 700;
}
.faq-accordion .text-section p {
  color: #353B4E;
  font-size: 1rem;
}

/* COOKIE BANNER & MODAL */
.cookie-banner {
  position: fixed;
  left: 50%;
  transform: translateX(-50%) translateY(0);
  bottom: 0;
  background: #fffbe7;
  box-shadow: 0 -2px 30px rgba(255,210,34,0.13);
  color: #1A2634;
  z-index: 2147483647;
  width: 96%;
  max-width: 568px;
  border-radius: 22px 22px 0 0;
  padding: 26px 30px 20px 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 17px;
  font-size: 1rem;
  animation: cookie-in .6s cubic-bezier(.42,0,.47,1.25);
}
@keyframes cookie-in {
  from { transform: translateX(-50%) translateY(120px); opacity: 0; }
  to { transform: translateX(-50%) translateY(0); opacity:1; }
}
.cookie-banner-buttons {
  display: flex;
  gap: 14px;
  margin-top: 4px;
}
.cookie-btn {
  padding: 9px 21px;
  border: none;
  border-radius: 14px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background .18s, color .17s, box-shadow .18s;
  margin-right: 2px;
}
.cookie-btn.accept {
  background: #FCBE45;
  color: #fff;
  box-shadow: 0 2px 18px #FCBE4540;
}
.cookie-btn.accept:hover { background: #D946EF; color: #fff; }
.cookie-btn.reject {
  background: #36B9D5;
  color: #fff;
  box-shadow: 0 3px 14px #36B9D522;
}
.cookie-btn.reject:hover {
  background: #2B007A;
}
.cookie-btn.settings {
  background: #fff;
  color: #1A2634;
  border: 1px solid #36B9D5;
}
.cookie-btn.settings:hover {
  background: #36B9D5;
  color: #fff;
}
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(30,23,49,0.44);
  z-index: 2147483647;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn .32s ease;
}
@keyframes fadeIn {
  from { opacity: 0; } to { opacity: 1; }
}
.cookie-modal {
  background: #F6F1ED;
  box-shadow: 0 4px 44px 8px #36B9D554;
  border-radius: 22px;
  max-width: 420px;
  width: 96vw;
  padding: 36px 32px 26px 32px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  position: relative;
  color: #1A2634;
  font-size: 1rem;
  gap: 16px;
  animation: modalIn .4s cubic-bezier(.42,0,.47,1.11);
}
@keyframes modalIn {
  from { transform: scale(0.88); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.cookie-modal h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.27rem;
  color: #532C8E;
  font-weight: bold;
  margin-bottom: 6px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 7px;
  font-size: 1rem;
}
.cookie-category label {
  flex: 1 1 auto;
  color: #2B007A;
  font-weight: 600;
  cursor: pointer;
}
.cookie-switch {
  appearance: none;
  width: 44px;
  height: 24px;
  background: #C7E8F2;
  border-radius: 15px;
  position: relative;
  outline: none;
  cursor: pointer;
  transition: background .15s;
}
.cookie-switch:checked {
  background: linear-gradient(90deg,#FCBE45,#36B9D5);
}
.cookie-switch:before {
  content: '';
  position: absolute;
  left: 2.5px; top: 2.5px;
  width: 19px; height: 19px;
  background: #fff;
  border-radius: 50%;
  transition: transform .2s;
  box-shadow: 0 1px 4px 0 #0001;
}
.cookie-switch:checked:before {
  transform: translateX(19px);
}
.cookie-category[data-type='essential'] label::after {
  content: ' (wymagane)';
  color: #64788C;
  font-size: 0.92em;
}
.cookie-modal-buttons {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 16px;
}
.cookie-modal .cookie-btn {
  margin-right: 0;
}
.cookie-modal-close {
  position: absolute;
  top: 12px;
  right: 18px;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #1A2634;
  cursor: pointer;
}
.cookie-modal-close:hover{
  color: #D946EF;
}

/* MEDIA QUERIES (RESPONSIVE) */
@media (max-width: 1140px) {
  .container {
    max-width: 98vw;
  }
  .main-nav .logo {
    margin-right:18px;
  }
}
@media (max-width: 900px) {
  .feature-grid, .inspiration-cards {
    flex-direction: column;
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
    position: absolute;
    right: 28px;
    top: 16px;
  }
  .hero, .hero-thankyou, .section, .about, .services, .contact, .contact-form, .features, .testimonials {
    padding: 26px 8px;
    margin-bottom: 32px;
    border-radius: 18px;
  }
  h1, .h1 {
    font-size: 1.64rem;
  }
  h2, .h2 {
    font-size: 1.22rem;
  }
  .footer-nav {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .feature-item {
    min-width: 180px;
    min-height: 150px;
    padding: 16px 10px 12px 12px;
    font-size: .99rem;
  }
  .testimonial-card {
    padding: 14px;
    gap: 11px;
    max-width: 98vw;
    font-size: .97rem;
    border-left-width: 4px;
  }
  .cookie-banner {
    padding: 14px 11px 10px 11px;
    font-size: .92rem;
    max-width: 99vw;
    border-radius: 18px 18px 0 0;
  }
  .cookie-modal {
    padding: 18px 10px 18px 10px;
    max-width: 94vw;
    border-radius: 17px;
  }
  .mobile-menu {
    min-height: 100vh;
  }
}
@media (max-width: 520px) {
  .footer-brand img {
    width: 30px;
  }
  .footer-brand p {
    font-size: 0.75rem;
  }
  .cta-main {
    font-size: 1rem;
    padding: 9px 18px;
    border-radius: 14px;
  }
}
/* END OF CSS */
