/* === CSS RESET & NORMALIZATION === */
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 {
  background: #E7E9EF;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  color: #25314A;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #25314A;
  text-decoration: none;
  transition: color 0.2s cubic-bezier(0.4,0,0.2,1);
}
strong {
  font-weight: bold;
}
ul, ol {
  list-style: none;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  background: none;
  border: none;
  outline: none;
}
:focus {
  outline: 2px solid #FAAB3B;
}

/* === TYPOGRAPHY SCALE & HEADINGS === */
h1, .h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2.75rem;
  font-weight: 900;
  color: #25314A;
  letter-spacing: -2px;
  line-height: 1.13;
  margin-bottom: 24px;
}
h2, .h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -1px;
  color: #25314A;
  margin-bottom: 20px;
  line-height: 1.2;
}
h3, .h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0px;
  color: #FAAB3B;
  margin-bottom: 12px;
  line-height: 1.15;
}
h4, .h4 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #25314A;
  margin-bottom: 8px;
}
p {
  font-size: 1rem;
  margin-bottom: 14px;
  line-height: 1.55;
}
.text-section p { margin-bottom: 20px; }
strong {
  color: #25314A;
  font-weight: 700;
}
.small {
  font-size: 14px; 
}

/* === LAYOUT CONTAINERS === */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: white;
  border-radius: 28px;
  box-shadow: 0 4px 24px 0 rgba(63,55,113,0.08);
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: white;
  border-radius: 18px;
  box-shadow: 0 2px 16px 0 rgba(63,55,113,0.10);
  transition: transform 0.22s cubic-bezier(.76,0,.42,1), box-shadow 0.19s;
  overflow: hidden;
}
.card:hover, .testimonial-card:hover {
  transform: translateY(-5px) scale(1.015);
  box-shadow: 0 8px 32px 0 rgba(250,171,59,0.22), 0 2px 16px 0 rgba(63,55,113,0.10);
}
.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;
  background: #fff8ec;
  border-radius: 18px;
  box-shadow: 0 2px 18px 0 rgba(250,171,59,0.09);
  margin-bottom: 20px;
  min-width: 270px;
  flex: 1 1 calc(320px - 20px);
  transition: box-shadow 0.19s, transform 0.22s cubic-bezier(.76,0,.42,1);
  border: 2px solid #FAAB3B11;
}

.testimonial-content > p {
  color: #25314A;
  font-style: italic;
  margin-bottom: 13px;
  font-size: 1.05rem;
}
.testimonial-info {
  font-size: 0.97rem;
  color: #7c7c7c;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* === HERO SECTIONS === */
.hero, .hero-tips, .hero-kompozycja, .hero-edit, .hero-workshops {
  background: linear-gradient(85deg, #FAAB3B 0%, #FF6B6C 80%, #4FD1C5 100%);
  background-size: 140% 140%;
  background-position: 55% 42%;
  padding: 54px 0 58px 0;
  color: #25314A;
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 350px;
}
.hero .cta-btn,
.hero-tips .cta-btn,
.hero-kompozycja .cta-btn,
.hero-edit .cta-btn,
.hero-workshops .cta-btn {
  margin-top: 18px;
}
.hero h1, .hero-tips h1, .hero-kompozycja h1, .hero-edit h1, .hero-workshops h1 {
  color: #25314A;
  font-size: 2.5rem;
  font-weight: 900;
  letter-spacing: -2px;
  margin-bottom: 16px;
  text-shadow: 0 2px 18px #FAAB3B29, 0 2px 12px #fff5;
}
.hero p, .hero-tips p, .hero-kompozycja p, .hero-edit p, .hero-workshops p {
  font-size: 1.15rem;
  color: #25314A;
  max-width: 560px;
}

/* === HEADER & NAVIGATION === */
header {
  background: #25314A;
  padding: 0;
  box-shadow: 0 2px 12px 0 #FAAB3B14;
  position: sticky;
  top: 0;
  z-index: 100;
}
header .container {
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 68px;
  justify-content: space-between;
}
.logo img {
  height: 38px;
  max-width: 144px;
  display: block;
}
.main-nav {
  display: flex;
  gap: 22px;
  align-items: center;
}
.main-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.1em;
  font-size: 1rem;
  position: relative;
  transition: color 0.16s cubic-bezier(.76,0,.42,1);
  padding: 9px 6px;
}
.main-nav a:hover,
.main-nav a.active {
  color: #FAAB3B;
}
.cta-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 800;
  padding: 11px 28px;
  border-radius: 32px;
  background: #FAAB3B;
  color: #25314A;
  border: none;
  box-shadow: 0 3px 18px 0 #FAAB3B29;
  cursor: pointer;
  display: inline-block;
  transition: background 0.15s cubic-bezier(.76,0,.42,1), filter 0.13s, color 0.12s cubic-bezier(.76,0,.42,1);
  text-shadow: none;
  margin-left: 16px;
}
.cta-btn:hover,
.cta-btn:focus {
  background: #ffae00;
  color: #fff;
  filter: brightness(1.06) saturate(1.05);
}

