html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Nunito', Arial, sans-serif;
  background: url('img/bg.png') fixed;
  color: #333;
  overflow-x: hidden;
}

/* ===== PODKREŚLENIA TEKSTU ===== */
.underline-highlight {
  position: relative;
  display: inline-block;
  z-index: 0;
}

.underline-highlight::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 100%;
  height: 10px;
  background: linear-gradient(90deg, rgba(207, 167, 167, 0.8), rgba(207, 167, 167, 0.6));
  border-radius: 4px;
  z-index: 1;
  transform: scaleX(0);
  transform-origin: left;
  animation: underlineGrow 0.8s ease-out forwards;
}

@keyframes underlineGrow {
  to {
    transform: scaleX(1);
  }
}

/* Animacja delay dla elementów, które pojawiają się później */
.animate-fade-up .underline-highlight::after {
  animation-delay: 0.5s;
}

/* Warianty kolorystyczne podkreśleń */
.main-info .underline-highlight::after {
  background: linear-gradient(90deg, rgba(207, 167, 167, 0.9), rgba(207, 167, 167, 0.7));
  height: 12px;
  bottom: 5px;
}

.ebook-section .underline-highlight::after {
  background: linear-gradient(90deg, rgba(140, 93, 93, 0.8), rgba(140, 93, 93, 0.6));
  height: 10px;
  bottom: 4px;
}

.relate-section .underline-highlight::after {
  background: linear-gradient(90deg, rgba(245, 238, 233, 0.9), rgba(245, 238, 233, 0.7));
  border: 1px solid rgba(207, 167, 167, 0.5);
  bottom: 4px;
  height: 10px;
}

.cta-section .underline-highlight::after {
  background: linear-gradient(90deg, rgba(207, 167, 167, 1.0), rgba(207, 167, 167, 0.8));
  height: 12px;
  bottom: 5px;
}

/* ===== GLOBAL ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes typewriter {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

@keyframes blink-caret {
  from, to {
    border-color: transparent;
  }
  50% {
    border-color: #cfa7a7;
  }
}

.animate-fade-up {
  animation: fadeInUp 0.8s ease-out;
}

.animate-fade-left {
  animation: fadeInLeft 0.8s ease-out;
}

.animate-fade-right {
  animation: fadeInRight 0.8s ease-out;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #4c3127;
  padding: 20px 60px;
  position: relative;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(207, 167, 167, 0.2);
}

.logo {
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
}

.logo img {
  height: 120px;
  width: auto;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
  transition: filter 0.3s ease;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 25px;
  position: static;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.nav-link {
  text-decoration: none;
  color: #f5f5f5;
  font-weight: 600;
  padding: 12px 16px;
  border-radius: 8px;
  position: relative;
  transition: all 0.3s ease;
  overflow: hidden;
}

.nav-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  transition: left 0.3s ease;
  z-index: -1;
}

.nav-link:hover::before {
  left: 0;
}

.nav-link:hover {
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

.nav-link.active {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
  transform: translateY(-1px);
}

.nav-link.active::before {
  display: none;
}


.nav-cta {
  background: linear-gradient(135deg, #cfa7a7, #8c5d5d);
  padding: 12px 20px;
  border-radius: 25px;
  text-decoration: none;
  color: white;
  font-weight: 700;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(207, 167, 167, 0.3);
  text-transform: uppercase;
  font-size: 15px;
  letter-spacing: 0.5px;
}

.nav-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #8c5d5d, #623838);
  transition: left 0.3s ease;
  z-index: -1;
}

.nav-cta:hover::before {
  left: 0;
}

.nav-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(207, 167, 167, 0.4);
}

.nav-spacer {
  width: 30px;
  height: 30px;
  position: relative;
}

.nav-spacer::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 2px;
  height: 20px;
  background: linear-gradient(to bottom, transparent, #cfa7a7, transparent);
  border-radius: 1px;
}



/* ===== RESPONSIVE NAVIGATION ===== */
@media (max-width: 1024px) {
  header {
    padding: 15px 40px;
  }
  
  .logo img {
    height: 100px;
  }
}

