:root {
    --primary: #d63384;
    --primary2: #18141e;
    --primary-hover: #b8226e;
    --primary-light: #24141d;
    --primary-soft: #f472b6;
    --text-main: #f9fafb;
    --text-muted: #9ca3af;
    --bg-main: #09080D;
    --bg-alt: #121018;
    --bg-card: #09080D;
    --border: #27272a;
    --shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.5);
    --shadow-hover: 0 20px 40px -10px rgba(214, 51, 132, 0.3);
    --radius: 16px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    
    --ppink1: #F93083;
    --ppink2: #D1A3B7;
    --pblack1: #09080D;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

body {
    background-color: var(--pblack1);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    margin-bottom: 0px;
    padding-left: 0px;
}

.section {
    padding: 100px 0;
}

.section-alt {
    background-color: var(--bg-alt);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.section-title span {
    color: var(--primary);
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 60px auto;
}
#rezultaty .section-subtitle {
    margin: unset;
    max-width: 100%;
    margin-bottom: 10px;
}
#opinie {
    padding-top: 80px;
}
#opinie .section-subtitle {
    margin-bottom: 10px;
}
#rezultaty {
    padding-top: 60px;
    padding-bottom: 40px;
}
#dzien .section-subtitle {
    margin: unset;
    margin-bottom: 35px;
    max-width: 100%;
}
#prozis .section-subtitle {
    margin-bottom: 30px;
}
#porady .section-subtitle {
    margin-bottom: 30px;
}
#prozis {
    padding-top: 80px;
    padding-bottom: 70px;
}
#porady {
    padding-top: 40px;
    padding-bottom: 50px;
}
#historia {
    padding-bottom: 40px;
}
#dzien {
    padding-top: 50px;
}
.section.ebookos {
    padding-bottom: 0px!important;
}
#wspolpraca {
    padding-bottom: 70px;
    padding-top: 50px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    background-color: var(--primary);
    color: #ffffff;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(214, 51, 132, 0.3);
}

.btn:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(214, 51, 132, 0.4);
}

.btn-nav,
.btn-nav2 {
    padding: 8px 24px;
    font-size: 0.85rem;
}
.btn-nav:hover {
    color: #fff;
    background-color: #ffaecf;
}
.btn-nav2 {
    background-color: #ffaecf;
    color: #ffffff;
}

.btn-outline {
    background-color: transparent;
    color: var(--text-main);
    border: 2px solid var(--border);
    box-shadow: none;
}

.btn-outline:hover {
    background-color: var(--primary-light);
    border-color: var(--primary);
    color: var(--primary);
    box-shadow: none;
}

.badge {
    display: inline-block;
    padding: 6px 16px;
    background-color: var(--primary-light);
    color: var(--primary);
    font-weight: 700;
    font-size: 0.85rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(9, 8, 13, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    padding: 16px 0;
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-logo {
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--text-main);
    letter-spacing: -0.02em;
}

.navbar-logo span {
    color: var(--primary);
}
.logo {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    line-height: 1;
}

.logo-first {
    font-size: 1.2rem;
    font-weight: 900;
    letter-spacing: 1px;
    color: var(--text-main);
}

.logo-last {
    font-size: 1.2rem;
    font-weight: 900;
    color: var(--primary);
}
.navbar-menu {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 25px;
}

.navbar-link {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-muted);
    transition: var(--transition);
}

.navbar-link:hover {
    color: var(--primary);
}

.hero {
    padding: 118px 0 100px 0;
    background: linear-gradient(180deg, var(--primary-light) 0%, rgba(9, 8, 13, 0) 100%);
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
}

.hero-text h1 {
    font-size: 3.8rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.03em;
}

.hero-text h1 span {
    color: var(--primary);
}

.hero-text p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 36px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.hero-image-container {
    position: relative;
    width: 75%;
    z-index: 2;
}

.hero-image-container img {
    width: 100%;
    max-height: 730px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    display: block;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    z-index: 1;
    opacity: 0.6;
}

.hero-shape-1 {
    width: 300px;
    height: 300px;
    background: var(--primary);
    top: -20px;
    right: -20px;
}

.hero-shape-2 {
    width: 250px;
    height: 250px;
    background: #ffb8d2;
    bottom: -30px;
    right: 40%;
}