/* === MOBILE NAVIGATION === */
.mobile-menu-toggle {
  display: none;
  background: none;
  font-size: 2rem;
  color: #FAAB3B;
  border: none;
  cursor: pointer;
  line-height: 1;
  z-index: 110;
  padding: 2px 8px;
  transition: color 0.2s cubic-bezier(.76,0,.42,1);
}
.mobile-menu-toggle:focus {
  color: #fff7c7;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #25314Ad9;
  transform: translateX(-100vw);
  transition: transform 0.43s cubic-bezier(.75,.01,.38,1);
  z-index: 1010;
  padding-top: 0;
  display: flex;
  flex-direction: column;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2.2rem;
  background: none;
  color: #FAAB3B;
  margin: 24px 24px 4px 0;
  border: none;
  cursor: pointer;
  padding: 6px 10px;
  line-height: 1;
  transition: color 0.16s;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 34px;
  align-items: flex-start;
  padding: 0 38px;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.3rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  line-height: 1.4;
  border-radius: 7px;
  padding: 12px 8px;
  margin-bottom: 2px;
  width: 100%;
  transition: background 0.22s, color 0.24s;
  position: relative;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #FAAB3B;
  color: #25314A;
}

/* Hide desktop nav on mobile, show burger */
@media (max-width: 1080px) {
  .main-nav,
  .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width:1081px) {
  .mobile-menu { display: none !important; }
  .mobile-menu-toggle { display: none !important; }
}

/* === FEATURES & SERVICES LISTS === */
.features, .services, .services-workshops, .block-tips, .steps, .brand-values {
  background: #fff;
  margin-bottom: 54px;
  border-radius: 26px;
  box-shadow: 0 2px 18px 0 #FAAB3B15;
  padding: 40px 18px;
}
.feature-list, .value-list, .services-list, .tips-list, .principles-list, .step-list, .services-detailed-list, .tips-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 10px;
  margin-top: 7px;
}
.feature-list li,
.value-list li,
.services-list li,
.tips-list li,
.principles-list li,
.step-list li,
.services-detailed-list li,
.tips-summary li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  background: #F3F4FA;
  border-radius: 24px;
  padding: 28px 18px 20px 18px;
  flex: 1 1 250px;
  min-width: 220px;
  max-width: 100%;
  box-shadow: 0 2px 14px 0 #FAAB3B08;
  border-bottom: 3px solid #FAAB3B26;
  transition: background 0.14s;
}
.feature-list li img, .value-list li img {
  width: 42px;
  height: 42px;
}
.feature-list li:hover, .value-list li:hover {
  background: #fff3e6;
}
.price {
  background: #FAAB3B;
  color: #25314A;
  font-weight: 800;
  font-family: 'Montserrat', Arial, sans-serif;
  display: inline-block;
  padding: 4px 16px;
  border-radius: 14px;
  margin-top: 10px;
  font-size: 1.1em;
  letter-spacing: 1px;
}
.callouts {
  font-size: 1.04rem;
  color: #25314A;
  background: #FAAB3B15;
  padding: 16px 19px;
  border-radius: 16px;
  margin-top: 16px;
  font-weight: 600;
}