/* Hamburger Menu Styles */
.hamburger {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #333;
    padding: 10px;
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 999999;
    border-radius: 4px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.hamburger:hover {
    background-color: rgba(0, 0, 0, 0.1);
}

/* Mobile Navigation */
.nav-links.show {
    transform: translateX(0) !important;
    opacity: 1 !important;
    visibility: visible !important;
}

@media (max-width: 768px) {
  header {
    padding: 15px 20px;
    position: relative;
    z-index: 1000;
  }
  
  .logo img {
    height: 90px;
  }
  
  .hamburger {
    display: block;
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }
  
  .nav-links {
     position: fixed;
     top: 0;
     right: 0;
     width: 100%;
     height: 100vh;
     background-color: white;
     display: flex;
     flex-direction: column;
     justify-content: center;
     align-items: center;
     transform: translateX(100%);
     transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
                 opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
                 visibility 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
     z-index: 999998;
     box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
     gap: 20px;
     opacity: 0;
     visibility: hidden;
   }
   
   .nav-links.show {
     opacity: 1;
     visibility: visible;
   }
  
  .nav-links a {
    font-size: 24px;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    padding: 10px 20px;
    border-radius: 8px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease-out forwards;
  }
  
  .nav-links a:nth-child(1) { animation-delay: 0.1s; }
  .nav-links a:nth-child(2) { animation-delay: 0.2s; }
  .nav-links a:nth-child(3) { animation-delay: 0.3s; }
  .nav-links a:nth-child(4) { animation-delay: 0.4s; }
  .nav-links a:nth-child(6) { animation-delay: 0.5s; }
  .nav-links a:nth-child(7) { animation-delay: 0.6s; }
  
  .nav-links a:hover {
    color: #007bff;
    background-color: rgba(0, 123, 255, 0.1);
  }
  
  .nav-links .nav-spacer {
    display: none;
  }
}

/* ===== RESPONSIVE UNDERLINES ===== */
@media (max-width: 900px) {
  .underline-highlight::after {
    height: 8px;
    bottom: 3px;
  }
  
  .main-info .underline-highlight::after {
    height: 10px;
    bottom: 4px;
  }
  
  .cta-section .underline-highlight::after {
    height: 10px;
    bottom: 4px;
  }
}

@media (max-width: 768px) {
  .underline-highlight::after {
    height: 7px;
    bottom: 3px;
  }
  
  .main-info .underline-highlight::after {
    height: 9px;
    bottom: 4px;
  }
  
  .cta-section .underline-highlight::after {
    height: 9px;
    bottom: 4px;
  }
}

@media (max-width: 480px) {
  .underline-highlight::after {
    height: 6px;
    bottom: 3px;
  }
  
  .main-info .underline-highlight::after {
    height: 8px;
    bottom: 3px;
  }
  
  .cta-section .underline-highlight::after {
    height: 8px;
    bottom: 3px;
  }
}

@media (max-width: 480px) {
  header {
    padding: 10px 15px;
  }
  
  .logo img {
    height: 80px;
  }
  
  .hamburger {
    right: 15px;
    top: 15px;
    font-size: 24px;
    padding: 8px 12px;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.15);
  }
  
  .nav-links {
    padding: 20px 0;
  }
}

/* ===== MAIN SECTION ===== */
main {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 80px;
  padding: 80px 40px;
  background: linear-gradient(135deg, #fff 0%, #fefefe 100%);
  position: relative;
  overflow: hidden;
  min-height: 70vh;
}

main::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(207, 167, 167, 0.03) 0%, transparent 70%);
  animation: float 6s ease-in-out infinite;
  z-index: 0;
}

main::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(207, 167, 167, 0.2), transparent);
  z-index: 1;
}

.main-image {
  position: relative;
  z-index: 1;
  flex: 0 0 280px;
}

.main-image img {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  box-shadow: 0 20px 40px rgba(98, 56, 56, 0.15), 
              0 5px 15px rgba(98, 56, 56, 0.1);
  transition: all 0.4s ease;
  animation: fadeInLeft 1s ease-out;
  border: 4px solid rgba(207, 167, 167, 0.2);
}

.main-image img:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 25px 50px rgba(98, 56, 56, 0.2);
}

.main-info {
  max-width: 600px;
  position: relative;
  z-index: 1;
  animation: fadeInRight 1s ease-out;
  flex: 1;
  padding: 40px 0;
}

.main-info h2 {
  margin: 0 0 10px 0;
  font-size: 24px;
  color: #8c5d5d;
  opacity: 0;
  animation: fadeInUp 1s ease-out 0.3s forwards;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  position: relative;
}

.main-info h2::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, #cfa7a7, transparent);
}

