.hero-section {
    color: white;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 60px 20px;
    background: linear-gradient(135deg, #4f6f00 0%, #7a2b6e 100%);
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: blur(5px);

}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}





.hero-title {
    font-size: 5rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 24px;
    animation: slideUp 0.8s ease-out 0.2s both;
}

.highlight {
    background: white;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.hero-subtitle {
    font-size: 2rem;
    line-height: 1.6;
    color: white;
    max-width: 800px;
    margin: 0 auto 20px;
    font-weight: bolder;
    animation: slideUp 0.8s ease-out 0.4s both;

 text-shadow:
  0.5px 0 0 #000,
 -0.5px 0 0 #000,
  0 0.5px 0 #000,
  0 -0.5px 0 #000;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    animation: slideUp 0.8s ease-out 0.6s both;
    margin-top: 40px;
}

.btn {
    padding: 16px 36px;
    border-radius: 12px;
    font-size: 1.05rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-decoration: none;
}


.btn {
    text-decoration: none;
    padding: 18px 36px;
    border-radius: 50px; /* Zaokrąglone brzegi dodają nowoczesności */
    font-size: 1.2rem;
    font-weight: 800; /* Bardzo gruby tekst dla czytelności */
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
    
}

/* Główny przycisk - Biały, wybijający się z ciemnego tła */
.btn-primary {
    background-color: #ffffff;
    color: #4f6f00; /* Kolor nawiązujący do początku gradientu */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.3);
    background-color: #f0f0f0;
}

/* Przycisk pomocniczy - Szklany efekt (Glassmorphism) */
.btn-secondary {
    background: rgba(255, 255, 255, 0.5);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px); /* Efekt rozmycia tła pod przyciskiem */
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: #ffffff;
    transform: translateY(-3px);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-top: 80px;
    padding-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    animation: fadeIn 1s ease-out 0.8s both;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background-color: white;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
    display: block;
}

.stat-label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}



@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 4rem !important;
    }

    .hero-section {
        min-height: auto;
        padding: 80px 20px 60px;
    }

    .hero-stats {
        gap: 32px;
        margin-top: 60px;
        padding-top: 40px;
    }

    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        width: 100%;
        text-align: center;
    }
}

/* SEKCJA O TECHNOLOGII */
.technology-section {
    background: #f8f9fa;
    padding: 80px 20px;
}

.intro-box {
    background: white;
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.intro-box h2 {
    font-size: 3.5rem;
    margin-bottom: 30px;
    color: #1a1a2e;
    text-align: center;
}

.lead-text {
    font-size: 2.4rem;
    font-weight: 500;
    color: #667eea;
    margin-bottom: 30px;
    line-height: 1.6;
}

.intro-box p {
    font-size: 2rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 25px;
}

/* WRAPPER DLA SEKCJI WYŚRODKOWANYCH */
.content-wrapper {
    max-width: 80vw;
    margin: 0 auto;
    padding: 20px;
}

/* SEKCJE WYŚRODKOWANE */
.why-important-section,
.why-worth-section {
    background: white;
    padding: 80px 20px;
}

.why-important-section {
    background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
}

.why-important-section h2,
.why-worth-section h2 {
    font-size: 3rem;
    margin-bottom: 60px;
    color: #1a1a2e;
    text-align: center;
    font-weight: 700;
}

/* KARTY Z BENEFITAMI */
.benefit-card {
    display: flex;
    gap: 30px;
    margin: 40px 0;
    padding: 40px;
    background: white;
    border-style: solid;
    border-width: 0 0 0 6px;
    border-color: #0da647;
    background: linear-gradient(135deg, #f2fbf3 0%, #e9f6e7 100%);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(144, 199, 117, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-icon {
    font-size: 3.5rem;
    flex-shrink: 0;
}

.benefit-content h3 {
    font-size: 2.4rem;
    margin-bottom: 20px;
    color: #4ba25f !important;
    font-weight: 600;
}

.benefit-content p {
    font-size: 2rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
}

.benefit-content ul {
    margin: 20px 0 0 40px;
    font-size: 2rem;
    line-height: 1.9;
}

.benefit-content ul li {
    margin: 15px 0;
    color: #333;
}

/* SIATKA FUNKCJI */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin: 50px 0;
}

.feature-item {
    text-align: center;
    padding: 40px;
    background: #f8f9fa;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-10px);
}

.feature-icon {
    font-size: 5rem;
    margin-bottom: 20px;
}

.feature-item h3 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: #1a1a2e;
}

