/* --- Layout --- */
.dp-pro-section {
    padding-top: 140px; /* Отступ под хедер */
    background-color: #fff;
}

/* --- Hero Section --- */
.dp-pro-hero {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    color: #fff;
}

.dp-pro-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.dp-pro-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3); /* Легкое затемнение для читаемости текста */
    z-index: 2;
}

.dp-pro-hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    padding: 20px;
}

.dp-pro-title {
    font-size: 3.5rem;
    font-family: 'PP Fraktion Sans', sans-serif;
    margin-bottom: 20px;
    line-height: 1.1;
    color: #fff;
}

.dp-pro-subtitle {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #f5f5f5;
}

/* --- Features Grid --- */
.dp-pro-features {
    padding: 80px 20px;
    background-color: #f9f9f9;
}

.dp-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.dp-feature-card {
    text-align: center;
    padding: 20px;
}

.dp-feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    object-fit: contain;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.dp-feature-title {
    font-size: 1.25rem;
    margin-bottom: 10px;
    font-family: 'PP Fraktion Sans', sans-serif;
    color: #000;
}

.dp-feature-desc {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
}

/* --- Info Blocks (Image + Text) --- */
.dp-info-block {
    padding: 80px 20px;
    border-bottom: 1px solid #eee;
}

.dp-info-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.dp-info-reverse .dp-info-img {
    order: 2;
}

.dp-info-reverse .dp-info-content {
    order: 1;
}

.dp-info-img img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.dp-info-content {
    padding: 20px;
}

.dp-info-heading {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-family: 'PP Fraktion Sans', sans-serif;
    color: #000;
}

.dp-info-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #444;
    margin-bottom: 30px;
}

/* --- Contact Form --- */
.dp-form-section {
    padding: 80px 20px;
    background-color: #fff;
    text-align: center;
}

.dp-form-container {
    max-width: 600px;
    margin: 0 auto;
}

.dp-form-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-family: 'PP Fraktion Sans', sans-serif;
}

.dp-form-desc {
    margin-bottom: 40px;
    color: #666;
    font-size: 1.1rem;
}

.dp-contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    text-align: left;
}

.dp-input-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.dp-input {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    outline: none;
    transition: border-color 0.3s;
}

.dp-input:focus {
    border-color: #000;
}

textarea.dp-input {
    resize: vertical;
    min-height: 120px;
}

/* --- Buttons --- */
.dp-btn-primary, .dp-btn-tertiary {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
}

.dp-btn-primary {
    background-color: #000;
    color: #fff;
    border: 1px solid #000;
}

.dp-btn-primary:hover {
    background-color: #333;
    border-color: #333;
}

.dp-btn-tertiary {
    background-color: transparent;
    color: #000;
    border: 1px solid #000;
}

.dp-btn-tertiary:hover {
    background-color: #000;
    color: #fff;
}

/* --- Responsive --- */
@media (max-width: 991px) {
    .dp-pro-hero {
        height: 500px;
    }
    .dp-pro-title {
        font-size: 2.5rem;
    }
    .dp-features-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .dp-info-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .dp-info-reverse .dp-info-img {
        order: -1; /* Картинка всегда сверху на мобильном */
    }
    .dp-info-reverse .dp-info-content {
        order: 0;
    }
    .dp-input-group {
        grid-template-columns: 1fr;
    }
}