.paving-stones {
    padding: 64px 0;
    background: #f5f6f8;
}

.paving-stones__inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

/* Label */
.paving-stones__label {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #E21E25;
    margin-bottom: 12px;
}

/* Title */
.paving-stones__title {
    font-size: 28px;
    font-weight: 700;
    color: #1a202c;
    line-height: 1.25;
    margin: 0 0 20px;
}

.paving-stones__title span {
    color: #E21E25;
}

/* Body text */
.paving-stones__body p {
    font-size: 15px;
    line-height: 1.75;
    color: #4a5568;
    margin: 0 0 12px;
}

/* Features */
.paving-stones__features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 20px 0 28px;
}

.paving-stones__feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: #1a202c;
}

.paving-stones__feature svg {
    color: #E21E25;
    flex-shrink: 0;
}

/* Actions */
.paving-stones__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.paving-stones__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 26px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.2s;
    cursor: pointer;
    border: 2px solid transparent;
}

.paving-stones__btn--primary {
    background: #E21E25;
    color: #fff;
    border-color: #E21E25;
}

.paving-stones__btn--primary:hover {
    background: #c01a21;
    border-color: #c01a21;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(226, 30, 37, 0.28);
}

.paving-stones__btn--outline {
    background: transparent;
    color: #1a202c;
    border-color: #d1d5db;
}

.paving-stones__btn--outline:hover {
    border-color: #E21E25;
    color: #E21E25;
}

/* Image */
.paving-stones__image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.1);
    order: -1;
}

.paving-stones__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.paving-stones__img-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    height: 300px;
    background: #ebedf0;
    border: 2px dashed #d1d5db;
    border-radius: 16px;
    color: #aaa;
    font-size: 14px;
}

/* Tablet */
@media (max-width: 768px) {
    .paving-stones {
        padding: 48px 0;
    }

    .paving-stones__title {
        font-size: 24px;
    }
}