@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

:root {
  --primary-color: #c71c1c;
  --primary-dark: #a01818;
  --bg-gradient-start: #ede5f7;
  --bg-gradient-end: #e0d6ed;
  --text-primary: #2d2d47;
  --text-secondary: #6b7280;
  --white: #ffffff;
  --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.15);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", sans-serif;
  background: linear-gradient(180deg, #ede5f7 0%, #e8dff3 50%, #e0d6ed 100%);
  color: var(--text-primary);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* HEADER */
.landing-header {
  padding: 1.5rem 0rem;
  background-color: transparent;
  position: sticky;
  top: 0;
  z-index: 100;
  max-width: 1200px;
  margin-inline: auto;
  width: 100%;
}

.header-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  font-weight: 700;
  color: var(--primary-color);
}

.logo-img {
  width: 100px;
  height: auto;
}

.logo-text {
  color: var(--primary-color);
  font-weight: 700;
  font-size: 1.4rem;
}

.login-btn {
  padding: 0.7rem 1.8rem;
  background-color: var(--primary-color);
  color: var(--white);
  text-decoration: none;
  border-radius: 0.45rem;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(199, 28, 28, 0.2);
}

.login-btn:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(199, 28, 28, 0.3);
}

/* MAIN CONTENT */
.landing-main {
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* HERO SECTION */
.hero-section {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.hero-wrapper {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hero-title {
  font-size: 2.8rem;
  line-height: 1.1;
  color: var(--text-primary);
  font-weight: 700;
  margin: 0;
}

.title-highlight {
  color: var(--primary-color);
}

.features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  font-size: 1rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.check-icon {
  color: var(--primary-color);
  flex-shrink: 0;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.1rem 2.2rem;
  background-color: var(--primary-color);
  color: var(--white);
  text-decoration: none;
  border-radius: 0.45rem;
  font-weight: 600;
  font-size: 1.05rem;
  transition: all 0.3s ease;
  width: fit-content;
  border: none;
  cursor: pointer;
  gap: 0.6rem;
  box-shadow: 0 4px 15px rgba(199, 28, 28, 0.2);
}

.cta-button:hover {
  background-color: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(199, 28, 28, 0.3);
}

.hero-image-wrapper {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.hero-image {
  width: 100%;
  height: auto;
  max-width: 500px;
  border-radius: 1.2rem;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
}

/* ABOUT & BENEFITS SECTION */
.about-benefits-section {
  padding: 4rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

.about-header {
  margin-bottom: 3rem;
}

.about-title {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
  font-weight: 700;
}

.about-text {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 800px;
  line-height: 1.8;
}

.about-text strong {
  color: var(--primary-color);
  font-weight: 600;
}

/* BENEFITS GRID */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.benefit-card {
  position: relative;
  height: 320px;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: all 0.3s ease;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: flex-end;
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.2);
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.85) 100%);
  z-index: 1;
}

.benefit-overlay {
  position: relative;
  z-index: 2;
  padding: 2rem;
  width: 100%;
}

.benefit-number {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.benefit-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
  font-weight: 600;
}

.benefit-card p {
  color: var(--text-secondary);
  line-height: 1.6;
  font-size: 0.9rem;
}

/* FOOTER */
.landing-footer {
  background: linear-gradient(135deg, #2d2d47 0%, #1a1a2e 100%);
  color: var(--white);
  padding: 3rem 2rem 2rem;
  margin-top: auto;
}

.footer-wrapper {
  max-width: 1400px;
  margin: 0 auto;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-highlight {
  font-size: 0.95rem;
  color: var(--white);
  font-weight: 500;
}

.footer-contact {
  display: flex;
  gap: 2.5rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
}

.footer-bottom {
  display: flex;
  justify-content: center;
  gap: 1rem;
  text-align: center;
  padding-top: 1.5rem;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-bottom a:hover {
  color: var(--white);
}

.separator {
  color: rgba(255, 255, 255, 0.4);
}

/* RESPONSIVE DESIGN */
@media (max-width: 1200px) {
  .hero-wrapper {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .hero-image-wrapper {
    justify-content: center;
  }

  .hero-image {
    max-width: 100%;
  }

  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .landing-header {
    padding: 1rem 1rem;
  }

  .header-wrapper {
    gap: 1rem;
  }

  .logo-img {
    width: 40px;
  }

  .logo-text {
    font-size: 1.2rem;
  }

  .login-btn {
    padding: 0.6rem 1.4rem;
    font-size: 0.9rem;
  }

  .hero-section {
    padding: 2rem 1rem;
  }

  .hero-title {
    font-size: 2rem;
  }

  .features-list {
    gap: 0.7rem;
  }

  .feature-item {
    font-size: 0.95rem;
    gap: 0.7rem;
  }

  .cta-button {
    padding: 0.9rem 1.8rem;
    font-size: 1rem;
  }

  .about-benefits-section {
    padding: 2.5rem 1rem;
  }

  .about-title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }

  .about-text {
    font-size: 0.95rem;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .benefit-card {
    height: 280px;
  }

  .benefit-overlay {
    padding: 1.5rem;
  }

  .benefit-number {
    font-size: 1.2rem;
  }

  .benefit-card h3 {
    font-size: 1.1rem;
  }

  .benefit-card p {
    font-size: 0.85rem;
  }

  .footer-content {
    flex-direction: column;
    gap: 1.5rem;
  }

  .footer-contact {
    flex-direction: column;
    gap: 1rem;
  }

  .landing-footer {
    padding: 2rem 1rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .landing-header {
    padding: 0.75rem;
  }

  .header-wrapper {
    gap: 0.5rem;
  }

  .logo-img {
    width: 100%;
  }

  .logo-text {
    font-size: 1rem;
  }

  .login-btn {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
  }

  .hero-section {
    padding: 1.5rem 0.75rem;
  }

  .hero-title {
    font-size: 1.5rem;
  }

  .features-list {
    gap: 0.6rem;
  }

  .feature-item {
    font-size: 0.85rem;
  }

  .cta-button {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }

  .about-benefits-section {
    padding: 1.5rem 0.75rem;
  }

  .about-title {
    font-size: 1.4rem;
  }

  .about-text {
    font-size: 0.85rem;
  }

  .benefit-card {
    height: 240px;
  }

  .benefit-overlay {
    padding: 1.2rem;
  }

  .benefit-number {
    font-size: 1rem;
  }

  .benefit-card h3 {
    font-size: 0.95rem;
  }

  .benefit-card p {
    font-size: 0.8rem;
  }

  .footer-contact {
    flex-direction: column;
    gap: 0.75rem;
  }

  .contact-item {
    font-size: 0.85rem;
  }

  .footer-bottom {
    gap: 0.5rem;
    font-size: 0.75rem;
  }
}



.hero-wrapper{
  background-image: url('/assets/images/strona-startowa2.webp');
  background-position: right;
  background-size: cover;
  padding: 3rem;
  border-radius: 2rem;
  max-width: 1200px;
  margin-inline: auto;
}










.m599{
  padding: 2.5rem 1.25rem;
  max-width: 1200px;
  margin-inline: auto;
  width: 100%;
}

.m599__wrap{
  max-width:82rem;
  margin:0 auto;
}

.m599__card{
  position:relative;
  overflow:hidden;
  border-radius:2rem;
  background:#f5f2ee;
  border:0.0625rem solid rgba(0,0,0,0.08);
  min-height:24rem;
  margin-top: -2rem;
}

.m599__card::before{
  content:"";
  position:absolute;
  inset:0;
  background-image:url("/assets/images/obraz-na-tlo-startowe.webp");
  background-size:cover;
  background-position:right center;
  background-repeat:no-repeat;
  filter:saturate(1.02) contrast(1.02);
}

.m599__card::after{
  content:"";
  position:absolute;
  inset:0;
  background:
  radial-gradient(circle, rgba(233,225,244,0.12) 0 0.045rem, transparent 0.055rem) 0 0/0.85rem 0.85rem,
  linear-gradient(90deg,
    rgba(233,225,244,0.98) 0%,
    rgba(233,225,244,0.96) 44%,
    rgba(233,225,244,0.80) 58%,
    rgba(233,225,244,0.48) 70%,
    rgba(233,225,244,0.16) 80%,
    rgba(233,225,244,0) 90%
  );
  pointer-events:none;
}




.m599__cut{
  position: absolute;
  top: -1.1rem;
  left: 0;
  transform: translateX(-10%);
  width: 70%;
  height: 4.1rem;
  background: #e9e0f4;
  border-radius: 0 0 3rem 3rem;
  z-index: 3;
}

.m599__content{
  position: relative;
  z-index: 2;
  max-width: 48rem;
  padding: 5.6rem 2.6rem 2.6rem 2.6rem;
}

.m599__title{
  margin:0 0 1rem 0;
  font-size:clamp(2rem, 2.6vw, 2.9rem);
  line-height:1.12;
  letter-spacing:-0.02em;
  font-weight:800;
  color:#2e3445;
}

.m599__brand{
  text-decoration:underline;
  text-decoration-color:#cc0000;
  text-decoration-thickness:0.18rem;
  text-underline-offset:0.22rem;
}

.m599__lead{
  margin:0;
  max-width:40rem;
  color:#555b6a;
  font-size:1.05rem;
  line-height:1.75;
  z-index: 4;
  position: relative;
}

.m599__list{
  margin:0;
  padding: 3rem 3rem;
  list-style:none;
  display:flex;
  flex-direction:column;
  gap:1.9rem;
}

.m599__item{
  display: grid;
  grid-template-columns: 3.2rem 1fr;
  gap: 0rem;
  align-items: start;
}

.m599__no{
  font-weight: 600;
  font-size: 1.75rem;
  line-height: 1.3;
  color: #cc0000;
  letter-spacing: 0.02em;
}

.m599__h{
  margin: 0 0 0.45rem 0;
  font-size: 1.6rem;
  line-height: 1.25;
  font-weight: 600;
  color: #2e3445;
}

.m599__p{
  margin:0;
  color:#6b7280;
  font-size:1rem;
  line-height:1.7;
}

@media (max-width:64rem){
  .m599__content{
    max-width:44rem;
    padding:2.25rem 2.1rem;
  }

  .m599__card::after{
    background:
      radial-gradient(circle, rgba(0,0,0,0.085) 0 0.045rem, transparent 0.055rem) 0 0/0.85rem 0.85rem,
      linear-gradient(90deg,
        rgba(245,242,238,0.98) 0%,
        rgba(245,242,238,0.96) 52%,
        rgba(245,242,238,0.82) 64%,
        rgba(245,242,238,0.55) 74%,
        rgba(245,242,238,0.22) 84%,
        rgba(245,242,238,0) 94%
      );
  }
}

@media (max-width:48rem){
  .m599{
    padding:1.75rem 1rem;
  }

  .m599__content{
    max-width:100%;
    padding:1.75rem 1.25rem;
  }

  .m599__item{
    grid-template-columns:3.7rem 1fr;
    gap:1rem;
  }

  .m599__no{
    font-size:1.55rem;
  }

  .m599__card::after{
    background:
      radial-gradient(circle, rgba(0,0,0,0.085) 0 0.045rem, transparent 0.055rem) 0 0/0.85rem 0.85rem,
      linear-gradient(180deg,
        rgba(245,242,238,0.98) 0%,
        rgba(245,242,238,0.92) 58%,
        rgba(245,242,238,0.78) 72%,
        rgba(245,242,238,0.52) 86%,
        rgba(245,242,238,0.28) 100%
      );
  }

  .m599__cut{
    top:-1rem;
    height:2.9rem;
    width:min(20rem, 78vw);
  }
}





















.m600{
  background:var(--szare-tlo);
  color:var(--szary-tekst);
  font-size:0.95rem;
  line-height:1.35;
}

.m600__inner{
  max-width:75rem;
  margin:0 auto;
  padding:0.6rem 1rem;
  display:flex;
  flex-direction:column;
  gap:0.6rem;
}

.m600__row{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:0.75rem;
  text-align:center;
}

.m600__bullets{
  margin:0;
  padding:0;
  list-style:none;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-wrap:wrap;
  gap:0.75rem;
}

.m600__bullet{
  display:inline-flex;
  align-items:center;
  gap:0.45rem;
  white-space:nowrap;
}

.m600__bullet + .m600__bullet{
  position:relative;
  padding-left:0.95rem;
}

.m600__bullet + .m600__bullet::before{
  content:"•";
  position:absolute;
  left:0.25rem;
  top:50%;
  transform:translateY(-50%);
  color:var(--kolor-lini);
}

.m600__icon{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  color:var(--kolor1);
  opacity:0.9;
}

.m600__contacts{
  display:flex;
  align-items:center;
  justify-content:center;
  flex-wrap:wrap;
  gap:0.7rem;
}

.m600__contact{
  display:inline-flex;
  align-items:center;
  gap:0.45rem;
  white-space:nowrap;
}

.m600__sep{
  width:1px;
  height:1.1rem;
  background:var(--kolor-lini);
  opacity:0.9;
}

.m600__link{
  color:inherit;
  text-decoration:none;
  border-radius:0.4rem;
  padding:0.1rem 0.25rem;
  outline-offset:0.2rem;
}

.m600__link:hover{
  color:var(--kolor1);
  text-decoration:underline;
  text-underline-offset:0.2em;
}

.m600__link:focus-visible{
  outline:2px solid var(--kolor-przycisk-zgoda);
}

.m600__legal{
  color:inherit;
  text-decoration:none;
  border-radius:0.4rem;
  padding:0.1rem 0.25rem;
  outline-offset:0.2rem;
}

.m600__legal:hover{
  color:var(--kolor1);
  text-decoration:underline;
  text-underline-offset:0.2em;
}

.m600__legal:focus-visible{
  outline:2px solid var(--kolor-przycisk-zgoda);
}

.m600__dot{
  color:var(--kolor-lini);
}

@media (max-width:40rem){
  .m600__inner{
    padding:0.75rem 0.9rem;
  }

  .m600__sep{
    display:none;
  }

  .m600__contacts{
    gap:0.5rem 0.9rem;
  }
}











@media(max-width: 1200px){

  .hero-wrapper {
    background-position: left;

  }

  .m599__list {
    margin: 0;
    padding: 2rem 0rem;
  }
  .m599__card {
    margin-top: -1rem;
  }


}