/* === CTA SECTIONS === */
.cta, .cta-tips, .cta-kompozycja, .cta-edit, .cta-workshops, .cta-contact {
  background: #25314A;
  border-radius: 28px;
  padding: 52px 18px;
  text-align: center;
  margin-bottom: 54px;
}
.cta h2, .cta-tips h2, .cta-kompozycja h2, .cta-edit h2, .cta-workshops h2, .cta-contact h2 {
  color: #FAAB3B;
  font-size: 2.1rem;
  margin-bottom: 20px;
  font-weight: 900;
}
.cta p, .cta-tips p, .cta-kompozycja p, .cta-edit p, .cta-workshops p, .cta-contact p {
  color: #fff;
  margin-bottom: 18px;
}
.cta .cta-btn, .cta-tips .cta-btn, .cta-kompozycja .cta-btn, .cta-edit .cta-btn, .cta-workshops .cta-btn, .cta-contact .cta-btn {
  margin-top: 14px;
}

/* === TESTIMONIALS === */
.testimonials {
  margin-bottom: 60px;
}
.testimonials h2 {
  color: #25314A;
  font-weight: 900;
  margin-bottom: 32px;
  text-align: center;
}
.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.testimonial-card {
  min-width: 280px;
  max-width: 370px;
  flex: 1 1 320px;
}

/* === ABOUT/BLOCKS === */
.about, .about-preview, .contact-section, .policy, .policy-cookies, .policy-rodo, .policy-terms, .confirmation {
  background: #fff;
  border-radius: 26px;
  margin-bottom: 60px;
  box-shadow: 0 2px 16px #FAAB3B10;
  padding: 46px 18px 42px 18px;
}
.text-section {
  margin-bottom: 8px;
}
.text-section ul {
  list-style: none;
}
.text-section ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 11px;
  font-size: 1.04rem;
  color: #444;
}
.text-section ul li img {
  width: 20px;
  height: 20px;
  margin-right: 6px;
}
.text-section .business-hours {
  color: #FAAB3B;
  font-weight: bold;
  margin-top: 7px;
  font-size: 1.06rem;
}