.main-info h1 {
  margin: 20px 0 30px 0;
  font-size: 56px;
  background: linear-gradient(135deg, #623838, #8c5d5d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0;
  animation: fadeInUp 1s ease-out 0.5s forwards;
  font-weight: 900;
  line-height: 1.1;
  text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.main-info p {
  margin: 30px 0 40px 0;
  font-size: 30px;
  line-height: 1.7;
  opacity: 0;
  animation: fadeInUp 1s ease-out 0.7s forwards;
  color: #444;
  font-weight: 600;
  text-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.main-info p strong {
  color: #623838;
  font-weight: 700;
  background: linear-gradient(135deg, rgba(207, 167, 167, 0.1), rgba(207, 167, 167, 0.05));
  padding: 2px 6px;
  border-radius: 4px;
  border-left: 3px solid #cfa7a7;
  display: inline-block;
  margin-top: 8px;
}

.main-info .cta-button {
  display: block;
  margin: 40px auto 0 auto;
  width: fit-content;
  font-size: 18px;
  padding: 18px 36px;
  border-radius: 50px;
  background: linear-gradient(135deg, #cfa7a7, #8c5d5d, #623838);
  background-size: 200% 200%;
  animation: gradientShift 3s ease infinite, fadeInUp 1s ease-out 0.9s both;
  box-shadow: 0 8px 25px rgba(207, 167, 167, 0.4), 
              0 3px 10px rgba(0,0,0,0.1);
  transform: translateY(20px);
  opacity: 0;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.cta-button {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(135deg, #cfa7a7, #8c5d5d);
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 700;
  transition: all 0.4s ease;
  box-shadow: 0 8px 25px rgba(207, 167, 167, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
  opacity: 0;
  animation: fadeInUp 1s ease-out 0.9s forwards;
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}

.cta-button:hover::before {
  left: 100%;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(207, 167, 167, 0.4);
  background: linear-gradient(135deg, #8c5d5d, #623838);
}

/* ===== RESPONSIVE MAIN SECTION ===== */
@media (max-width: 1200px) {
  main {
    gap: 40px;
    padding: 50px 30px;
  }
}

@media (max-width: 900px) {
  main {
    flex-direction: column;
    text-align: left;
    gap: 40px;
    padding: 50px 30px;
  }

  .main-image {
    order: 2;
    flex: none;
  }

  .main-image img {
    width: 250px;
    height: 250px;
    max-width: 250px;
  }
  
  .main-info {
    order: 1;
    max-width: 100%;
  }
  
  .main-info h1 {
    font-size: clamp(42px, 7vw, 50px);
  }
  
  .main-info h2 {
    font-size: clamp(20px, 4vw, 22px);
  }
}

@media (max-width: 768px) {
  main {
    padding: 40px 20px;
    gap: 30px;
  }
  
  .main-image img {
    width: 220px;
    height: 220px;
    max-width: 220px;
  }
  
  .main-info p {
    font-size: 26px;
  }
  
  .cta-button {
    padding: 16px 32px;
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  main {
    padding: 30px 15px;
    gap: 25px;
  }
  
  .main-image {
    order: 1;
  }
  
  .main-image img {
    width: 180px;
    height: 180px;
    max-width: 180px;
  }
  
  .main-info {
    order: 2;
  }
  
  .main-info p {
    font-size: 24px;
    line-height: 1.6;
  }
  
  .main-info h1 {
    font-size: clamp(32px, 8vw, 40px);
  }
  
  .main-info h2 {
    font-size: 18px;
  }
}

/* ===== QUOTE SECTION ===== */
.quote-section {
  text-align: center;
  padding: 120px 40px;
  background: linear-gradient(135deg, #f8f2ed 0%, #fdf8f4 50%, #f5eee9 100%);
  position: relative;
  overflow: hidden;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quote-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 20%, rgba(207, 167, 167, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(140, 93, 93, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(245, 238, 233, 0.8) 0%, transparent 70%);
  z-index: 0;
  animation: float 8s ease-in-out infinite;
}

.quote-section::after {
  content: '"';
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 180px;
  color: rgba(207, 167, 167, 0.08);
  font-family: 'Lora', Georgia, serif;
  z-index: 1;
  line-height: 1;
}

.quote-section p {
  font-family: 'Lora', Georgia, serif;
  font-size: clamp(36px, 7vw, 56px);
  font-weight: 600;
  line-height: 1.3;
  margin: 0;
  max-width: 1000px;
  color: #623838;
  position: relative;
  z-index: 2;
  text-shadow: 0 2px 4px rgba(0,0,0,0.05);
  position: relative;
  z-index: 1;
  opacity: 1;
  text-shadow: 0 2px 4px rgba(98, 56, 56, 0.1);
  min-height: 2.8em;
}

.typewriter-text {
  display: inline-block;
  text-align: left;
}

.typed-cursor {
  font-weight: 400;
  color: #cfa7a7;
  animation: blink-caret 1s step-end infinite;
}

.quote-section p::before,
.quote-section p::after {
  content: '"';
  font-size: 1.2em;
  color: #cfa7a7;
  opacity: 0.7;
}

.quote-section p::before {
  margin-right: 0.1em;
}

.quote-section p::after {
  margin-left: 0.1em;
}

/* ===== RESPONSIVE QUOTE SECTION ===== */
@media (max-width: 768px) {
  .quote-section {
    padding: 60px 15px;
  }
}

@media (max-width: 480px) {
  .quote-section {
    padding: 40px 10px;
  }
  
  .quote-section p {
    line-height: 1.3;
  }
}

/* ===== EBOOK SECTION (MAILERLITE) ===== */
.ebook-section {
  background: linear-gradient(135deg, #623838 0%, #8c5d5d 50%, #e6d5c1 100%);
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.ebook-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: float 8s ease-in-out infinite;
  z-index: 0;
}

.ebook-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  right: -30%;
  width: 60%;
  height: 60%;
  background: radial-gradient(circle, rgba(207, 167, 167, 0.15) 0%, transparent 70%);
  animation: float 6s ease-in-out infinite reverse;
  z-index: 0;
}

.form-wrapper {
  display: flex;
  gap: 50px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-left {
  flex: 1 1 450px;
  animation: fadeInLeft 1s ease-out;
}

.form-right {
  flex: 0 0 320px;
  animation: fadeInRight 1s ease-out;
}

.form-right img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  transition: all 0.4s ease;
  transform: perspective(1000px) rotateY(-5deg);
}

.form-right img:hover {
  transform: perspective(1000px) rotateY(0deg) translateY(-10px) scale(1.05);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

#mlb2-26594168 {
  color: #fff;
}

#mlb2-26594168 h4 {
  color: #fff;
  font-family: 'Lora', serif;
  font-size: clamp(24px, 4vw, 32px);
  font-weight: 700;
  margin-bottom: 15px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1s ease-out 0.3s both;
}

#mlb2-26594168 p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  margin-bottom: 25px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  animation: fadeInUp 1s ease-out 0.5s both;
}

#mlb2-26594168 label {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
}

#mlb2-26594168 input[type="email"],
#mlb2-26594168 input[type="text"] {
  padding: 15px 18px;
  border-radius: 12px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  width: 100%;
  box-sizing: border-box;
  color: #fff;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

#mlb2-26594168 input[type="email"]:focus,
#mlb2-26594168 input[type="text"]:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

#mlb2-26594168 input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

#mlb2-26594168 button {
  display: inline-block;
  padding: 16px 32px;
  background: linear-gradient(135deg, #f5eee9, #eababa);
  color: #492626;
  border: none;
  border-radius: 12px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 6px 20px rgba(234, 186, 186, 0.4);
  position: relative;
  overflow: hidden;
}

#mlb2-26594168 button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

#mlb2-26594168 button:hover {
  background: linear-gradient(135deg, #eababa, #d19c9c);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(234, 186, 186, 0.6);
}

#mlb2-26594168 button:hover::before {
  left: 100%;
}

#mlb2-26594168 .ml-form-formContent {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

#mlb2-26594168 .ml-form-fieldRow {
  flex: 1 1 200px;
}

#mlb2-26594168 .ml-form-embedSubmit {
  flex: 1 1 100%;
}

#mlb2-26594168 .custom-checkbox-radio-list {
  margin: 20px 0;
}

#mlb2-26594168 .custom-control {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 15px;
}

#mlb2-26594168 .custom-control-input {
  width: 20px;
  height: 20px;
  margin: 0;
  accent-color: #eababa;
  cursor: pointer;
}

#mlb2-26594168 .custom-control-label {
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  line-height: 1.4;
  cursor: pointer;
  flex: 1;
}

#mlb2-26594168 .ml-form-embedPermissions {
  margin-top: 25px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

#mlb2-26594168 .ml-form-embedPermissions p {
  font-size: 15px;
  line-height: 1.5;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
}