.hero-card {
    position: absolute;
    background: rgba(18, 16, 24, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    padding: 14px 20px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 3;
    animation: float 4s ease-in-out infinite;
}
.hero-card1 {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.hero-card2 {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
}
.hero-card-stats {
    bottom: 40px;
    left: -40px;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}

.card-number {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.card-text {
    font-size: 1.3rem;
    font-weight: 600;
    color: #e5e7eb;
}
.card-text2 {
    font-size: 0.9rem;
    font-weight: 600;
    color: #c7c7c7;
}

.hero-card-badge {
    top: 40px;
    right: -20px;
    animation-delay: 2s;
}

.card-icon {
    font-size: 1.5rem;
}

.card-info {
    display: flex;
    flex-direction: column;
}

.card-info strong {
    font-size: 0.9rem;
    line-height: 1.2;
}

.card-info small {
    font-size: 0.75rem;
    color: var(--text-muted);
}
.mobile-ebook {
    display: none;
}
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

@media (max-width: 992px) {
    #opinie {
        padding-top: 60px!important;
    }
    #historia .section-subtitle {
        margin-bottom: 40px;
    }
    .story-grid {
        gap: 30px!important;
        margin-bottom: 40px!important;
    }
    .promo-static-mobile {
        padding-left: 30px;
    }
    .navbar {
        padding: 25px 0px!important;
    }
    .footer {
        padding: 25px 0px 20px 0px!important;
    }
    .ebook-banner {
        margin-bottom: 0px!important;
    }
    .ebookos {
        padding-bottom: 0px!important;
    }
    .ebook-img img {
        height: 500px!important;
    }
    .normal-ebook {
        display: none;
    }
    .mobile-ebook {
        display: flex;
    }
    .ebook-content h2 {
        font-size: 2.0rem!important;
    }
    #porady {
        padding-top: 40px!important;
        padding-bottom: 60px!important;
    }
    #rezultaty {
        padding-top: 50px!important;
        padding-bottom: 30px!important;
    }
    .section-title {
        font-size: 2.0rem;
    }
    #dzien {
        padding-top: 50px!important;
        padding-bottom: 70px!important;
    }
    #historia {
        padding-bottom: 30px!important;
    }
    #prozis {
        padding-top: 50px!important;
        padding-bottom: 40px!important;
    }
    .section {
        padding: 80px 0px!important;
    }
    .hero {
        padding-bottom: 20px!important;
    }
    .hero-section {
        padding: 30px 20px!important;
    }
    .hero-container.cont2 h1 {
        font-size: 32px;
    }
    .hero-section {
        padding-top: 100px!important;
    }
    .btn-nav {
        font-size: 1.05rem;
    }
    .hero-text {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        
        order: 2;
    }
    .hero-image-container {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .hero-image-container img {
        width: 70%;
        max-height: 500px;
    }
    
    
    
    .hero-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-image-wrapper {
        justify-content: center;
    }

    .hero-image-container {
        width: 100%;
        max-width: 450px;
    }

    .hero-card-stats {
        left: -10px;
    }

    .hero-card-badge {
        right: -10px;
    }
}

.marquee-section {
  padding: 10px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  background: #110F17;
  width: 100%;
}

.marquee-title {
  text-align: center;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 20px;
  font-weight: 700;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: scroll 20s linear infinite;
}

.marquee-group {
  display: flex;
  flex-shrink: 0;
}

.marquee-item {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--text-muted);
  opacity: 0.4;
  transition: var(--transition);
  display: flex;
  align-items: center;
  white-space: nowrap;
  padding: 0 50px;
}

.marquee-item:hover {
  opacity: 1;
  color: var(--primary);
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 136px;
    align-items: center;
}

.story-image img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: var(--shadow);
}

.story-content p {
    margin-bottom: 20px;
    color: var(--text-muted);
    font-size: 1.05rem;
}

.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    align-items: center;
    position: relative;
    margin-bottom: 40px;
    width: 100%;
    justify-content: space-between;
}

.timeline-card,
.timeline-media {
    width: calc(50% - 50px);
    box-sizing: border-box;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary);
    border: 4px solid var(--pblack1);
    box-shadow: 0 0 0 2px var(--primary);
    z-index: 1;
    transform: translate(-50%, -50%);
}