/* --- FAQ --- */
.faq {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq dt {
  font-weight: 700;
  color: #25314A;
  font-size: 1.07em;
}
.faq dd {
  background: #f8f1e2;
  border-radius: 10px;
  padding: 9px 16px 8px 16px;
  margin-bottom: 6px;
  font-size: 1em;
  color: #223255;
}

/* === FOOTER === */
footer {
  background: #25314A;
  color: #fff;
  padding-top: 32px;
  margin-top: auto;
}
.footer-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 38px;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 32px;
}
.footer-brand img {
  height: 46px;
  max-width: 140px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.footer-nav a {
  color: #FAAB3B;
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.03em;
  transition: color 0.16s cubic-bezier(.76,0,.42,1);
}
.footer-nav a:hover {
  color: #fff;
  text-decoration: underline;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 1em;
  color: #fff7;
  line-height: 1.45;
}
.footer-contact img {
  width: 16px;
  margin-right: 6px;
  vertical-align: middle;
}
.copyright {
  background: #1B2234;
  font-size: 0.96rem;
  color: #FFF6;
  padding: 12px 0;
}
.copyright .container {
  text-align: center;
}

/* === COOKIE CONSENT === */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background: #25314Af2;
  color: #fff;
  font-size: 1rem;
  padding: 20px 32px;
  box-shadow: 0 -4px 20px 0 rgba(37,49,74,0.18);
  border-radius: 28px 28px 0 0;
  animation: cookie-slide-in 0.8s cubic-bezier(.65,.01,.24,1);
}
@keyframes cookie-slide-in {
  from { transform: translateY(120%); opacity: 0; }
  to   { transform: none; opacity: 1; }
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  align-items: center;
}
.cookie-banner button {
  padding: 8px 22px;
  border-radius: 18px;
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1em;
  cursor: pointer;
  margin-right: 3px;
  transition: background 0.14s, color 0.13s, filter 0.16s;
}
.cookie-banner .cookie-accept {
  background: #FAAB3B;
  color: #25314A;
}
.cookie-banner .cookie-accept:hover {
  background: #FFD86C;
  color: #25314A;
  filter: brightness(1.08);
}
.cookie-banner .cookie-reject {
  background: #fff;
  color: #25314A;
  border: 1px solid #FAAB3B59;
}
.cookie-banner .cookie-reject:hover {
  background: #FAAB3B13;
}
.cookie-banner .cookie-settings {
  background: #25314A;
  color: #FAAB3B;
  border: 1px solid #FAAB3B;
}
.cookie-banner .cookie-settings:hover {
  background: #FAAB3B;
  color: #25314A;
}
/* -- Cookie Modal -- */
.cookie-modal {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(37,49,74,0.75);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: bounce-in 0.45s cubic-bezier(.74,0,.35,1);
}
@keyframes bounce-in {
  0% { opacity: 0; transform: scale(0.95) translateY(20%); }
  100% { opacity: 1; transform: none; }
}
.cookie-modal-content {
  background: #fff;
  color: #25314A;
  border-radius: 20px;
  box-shadow: 0 8px 34px #FAAB3B19;
  padding: 32px 22px;
  min-width: 340px;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  gap: 17px;
  font-size: 1.07rem;
  animation: slide-up 0.35s cubic-bezier(.74,0,.35,1);
}
@keyframes slide-up {
  0% { opacity: 0; transform: translateY(90px); }
  100% { opacity: 1; transform: none; }
}
.cookie-modal-content h3 {
  font-size: 1.3rem;
  color: #FAAB3B;
  margin-bottom: 12px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 6px;
}
.cookie-categories .cookie-category {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 1rem;
}
.cookie-category input[type="checkbox"] {
  accent-color: #FAAB3B;
  transform: scale(1.08);
}
.cookie-modal-actions {
  display: flex;
  gap: 13px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 11px;
}
.cookie-modal-actions button {
  padding: 8px 22px;
  border-radius: 18px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1em;
  border: none;
  transition: background 0.13s, color 0.12s;
  cursor: pointer;
}
.cookie-modal-actions .cookie-accept {
  background: #FAAB3B;
  color: #25314A;
}
.cookie-modal-actions .cookie-reject {
  background: #fff;
  border: 1px solid #FAAB3B56;
  color: #25314A;
}
.cookie-modal-actions .cookie-close {
  background: #eee;
  color: #7c7c7c;
  border: 1px solid #ccc;
}
.cookie-modal-actions button:hover {
  filter: brightness(1.07);
}