#mlb2-26594168 .ml-form-embedPermissions a {
  color: #eababa;
  text-decoration: underline;
  transition: color 0.3s ease;
}

#mlb2-26594168 .ml-form-embedPermissions a:hover {
  color: #f5eee9;
}

#mlb2-26594168 .ml-form-formContent .ml-form-fieldRow.ml-last-item {
  flex: 1 1 100%;
}

#mlb2-26594168 .ml-form-embedSubmit {
  text-align: center;
  margin-top: 25px;
}

/* ===== RESPONSIVE EBOOK SECTION ===== */
@media (max-width: 1024px) {
  .ebook-section {
    padding: 50px 15px;
  }
  
  .form-wrapper {
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .ebook-section {
    padding: 40px 10px;
  }
  
  .form-wrapper {
    flex-direction: column;
    text-align: center;
    gap: 25px;
  }
  
  .form-left,
  .form-right {
    flex: 1 1 auto;
  }
  
  .form-right {
    margin-top: 0;
    max-width: 300px;
    margin: 0 auto;
  }
  
  #mlb2-26594168 .ml-form-formContent {
    flex-direction: column;
    gap: 15px;
  }
  
  #mlb2-26594168 input[type="email"],
  #mlb2-26594168 input[type="text"] {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .ebook-section {
    padding: 30px 5px;
  }
  
  .form-wrapper {
    gap: 20px;
  }
  
  .form-right {
    max-width: 250px;
  }
}