.timeline-card {
    background: var(--bg-card);
    padding: 28px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.timeline-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-soft);
}

.timeline-media {
    height: 250px;
    border-radius: var(--radius);
    overflow: hidden;
}

.timeline-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.timeline-year {
    display: inline-block;
    font-weight: 800;
    color: var(--primary);
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.timeline-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.timeline-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

@media (max-width: 767px) {
    .timeline::before {
        left: 20px;
    }

    .timeline-item {
        flex-direction: column !important;
        align-items: flex-start;
        padding-left: 50px;
    }

    .timeline-card {
        width: 100%;
    }

    .timeline-media {
        display: none;
    }

    .timeline-dot {
        left: 20px;
        top: 25px;
        transform: translate(-50%, 0);
    }
}

.day-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.day-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.day-card:hover {
    transform: translateY(-5px);
}

.day-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.day-card-body {
    padding: 24px;
}

.day-card-tag {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    margin-bottom: 8px;
}

.day-card h3 {
    margin-bottom: 12px;
    font-size: 1.2rem;
}

.day-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.corp-banner {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--pblack1) 100%);
    border: 2px dashed var(--primary-soft);
    border-radius: var(--radius);
    padding: 40px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: center;
}

.corp-banner h3 {
    font-size: 1.8rem;
    margin-bottom: 16px;
}

.corp-banner p {
    color: var(--text-muted);
    font-size: 1.05rem;
}

.corp-banner img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: var(--radius);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: stretch;
    margin-bottom: 40px;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.pricing-card.featured {
    border: 2px solid var(--primary);
    transform: scale(1.03);
}

.featured-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 6px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.pricing-header p {
    color: var(--text-muted);
    font-size: 0.9rem;
    min-height: 40px;
}

.pricing-price {
    margin: 24px 0;
}

.pricing-price .amount {
    font-size: 3rem;
    font-weight: 900;
    color: var(--text-main);
}

.pricing-price .period {
    color: var(--text-muted);
    font-size: 0.9rem;
}
.pricefs {
    display: flex;
    gap: 8px;
}
.periodfs {
    color: var(--text-muted);
}
.amountfs {
    color: var(--ppink1);
}
.pricing-features {
    list-style: none;
    margin-bottom: 32px;
    flex-grow: 1;
}

.pricing-features li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.special-offer {
    background: var(--primary-light);
    border-radius: var(--radius);
    padding: 24px 32px;
    text-align: center;
    font-weight: 600;
    color: var(--text-main);
    font-size: 1.1rem;
}

.special-offer span {
    color: var(--primary);
    font-weight: 800;
}

.prozis-code-box {
    background: var(--primary-light);
    border: 2px dashed var(--primary);
    border-radius: var(--radius);
    padding: 24px;
    text-align: center;
    margin-bottom: 40px;
}

.prozis-website {
    color: var(--primary);
}
.prozis-info {
    margin-bottom: 0px;
}

.prozis-code-box h3 {
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.prozis-code {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 8px 24px;
    border-radius: 8px;
    font-weight: 900;
    font-size: 1.5rem;
    letter-spacing: 0.05em;
    margin: 10px 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
}

.product-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.product-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.product-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-title {
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 8px;
}

.product-desc {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 16px;
    flex-grow: 1;
}

.product-btn {
    display: block;
    text-align: center;
    padding: 10px;
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--text-main);
    transition: var(--transition);
}

.product-btn:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 24px;
}

.tip-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 32px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.tip-card:hover {
    border-color: var(--primary-soft);
    transform: translateY(-3px);
}

.tip-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-soft);
    line-height: 1;
    margin-bottom: 16px;
}

