section.hero-standard.projektowanie-hero {
    background: #000;
}

/* Features Grid */
.projektowanie-features {
    padding: 120px 0;
    background: #fff;
}

.projektowanie-features__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.projektowanie-features__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.projektowanie-card {
    padding: 40px;
    background: #f8fafc;
    border-radius: 24px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.projektowanie-card:hover {
    transform: translateY(-10px);
    background: #fff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 177, 207, 0.2);
}

.projektowanie-card__icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 177, 207, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: #00b1cf;
}

.projektowanie-card h3 {
    font-size: 1.5rem;
    color: #1e3a5f;
    margin-bottom: 15px;
}

.projektowanie-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #4b5563;
}

/* Personalization Box */
.projektowanie-highlight {
    background: #fdfdfd;
    padding: 100px 20px;
}

.projektowanie-highlight-box {
    background: #fff;
    padding: 60px 40px;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
    max-width: 900px;
    margin: 0 auto;
    border: 1px solid rgba(0, 177, 207, 0.1);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.projektowanie-highlight-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: #00b1cf;
}

.projektowanie-highlight-box h2 {
    font-size: 2.2rem;
    color: #1e3a5f;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.projektowanie-highlight-box p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #4b5563;
}

/* Mobile */
@media (max-width: 1024px) {
    .projektowanie-features__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .projektowanie-hero {
        padding: 120px 0 60px;
        min-height: auto;
    }

    .projektowanie-hero__container {
        padding: 0 1.5rem;
    }

    .projektowanie-hero__title {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }

    .projektowanie-hero__subtitle {
        font-size: 0.9rem;
    }

    .projektowanie-hero__description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .projektowanie-features {
        padding: 60px 0;
    }

    .projektowanie-features__grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .projektowanie-card {
        padding: 30px 20px;
    }

    .projektowanie-highlight {
        padding: 60px 0;
    }

    .projektowanie-highlight-box {
        padding: 40px 20px;
        margin: 0 15px;
    }

    .projektowanie-highlight-box h2 {
        font-size: 1.7rem;
    }

    .projektowanie-highlight-box p {
        font-size: 1rem;
    }
}