#mlb2-26594168 .ml-form-successBody {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  min-height: 200px; /* dostosuj w razie potrzeby */
  padding: 40px 20px;
}

#mlb2-26594168 .ml-form-successBody h4 {
  font-size: 28px;
  margin-bottom: 15px;
}

#mlb2-26594168 .ml-form-successBody p {
  font-size: 18px;
  margin: 0;
}

@media (max-width: 768px) {
  #mlb2-26594168 .ml-form-fieldRow {
    flex: 1 1 auto !important;
    min-height: 0 !important;
    height: auto !important;
  }
}

/* ===== RELATE SECTION ===== */
.relate-section {
  max-width: 1000px;
  margin: 100px auto;
  padding: 60px 40px;
  text-align: center;
  background: linear-gradient(135deg, #fff 0%, #fefefe 100%);
  border-radius: 30px;
  box-shadow: 0 20px 60px rgba(98, 56, 56, 0.08);
  position: relative;
  overflow: hidden;
}

.relate-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(207, 167, 167, 0.02) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
  z-index: 0;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.relate-section h3 {
  background: linear-gradient(135deg, #fdf6f0, #f5eee9);
  font-size: clamp(36px, 7vw, 50px);
  padding: 20px 30px;
  border-radius: 20px;
  display: inline-block;
  color: #623838;
  font-weight: 900;
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
  box-shadow: 0 10px 30px rgba(207, 167, 167, 0.15);
  border: 2px solid rgba(207, 167, 167, 0.1);
}

.relate-box {
  background: linear-gradient(135deg, #fff 0%, #fefefe 50%, #fdf8f4 100%);
  border: 2px solid rgba(207, 167, 167, 0.1);
  border-radius: 20px;
  padding: 30px;
  font-size: 22px;
  line-height: 1.7;
  text-align: left;
  box-shadow: 0 10px 30px rgba(98, 56, 56, 0.08), 
              0 3px 10px rgba(0,0,0,0.05);
  margin-bottom: 25px;
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
  transform: translateY(0);
  font-weight: 500;
}

.relate-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(207, 167, 167, 0.05), transparent);
  transition: left 0.6s ease;
  z-index: -1;
}

.relate-box:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(98, 56, 56, 0.12), 
              0 8px 20px rgba(0,0,0,0.08);
  border-color: rgba(207, 167, 167, 0.2);
}

.relate-box:hover::before {
  left: 100%;
}

/* ===== RESPONSIVE RELATE SECTION ===== */
@media (max-width: 768px) {
  .relate-section {
    margin: 60px auto;
    padding: 0 15px;
  }
  
  .relate-box {
    padding: 20px;
    font-size: 17px;
  }
}

@media (max-width: 480px) {
  .relate-section {
    margin: 40px auto;
    padding: 0 10px;
  }
  
  .relate-box {
    padding: 18px;
    margin-bottom: 15px;
  }
}



/*********** Wyobraź sobie, że... ***********/

.imagine-section {
  background-color: #fdf6f0;  /* tło na całą szerokość */
  padding: 80px 20px;         /* odstęp góra/dół + boki */
}

.container {
  max-width: 1200px;          /* szerokość treści */
  margin: 0 auto;             /* centrowanie */
  text-align: left;           /* wyrównanie do lewej */
}

.imagine-section h2 {
  font-size: 38px;
  margin-bottom: 40px;
}