.tip-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.tip-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}
.reviews-swiper {
    padding-bottom: 50px;
    position: relative;
}
.review-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 16px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    cursor: pointer;
}
.review-img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
    transition: opacity 0.2s ease;
}
.review-card:hover .review-img {
    opacity: 0.9;
}
.reviews-swiper {
    -webkit-user-select: none; 
    -moz-user-select: none;    
    -ms-user-select: none;     
    user-select: none;        
}
.reviews-swiper img {
    -webkit-user-drag: none;
    user-drag: none;
}
.swiper-button-prev, 
.swiper-button-next {
    background: var(--primary-light);
    border-radius: 0%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 24px;
    left: unset;
    right: unset;
    top: 32px;
    color: #d63384;
}
.swiper-button-prev {
    right: 51%;
} 
.swiper-button-next {
    left: 51%;
}
.swiper-button-prev:after, 
.swiper-button-next:after {
    font-size: 16px;
    font-weight: 600;
}
.opinie-boxo {
    margin-bottom: 70px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.swiper-pagination-bullet-active {
    background: var(--primary)!important;
}
.swiper-pagination-bullet {
    background: #fff;
}

/* duplikat sekcja ale druga */
#opinie .swiper-slide {
  height: auto;
  display: flex;
}

#opinie .review-card {
  background: #ffffff;
  padding: 0;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  border: 1px solid rgba(249, 48, 131, 0.2);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

#opinie .review-card:hover {
  border-color: #F93083;
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(249, 48, 131, 0.2);
}

#opinie .review-card:hover .review-img {
  opacity: 1;
}

#opinie .review-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 0;
  display: block;
}

#opinie .reviews-swiper {
  padding: 10px 5px 40px 5px;
}






.image-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    padding-top: 40px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.modal-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 90vh;
    border-radius: 8px;
    object-fit: contain;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
}



/* EBOOK BANNER */
.ebook-banner {
    background: linear-gradient(135deg, var(--primary2) 0%, var(--pblack1) 100%);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    color: var(--text-main);
    border-radius: 32px;
    padding: 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 100px;
}

.ebook-content h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
    color: var(--text-main);
}

.ebook-content p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 32px;
}

.ebook-img img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

/* FOOTER */
.footer {
    background-color: var(--primary2);
    color: var(--text-main);
    padding: 40px 0 30px 0;
    border-top: 1px solid var(--border);
    padding-bottom: 20px;
    padding-top: 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 22px;
}

.footer-brand .logo {
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 16px;
    color: var(--text-main);
}

.footer-brand .logo span {
    color: var(--primary);
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.95rem;
    max-width: 320px;
    margin-bottom: 12px;
    margin-top: 8px;
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-main);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-socials {
    display: flex;
    gap: 16px;
}

.footer-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    font-weight: 700;
    transition: var(--transition);
}

.footer-socials a:hover {
    background: #fff;
    color: var(--primary);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 30px;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}
.logofooter {
    display: flex;
    font-size: 1.2rem;
    font-weight: 900;
    letter-spacing: 1px;
}



@media (max-width: 992px) {
    .timeline-media img {
        object-position: 50% 30%;
    }
    .timeline-media.fs img {
        object-position: 50% 10%;
    }
    .timeline::before {
        left: 20px;
        transform: none;
    }

    .timeline-item,
    .timeline-item:nth-child(even) {
        width: 100%;
        flex-direction: column !important;
        align-items: flex-start;
        padding-left: 50px;
        padding-right: 0;
        margin-left: 0;
    }

    .timeline-card {
        width: 100%;
        margin-bottom: 15px;
    }

    .timeline-media {
        width: 100%;
        height: 220px;
    }

    .timeline-dot,
    .timeline-item:nth-child(even) .timeline-dot {
        left: 20px;
        right: auto;
        top: 25px;
        transform: translate(-50%, 0);
    }
    .btn-nav {
        width: 100%;
    }

    .hero-grid,
    .story-grid,
    .corp-banner,
    .ebook-banner,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .navbar-menu {
        display: none;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: none;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-item,
    .timeline-item:nth-child(even) {
        width: 100%;
        padding-left: 60px;
        padding-right: 0;
        justify-content: flex-start;
    }

    .timeline-dot,
    .timeline-item:nth-child(even) .timeline-dot {
        left: 10px;
        right: auto;
    }

    .hero-text h1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 600px) {
    .section {
        padding: 60px 0;
    }

    .hero-text h1 {
        font-size: 2.2rem;
    }

    .tips-grid {
        grid-template-columns: 1fr;
    }
}




.section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.section::before {
    content: '';
    position: absolute;
    top: 50px;
    right: -80px;
    width: 320px;
    height: 320px;
    background-image: radial-gradient(var(--primary-soft) 2px, transparent 2px);
    background-size: 20px 20px;
    opacity: 0.25;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.section::after {
    content: '';
    position: absolute;
    bottom: 40px;
    left: -40px;
    width: 200px;
    height: 200px;
    border: 3px dashed var(--primary-soft);
    border-radius: 50%;
    opacity: 0.3;
    pointer-events: none;
    z-index: 0;
}

.section-alt {
    background-color: var(--bg-alt);
    position: relative;
}

.section-alt::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(214, 51, 132, 0.06) 0%, rgba(9, 8, 13, 0) 70%);
    pointer-events: none;
    z-index: 0;
}