.feature-item p {
    font-size: 1.8rem;
    color: #666;
    line-height: 1.7;
}

/* CYTAT */
.quote-box {
background: linear-gradient(135deg, #3ce86a 0%, #5ac483 100%);
    color: white;
    padding: 50px 60px;
    margin: 60px 0;
    border-radius: 20px;
    position: relative;
    box-shadow: 0 10px 40px rgba(102, 126, 234, 0.3);
    font-size: 16px;
    font-weight: bold;
}

.quote-mark {
    font-size: 8rem;
    position: absolute;
    top: 20px;
    left: 30px;
    opacity: 0.3;
    font-family: Georgia, serif;
}

.quote-box p {
    font-size: 2.4rem;
    font-style: italic;
    line-height: 1.7;
    position: relative;
    z-index: 1;
    margin: 0;
}




@media (max-width: 768px) {
    body {
        font-size: 1.4rem;
    }

    .hero-section {
        padding: 80px 15px 60px;
        min-height: 70vh;
    }

    .hero-badge {
        font-size: 1.1rem;
        padding: 10px 20px;
    }

    .hero-section h1 {
        font-size: 2.5rem;
    }

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

    .hero-stats {
        flex-direction: column;
        gap: 30px;
    }

    .stat-number {
        font-size: 3rem;
    }

    .content-wrapper {
        max-width: 95vw;
        padding: 10px;
    }

    .intro-box,
    .benefit-card {
        padding: 30px 20px;
    }



    .lead-text {
        font-size: 1.8rem;
    }

    .benefit-card {
        flex-direction: column;
        gap: 20px;
    }

    .benefit-icon {
        font-size: 3rem;
    }

    .benefit-content h3 {
        font-size: 1.8rem;
    }

    .benefit-content p,
    .benefit-content ul {
        font-size: 1.4rem;
    }

    .feature-icon {
        font-size: 4rem;
    }

    .feature-item h3 {
        font-size: 1.8rem;
    }

    .feature-item p {
        font-size: 1.4rem;
    }

    .quote-box {
        padding: 35px 25px;
    }

    .quote-box p {
        font-size: 1.6rem;
    }
}



.center-wrap {
    text-align: center;
    /* wyśrodkowanie tylko w tym miejscu */
}

.dot-underline {
    position: relative;
    display: inline-block;
    /* linia pod samym tekstem */
}

.dot-underline::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    /* 10 px pod tekstem */
    width: 100%;
    border-bottom: 2px dotted black;
    /* czarna linia kropkowana */
}


.features-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 16px;
    line-height: 1.4;
}

.feature-icon {
    width: 48px;
    height: 48px;
    object-fit: cover;
    border-radius: 6px;
    flex-shrink: 0;
}

.features-list li span {
    display: block;
}

.stat-number-1000 {
    display: inline-block;
    font-size: 4rem;
    font-weight: 800;
    background-color: white;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.ok_ico {
    width: 32px;
    height: 32px;
    vertical-align: middle;
    margin-right: 12px;
    flex-shrink: 0;
}

.benefit-card h3 {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 2rem;
    margin-bottom: 20px;
    color: #0bb386;
    font-weight: 600;
}




.feature-heading-box {
    /* Typografia */
    font-size: 1.5rem;
    line-height: 1.6;
    font-weight: 500;
    color: #333;
    
    /* Układ i marginesy */
    margin-bottom: 24px;
    padding: 16px 20px 16px 24px;
    
    /* Tło z miękkim gradientem */
    background: linear-gradient(135deg, #f5fbf2 0%, #e7f6eb 100%);
    
    /* Zaokrąglenie rogów całego bloku */
    border-radius: 12px;
    
    /* Miękka krawędź boczna (zamiast ostrego border-image) */
    border-left: 6px solid #109316;
    
    /* Opcjonalnie: delikatny cień dodający głębi */

}

/* Specyficzny margines dla drugiego nagłówka */
.feature-margin-large {
    margin-bottom: 128px;
}

/* Styl dla wyróżnień wewnątrz */
.feature-heading-box strong {
    color: #0da647;
    font-weight: 600;
}