.imagine-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
}

.before-after-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 20px;
}

.before-column,
.after-column {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 16px;
  padding: 30px;
  border: 2px solid #e6d5c1;
}

.before-column h3,
.after-column h3 {
  font-size: 24px;
  margin-bottom: 25px;
  color: #8c5d5d;
  text-align: center;
  font-weight: 700;
}

.before-column .imagine-box,
.after-column .imagine-box {
  margin-bottom: 20px;
  padding: 20px;
  font-size: 16px;
}

.before-column .imagine-box:last-child,
.after-column .imagine-box:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .imagine-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .before-after-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .before-column h3,
  .after-column h3 {
    font-size: 20px;
  }
}

.imagine-box {
  background: linear-gradient(135deg, #f9f9f9 0%, #fdf6f0 100%);
  border: 2px solid #e6d5c1;
  border-radius: 16px;
  padding: 30px;
  font-size: 18px;
  line-height: 1.7;
  text-align: left;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.imagine-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #cfa7a7, #8c5d5d);
}

.imagine-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
  border-color: #cfa7a7;
}

.imagine-box b,
.imagine-box strong {
  font-weight: 700;
  color: #623838;
}

/* ===== RESPONSIVE IMAGINE SECTION ===== */
@media (max-width: 1024px) {
  .imagine-section {
    padding: 60px 15px;
  }
  
  .imagine-grid {
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .imagine-section {
    padding: 50px 10px;
  }
  
  .imagine-box {
    padding: 25px;
    font-size: 17px;
  }
}

@media (max-width: 480px) {
  .imagine-section {
    padding: 40px 5px;
  }
  
  .imagine-box {
    padding: 20px;
    font-size: 16px;
    line-height: 1.6;
  }
}


/* ===== CTA SECTION ===== */
.cta-section {
  background-color: #fff;
  text-align: center;
  padding: 100px 20px;
}

.cta-section h2 {
  font-size: clamp(26px, 4vw, 36px);
  margin-bottom: 25px;
  color: #623838;
  font-weight: 700;
}

.cta-section p {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  color: #333;
}

.cta-section .cta-button {
  display: inline-block;
  padding: 18px 40px;
  background: linear-gradient(135deg, #cfa7a7, #8c5d5d);
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 700;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(207, 167, 167, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 16px;
}

.cta-section .cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(207, 167, 167, 0.4);
  background: linear-gradient(135deg, #8c5d5d, #623838);
}

/* ===== RESPONSIVE CTA SECTION ===== */
@media (max-width: 768px) {
  .cta-section {
    padding: 70px 15px;
  }
  
  .cta-section p {
    font-size: 18px;
  }
  
  .cta-section .cta-button {
    padding: 16px 32px;
    font-size: 17px;
  }
}

@media (max-width: 480px) {
  .cta-section {
    padding: 50px 10px;
  }
  
  .cta-section p {
    font-size: 17px;
    line-height: 1.6;
  }
  
  .cta-section .cta-button {
    padding: 14px 28px;
    font-size: 16px;
  }
}



/* ===== FOOTER ===== */
footer {
  background: linear-gradient(135deg, #f5f5f5 0%, #fdf6f0 100%);
  padding: 50px 20px;
  text-align: center;
  border-top: 3px solid #cfa7a7;
}

footer p {
  margin: 12px 0;
  font-size: 16px;
  color: #333;
}

footer strong {
  font-size: 22px;
  color: #623838;
  font-weight: 700;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  margin-top: 25px;
}

.footer-contact p {
  display: flex;
  align-items: center;
  gap: 12px;
  transition: transform 0.3s ease;
}

.footer-contact p:hover {
  transform: translateY(-2px);
}

.footer-icon {
  width: 22px;
  height: 22px;
  transition: transform 0.3s ease;
}

.footer-contact p:hover .footer-icon {
  transform: scale(1.1);
}

footer a {
  color: #623838;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

footer a:hover {
  color: #cfa7a7;
  text-decoration: underline;
}

/* ===== RESPONSIVE FOOTER ===== */
@media (max-width: 768px) {
  footer {
    padding: 40px 15px;
  }
  
  footer strong {
    font-size: 20px;
  }
  
  .footer-contact {
    gap: 15px;
  }
  
  .footer-icon {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 480px) {
  footer {
    padding: 30px 10px;
  }
  
  footer p {
    font-size: 17px;
  }
  
  footer strong {
    font-size: 18px;
  }
  
  .footer-contact {
    gap: 12px;
  }
}