.section .container,
.section-alt .container {
    position: relative;
    z-index: 1;
}

.underline-glow {
    position: relative;
    display: inline-block;
}

.underline-glow::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 8px;
    background: var(--primary-soft);
    border-radius: 10px;
    opacity: 0.6;
    transform: rotate(-1.5deg);
}












/* wspolpraca online tab */
#wspolpraca {
    background-color: var(--bg-alt);
}
.hero-section {
    background-color: var(--pblack1);
    padding: 60px 20px;
    padding-top: 150px;
}

.hero-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-evenly;
}

.hero-image-box {
  flex: 0 1 450px;
  width: 100%;
  height: 500px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  background-color: #121018;
  order: 1;
}

.hero-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  flex: 1;
  max-width: 550px;
  order: 2;
}

.hero-badge {
  display: inline-block;
  background-color: var(--primary-light);
  color: #e04485;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.hero-content h1 {
  color: var(--text-main);
  font-size: 42px;
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 20px 0;
}

.hero-content h1 span {
  color: #e04485;
}

.hero-content p {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 30px;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  margin-bottom: 40px;
}

.btn-primary {
  background-color: #e04485;
  color: #ffffff;
  padding: 14px 30px;
  font-size: 15px;
  font-weight: 700;
  border-radius: 30px;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.btn-primary:hover {
  background-color: #c93671;
}

.btn-secondary {
  background-color: transparent;
  color: var(--text-main);
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 30px;
  border: 2px solid var(--border);
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  border-color: #e04485;
  color: #e04485;
}

.hero-stats {
  display: flex;
  gap: 30px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.stat-item strong {
  display: block;
  font-size: 24px;
  font-weight: 800;
  color: #e04485;
}

.stat-item span {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 600;
  margin-top: 4px;
}

@media (max-width: 992px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .hero-image-box {
    order: 1;
    max-width: 100%;
    
  }

  .hero-content {
    order: 2;
    max-width: 100%;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }
}









/* offcanvas */
.menu-toggle {
            display: none;
            flex-direction: column;
            justify-content: space-between;
            width: 30px;
            height: 21px;
            background: transparent;
            border: none;
            cursor: pointer;
            padding: 0;
        }

        .menu-toggle span {
            width: 100%;
            height: 3px;
            background-color: #ffffff;
        }

        .offcanvas {
            position: fixed !important;
            top: 0 !important;
            right: 0 !important;
            width: 300px !important;
            max-width: 80% !important;
            height: 100vh !important;
            background-color: var(--pblack1) !important;
            z-index: 999999 !important;
            padding: 20px !important;
            box-sizing: border-box !important;
            display: flex !important;
            flex-direction: column !important;
            box-shadow: -2px 0 10px rgba(0, 0, 0, 0.5) !important;

            visibility: hidden !important;
            transform: translateX(100%) !important;
            transition: transform 0.3s ease-in-out, visibility 0.3s ease-in-out !important;
        }

        .offcanvas.active {
            visibility: visible !important;
            transform: translateX(0) !important;
        }

        .offcanvas-overlay {
            position: fixed !important;
            top: 0 !important;
            left: 0 !important;
            width: 100% !important;
            height: 100% !important;
            background-color: rgba(0, 0, 0, 0.7) !important;
            z-index: 999998 !important;

            opacity: 0 !important;
            visibility: hidden !important;
            transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out !important;
        }

        .offcanvas-overlay.active {
            opacity: 1 !important;
            visibility: visible !important;
        }

        

        .offcanvas-close {
            align-self: flex-end;
            background: transparent;
            border: none;
            font-size: 32px;
            line-height: 1;
            color: #fff;
            cursor: pointer;
            padding: 0;
            margin-bottom: 20px;
        }

        .offcanvas-menu {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .offcanvas-link {
            color: #fff;
            text-decoration: none;
            font-size: 18px;
            display: block;
            font-weight: 500;
            position: relative;
            padding-left: 15px;
        }
        .offcanvas-link::after {
            content: "";
            position: absolute;
            left: 0px;
            top: 0px;
            width: 2px;
            height: 100%;
            background-color: var(--ppink1);
            opacity: 0.5;
        }

        @media (max-width: 991px) {
            .navbar-menu {
                display: none !important;
            }

            .menu-toggle {
                display: flex !important;
            }
        }





/* promo baner banner */
.promo-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--pblack1);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding-top: 20px;
  padding-bottom: 20px;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.promo-marquee {
  flex: 1;
  overflow: hidden;
  display: flex;
  align-items: center;
  position: relative;
  height: 100%;
}

.promo-track {
  display: flex;
  width: max-content;
  animation: promoScroll 25s linear infinite;
}

.promo-group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.promo-static-mobile {
  display: none;
}

.promo-item {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-main);
  white-space: nowrap;
  padding: 0 30px;
}

.promo-action {
  flex-shrink: 0;
  padding: 0 20px;
  background: var(--pblack1);
  z-index: 2;
  box-shadow: -15px 0 20px var(--pblack1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  height: 100%;
}

.promo-timer-wrapper {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  line-height: 1;
}

.promo-timer-label {
  color: var(--text-muted, #888);
  text-transform: uppercase;
  font-size: 0.65rem;
  letter-spacing: 0.05em;
}

.promo-timer {
  color: var(--ppink2);
  font-weight: 700;
  font-size: 0.85rem;
}

.btn-promo {
  padding: 6px 18px;
  white-space: nowrap;
  font-size: 1.3rem;
  margin-top: 6px;
}

.highlight {
    color: var(--ppink1);
}
@keyframes promoScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 767px) {
    .promo-timer-label {
        font-size: 0.9rem;
    }
    .promo-timer {
        font-size: 0.9rem;
    }
    .btn-promo {
        padding: 5px 20px;
        font-size: 1.2rem;
        margin-top: 5px;
      }
  .promo-banner {
    padding-top: 18px;
    padding-bottom: 18px;
    gap: 10px;
  }

  .promo-marquee {
    display: none;
  }

  .promo-static-mobile {
    display: block;
    flex: 1;
    padding-left: 15px;
  }

  .promo-item {
    /*font-size: 0.85rem;*/
      font-size: 1rem;
      font-weight: 700;
    padding: 0;
    white-space: normal;
  }
  
  .promo-action {
    align-items: flex-start;
    box-shadow: none;
  }

  .promo-timer-wrapper {
    flex-direction: column;
    align-items: flex-start;
  }

  
}








/* moje podejście zakladka zakładka */
.approach-header {
  text-align: center;
  margin-bottom: 40px;
}

.approach-badge {
  display: inline-block;
  background-color: rgba(249, 48, 131, 0.15);
  color: #F93083;
  font-size: 14px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 20px;
  border: 1px solid #F93083;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.approach-title {
  font-size: 32px;
  margin: 0 0 10px 0;
  color: #ffffff;
}

.approach-desc {
  color: #a0a0a0;
  font-size: 16px;
  margin: 0;
}

.tiktok-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.tiktok-card {
  background-color: #12101a;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(249, 48, 131, 0.2);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.tiktok-card:hover {
  transform: translateY(-5px);
  border-color: #F93083;
  box-shadow: 0 12px 30px rgba(249, 48, 131, 0.25);
}

.tiktok-wrapper {
  position: relative;
  width: 100%;
  padding-top: 177.78%; 
  background-color: #000000;
}

.tiktok-wrapper video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tiktok-wrapper video:-webkit-full-screen {
  object-fit: contain;
  background-color: #000000;
}

.tiktok-wrapper video:fullscreen {
  object-fit: contain;
  background-color: #000000;
}

@media (max-width: 900px) {
  .tiktok-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .tiktok-grid {
    grid-template-columns: 1fr;
    max-width: 350px;
    margin: 0 auto;
  }
  
  .section {
    padding: 40px 15px;
  }
  
  .approach-title {
    font-size: 26px;
  }
}










/* icons */