/* === RESPONSIVE BREAKPOINTS === */
@media (max-width: 900px) {
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }
  .footer-wrapper { gap: 20px; }
}
@media (max-width: 768px) {
  html, body { font-size: 15px; }
  .container {
    max-width: 98vw;
    padding: 0 8px;
  }
  .hero, .hero-tips, .hero-kompozycja, .hero-edit, .hero-workshops {
    padding-top: 35px;
    padding-bottom: 40px;
    min-height: 220px;
    border-radius: 18px;
    text-align: left;
    background-size: 220% 160%;
  }
  .main-nav { display: none !important; }
  .footer-wrapper {
    flex-direction: column;
    gap: 19px;
    align-items: flex-start;
  }
  .section,
  .about, .about-preview, .contact-section,
  .policy, .policy-cookies, .policy-rodo, .policy-terms, .confirmation {
    padding: 24px 7px 24px 7px;
    border-radius: 16px;
  }
  .features,
  .services,
  .block-tips,
  .steps,
  .brand-values,
  .services-workshops {
    padding: 19px 7px;
    border-radius: 15px;
  }
  .feature-list, .value-list, .services-list, .tips-list, .principles-list, .step-list, .services-detailed-list, .tips-summary, .testimonial-list {
    flex-direction: column;
    gap: 16px;
  }
  .testimonial-card {
    min-width: 190px;
    padding: 15px 8px;
    border-radius: 13px;
  }
  .cta, .cta-tips, .cta-kompozycja, .cta-edit, .cta-workshops, .cta-contact {
    padding: 22px 3px;
    border-radius: 13px;
    margin-bottom: 36px;
  }
  .cookie-banner {
    flex-direction: column;
    gap: 13px;
    font-size: 0.95rem;
    padding: 13px 10px;
    border-radius: 18px 18px 0 0;
  }
}
@media (max-width: 560px) {
  h1, .h1 { font-size: 1.6rem; margin-bottom: 14px; }
  h2, .h2 { font-size: 1.15rem; margin-bottom: 12px; }
  .footer-contact { font-size: 0.97rem; }
  .feature-list li, .value-list li, .services-list li, .tips-list li, .principles-list li, .step-list li, .services-detailed-list li, .tips-summary li {
    min-width: 110px;
    padding: 15px 8px;
    border-radius: 11px;
  }
}
/* === FLEX DIRECTION COLUMN FOR TEXT–IMAGE ON MOBILE === */
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }
}

/* === UTILITY CLASSES === */
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.mb-24 { margin-bottom: 24px !important; }

/* === TRANSITIONS, MICRO-INTERACTIONS === */
a, .cta-btn, .main-nav a, .mobile-nav a, .card, .testimonial-card, .feature-list li, .value-list li, .footer-nav a {
  transition-property: color, background, transform, box-shadow, filter;
  transition-duration: 0.16s, 0.19s, 0.22s, 0.2s, 0.2s;
  transition-timing-function: cubic-bezier(.76,0,.42,1);
}
a:active, .cta-btn:active, .main-nav a:active, .mobile-nav a:active {
  filter: brightness(0.89);
}

/* === SELECTION COLOR === */
::selection {
  background: #FAAB3B;
  color: #25314A;
}

/* === THANK-YOU / SUCCESS PAGE === */
.confirmation h1 {
  color: #FAAB3B;
  font-size: 2.3rem;
  margin-bottom: 13px;
  font-weight: 900;
}
.confirmation p {
  color: #25314A;
}

/* === POLICY PAGES STYLE === */
.policy h1, .policy h2,
.policy-cookies h1, .policy-cookies h2,
.policy-rodo h1, .policy-rodo h2,
.policy-terms h1, .policy-terms h2 {
  color: #FAAB3B;
}
.policy ul, .policy-cookies ul, .policy-rodo ul, .policy-terms ul {
  list-style: disc inside;
  margin: 10px 0 18px 16px;
  color: #25314A;
}
.policy ul li, .policy-cookies ul li, .policy-rodo ul li, .policy-terms ul li {
  margin-bottom: 7px;
}
.text-section ul {
  list-style: none;
}

/* === DISABLED, FOCUS === */
[disabled], .disabled {
  opacity: 0.54 !important;
  pointer-events: none !important;
  filter: grayscale(0.33);
}

/* === PRINT SUPPORT (minimal) === */
@media print {
  body, .container, .section, .about, .about-preview, .contact-section, .policy, .policy-cookies, .policy-rodo, .policy-terms, .confirmation {
    background: white;
    color: #222;
    box-shadow: none !important;
    border-radius: 0 !important;
    padding: 0;
    margin: 0;
  }
  header, footer, .cookie-banner, .cookie-modal { display: none !important; }
}
