:root {
    --theme-base-color: #1e2830;
    --theme-more-color: #da511e;
    --theme-light-bg: #f8f9fa;
    --theme-border: #e0e0e0;
    --theme-text: #333333;
    --theme-text-light: #666666;
}

.bottom-links-block.detail-maxwidth {
    display: none;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.d-flex.jc-center {
    display: flex;
    justify-content: center;
}

.new-styles-wr .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

ul li:before {
    top: unset;
    background: transparent;
}

.section {
    padding: 60px 0;
}

.section--gray {
    background: var(--theme-light-bg);
}

.section--dark {
    background: var(--theme-base-color);
    color: #fff;
}


/* Typography */

h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--theme-base-color);
}

.section--dark h2 {
    color: #fff;
}

h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
}

p {
    font-size: 16px;
    margin-bottom: 15px;
    color: var(--theme-text-light);
}


/* Banner Block */

.banner-block {
    background: var(--theme-base-color);
    padding: 80px 0;
    color: #fff;
    text-align: center;
}

.banner-block h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.banner-placeholder {
    padding: 100px 0;
    text-align: center;
    font-size: 18px;
    opacity: 0.7;
}


/* Text Content Block */

.text-content {
    max-width: 900px;
    margin: 0 auto;
}


/* Advantages Grid */

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.advantage-card {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.advantage-card__icon {
    width: 60px;
    height: 60px;
    background: #faf0e6;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 28px;
}

.advantage-card__title {
    font-size: 18px;
    font-weight: 600;
    color: var(--theme-base-color);
    margin-bottom: 10px;
}

.advantage-card__text {
    font-size: 14px;
    color: var(--theme-text-light);
    line-height: 1.5;
}


/* Technical Capabilities */

.tech-capabilities {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.tech-card {
    background: linear-gradient(135deg, var(--theme-base-color) 0%, #2a3844 100%);
    padding: 25px;
    border-radius: 8px;
    color: #fff;
}

.tech-card h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--theme-more-color);
}

.tech-card ul {
    list-style: none;
    font-size: 14px;
    line-height: 1.8;
}

.tech-card ul li:before {
    content: "✓ ";
    color: var(--theme-more-color);
    font-weight: bold;
    margin-right: 8px;
}


/* Work Process Steps */

.work-process {
    position: relative;
    margin-top: 40px;
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    position: relative;
}

.process-step {
    display: flex;
    gap: 20px;
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid var(--theme-more-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.process-step__number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--theme-more-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
}

.process-step__content h4 {
    font-size: 18px;
    color: var(--theme-base-color);
    margin-bottom: 10px;
}

.process-step__content ul {
    list-style: disc;
    margin-left: 20px;
    font-size: 14px;
    color: var(--theme-text-light);
}


/* Price Factors */

.price-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.price-factors {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.price-factors h3 {
    color: var(--theme-base-color);
    margin-bottom: 20px;
}

.price-factors ul {
    list-style: none;
}

.price-factors ul li {
    padding: 12px 0;
    border-bottom: 1px solid var(--theme-border);
    font-size: 15px;
    position: relative;
    padding-left: 25px;
}

.price-factors ul li:before {
    content: "◆";
    color: var(--theme-more-color);
    position: absolute;
    left: 0;
}

.price-factors ul li:last-child {
    border-bottom: none;
}


/* Material Table */

.material-accordion {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.accordion-header {
    background: var(--theme-base-color);
    color: #fff;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
}

.accordion-content {
    padding: 20px;
    display: none;
}

.accordion-content.active {
    display: block;
}

.material-table {
    width: 100%;
    border-collapse: collapse;
}

.material-table th,
.material-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid var(--theme-border);
}

.material-table th {
    background: var(--theme-light-bg);
    font-weight: 600;
    color: var(--theme-base-color);
}


/* Quote Form */

.quote-form {
    background: linear-gradient(135deg, var(--theme-base-color) 0%, #2a3844 100%);
    padding: 30px;
    border-radius: 8px;
    color: #fff;
}

.quote-form h3 {
    color: #fff;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-size: 14px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 14px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.form-checkbox input[type="checkbox"] {
    width: auto;
}

.submit-btn {
    background: var(--theme-more-color);
    color: #fff;
    border: none;
    padding: 15px 40px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: background 0.3s;
}

.submit-btn:hover {
    background: #c54419;
}

.form-trust-badges {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    margin-bottom: 10px;
}

.trust-badge:before {
    content: "✓";
    color: var(--theme-more-color);
    font-weight: bold;
    font-size: 18px;
}


/* Quality Control */

.quality-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 40px;
}

.quality-block {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.quality-block h3 {
    color: var(--theme-base-color);
    margin-bottom: 20px;
    font-size: 22px;
}

.quality-list {
    list-style: none;
}

.quality-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    font-size: 15px;
}

.quality-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--theme-more-color);
    font-weight: bold;
    font-size: 20px;
}


/* Video Block */

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* About Production */

.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 40px 0;
}

.stat-card {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.stat-card__number {
    font-size: 36px;
    font-weight: 700;
    color: var(--theme-more-color);
    margin-bottom: 10px;
}

.stat-card__label {
    font-size: 14px;
    color: var(--theme-text-light);
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.feature-item {
    background: linear-gradient(135deg, var(--theme-base-color) 0%, #2a3844 100%);
    padding: 20px;
    border-radius: 8px;
    color: #fff;
}

.feature-item h4 {
    color: var(--theme-more-color);
    margin-bottom: 10px;
    font-size: 16px;
}

.feature-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}


/* Industries Grid */

.industries-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.industry-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    color: #fff;
}

.industry-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.industry-card__header {
    background: rgba(218, 81, 30, 0.95);
    color: #fff;
    padding: 20px;
    font-size: 18px;
    font-weight: 600;
}

.industry-card__content {
    padding: 20px;
}

.industry-card__examples {
    list-style: none;
    margin-bottom: 15px;
}

.industry-card__examples li {
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
    font-size: 14px;
    color: #fff;
}

.industry-card__examples li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--theme-more-color);
    font-size: 18px;
}

.industry-card__requirements {
    background: rgba(255, 255, 255, 0.15);
    padding: 15px;
    border-radius: 4px;
    font-size: 13px;
    color: #fff;
    backdrop-filter: blur(5px);
}

.industry-card__requirements strong {
    color: #fff;
    display: block;
    margin-bottom: 5px;
}


/* Testimonials */

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.testimonial-card__image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 15px;
}

.testimonial-card__company {
    font-weight: 600;
    color: var(--theme-base-color);
    margin-bottom: 10px;
}


/* Reviews Widget */

.reviews-widget {
    max-width: 760px;
    margin: 40px auto;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}


/* Portfolio Section */

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 1;
    cursor: pointer;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio-item__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    color: #fff;
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s;
}

.portfolio-item:hover .portfolio-item__overlay {
    transform: translateY(0);
}


/* Contact Form */

.contact-form-section {
    background: var(--theme-light-bg);
    padding: 60px;
    border-radius: 8px;
    margin-top: 40px;
}

.contact-form-section h2 {
    text-align: center;
    margin-bottom: 30px;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}


/* Responsive */

@media (max-width: 1024px) {
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .tech-capabilities {
        grid-template-columns: repeat(2, 1fr);
    }
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    .portfolio-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    h2 {
        font-size: 28px;
    }
    .banner-block h1 {
        font-size: 32px;
    }
    /* Горизонтальный скролл для преимуществ */
    .advantages-grid {
        display: flex;
        overflow-x: auto;
        overflow-y: hidden;
        gap: 20px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 10px;
    }
    .advantages-grid::-webkit-scrollbar {
        height: 8px;
    }
    .advantages-grid::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 4px;
    }
    .advantages-grid::-webkit-scrollbar-thumb {
        background: var(--theme-more-color);
        border-radius: 4px;
    }
    .advantage-card {
        min-width: 280px;
        flex-shrink: 0;
        scroll-snap-align: start;
    }
    .license-list-inner__list.grid-list {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 15px;
    }
    .license-list-inner__list.grid-list .grid-list__item {
        min-width: 250px;
        max-width: 250px;
    }
    .license-list-inner__list.grid-list .grid-list__item>div {
        padding: 20px;
    }
    .tech-capabilities,
    .process-timeline,
    .price-section,
    .quality-grid,
    .industries-grid,
    .about-stats,
    .about-features,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .section {
        padding: 40px 0;
    }
    .reason-card {
        max-width: 280px;
        min-width: 280px;
        padding: 15px;
        flex-direction: column;
    }
    .reasons-grid {
        display: flex !important;
        flex-wrap: nowrap;
        overflow-y: auto;
        padding-bottom: 20px;
    }
    .reason-card__content p {
        font-size: 13px;
        line-height: 1.4;
    }
    .reason-card__content h4 {
        font-size: 14px;
    }
}


/* Unique Reasons Section */

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.reason-card {
    display: flex;
    gap: 20px;
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.reason-card__icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: #faf0e6;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reason-card__icon svg {
    width: 28px;
    height: 28px;
    fill: var(--theme-more-color);
}

.reason-card__content h4 {
    color: var(--theme-base-color);
    font-size: 16px;
    margin-bottom: 8px;
}

.reason-card__content p {
    font-size: 14px;
    margin-bottom: 0;
}

.dlmz-cooperation-section {
    max-width: 1200px;
    margin: 40px auto;
    background: #fff;
    padding: 60px 40px;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.dlmz-cooperation-title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    color: #1e2830;
    margin-bottom: 15px;
    line-height: 1.3;
}

.dlmz-cooperation-subtitle {
    font-size: 18px;
    color: #666;
    text-align: center;
    margin-bottom: 50px;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}


/* Контейнер для схемы */

.dlmz-process-container {
    position: relative;
    margin-top: 40px;
}


/* Соединительная линия между блоками (только на десктопе) */

.dlmz-process-line {
    position: absolute;
    top: 80px;
    left: 5%;
    right: 5%;
    height: 4px;
    background: linear-gradient(90deg, #da511e 0%, #da511e 16.66%, #e0e0e0 16.66%, #e0e0e0 33.33%, #da511e 33.33%, #da511e 50%, #e0e0e0 50%, #e0e0e0 66.66%, #da511e 66.66%, #da511e 83.33%, #e0e0e0 83.33%, #e0e0e0 100%);
    z-index: 0;
}


/* Сетка этапов */

.dlmz-process-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    position: relative;
    z-index: 1;
}


/* Карточка этапа */

.dlmz-process-step {
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.dlmz-process-step:hover .dlmz-step-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(218, 81, 30, 0.4);
}


/* Иконка этапа */

.dlmz-step-icon {
    width: 100px;
    height: 100px;
    background: #fff;
    border: 4px solid #da511e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 42px;
    color: #da511e;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(218, 81, 30, 0.2);
}


/* Номер этапа */

.dlmz-step-number {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #da511e 0%, #ff6a3d 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}


/* Заголовок этапа */

.dlmz-step-title {
    font-size: 17px;
    font-weight: 700;
    color: #1e2830;
    margin-bottom: 10px;
    line-height: 1.3;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}


/* Описание этапа */

.dlmz-step-description {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}


/* Преимущества схемы работы */

.dlmz-process-benefits {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid #f0f0f0;
}

.dlmz-benefits-title {
    font-size: 24px;
    font-weight: 700;
    color: #1e2830;
    text-align: center;
    margin-bottom: 30px;
}

.dlmz-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.dlmz-benefit-card {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 4px;
    border-left: 5px solid #da511e;
    transition: all 0.3s ease;
}

.dlmz-benefit-card:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transform: translateX(5px);
}

.dlmz-benefit-card strong {
    display: block;
    color: #1e2830;
    font-size: 17px;
    margin-bottom: 8px;
}

.dlmz-benefit-card p {
    color: #666;
    line-height: 1.6;
    font-size: 15px;
    margin: 0;
}


/* CTA кнопка */

.dlmz-process-cta {
    text-align: center;
    margin-top: 50px;
}

.dlmz-cta-button {
    display: inline-block;
    padding: 18px 50px;
    background: linear-gradient(135deg, #da511e 0%, #ff6a3d 100%);
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(218, 81, 30, 0.3);
}

.dlmz-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(218, 81, 30, 0.4);
}


/* ============================================
   АДАПТИВНЫЙ ДИЗАЙН
   ============================================ */

@media (max-width: 1024px) {
    .dlmz-process-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px 15px;
    }
    .dlmz-process-line {
        display: none;
        /* Убираем линию на планшетах */
    }
    .dlmz-step-icon {
        width: 90px;
        height: 90px;
        font-size: 38px;
    }
}

@media (max-width: 768px) {
    .dlmz-cooperation-section {
        padding: 40px 20px;
    }
    .dlmz-cooperation-title {
        font-size: 28px;
    }
    .dlmz-cooperation-subtitle {
        font-size: 16px;
    }
    .dlmz-process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px 15px;
    }
    .dlmz-step-icon {
        width: 80px;
        height: 80px;
        font-size: 32px;
    }
    .dlmz-step-number {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }
    .dlmz-step-title {
        font-size: 16px;
        min-height: auto;
    }
    .dlmz-step-description {
        font-size: 13px;
    }
    .dlmz-benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .dlmz-cta-button {
        padding: 15px 40px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .dlmz-cooperation-section {
        padding: 30px 15px;
    }
    .dlmz-cooperation-title {
        font-size: 24px;
    }
    .dlmz-process-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .dlmz-step-icon {
        width: 90px;
        height: 90px;
        font-size: 36px;
    }
}

.dlmz-applications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.dlmz-app-card {
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid #f0f0f0;
}

.dlmz-app-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-color: #da511e;
}

.dlmz-app-image {
    height: 200px;
    background: linear-gradient(135deg, #1e2830 0%, #2d3a46 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.dlmz-app-image:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.3;
}


/* Иконки для сфер применения */

.dlmz-app-image.industry-icon:before {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><g fill="%23da511e"><circle cx="100" cy="60" r="30"/><rect x="70" y="90" width="60" height="80"/><rect x="40" y="130" width="120" height="10"/></g></svg>');
}

.dlmz-app-image.construction-icon:before {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><g fill="%23da511e"><polygon points="100,40 40,100 160,100"/><rect x="70" y="100" width="60" height="80"/></g></svg>');
}

.dlmz-app-image.utilities-icon:before {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><g fill="%23da511e"><rect x="60" y="60" width="80" height="80" rx="10"/><circle cx="100" cy="100" r="20"/></g></svg>');
}

.dlmz-app-image.energy-icon:before {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><g fill="%23da511e"><polygon points="110,40 70,110 100,110 90,160 130,90 100,90"/></g></svg>');
}

.dlmz-app-image.transport-icon:before {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><g fill="%23da511e"><rect x="40" y="80" width="120" height="60" rx="5"/><circle cx="70" cy="150" r="15"/><circle cx="130" cy="150" r="15"/></g></svg>');
}

.dlmz-app-image.landscape-icon:before {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><g fill="%23da511e"><circle cx="100" cy="80" r="30"/><polygon points="100,110 70,160 130,160"/></g></svg>');
}

.dlmz-app-icon-symbol {
    position: relative;
    z-index: 1;
    font-size: 60px;
    color: #da511e;
}

.dlmz-app-content {
    padding: 25px;
    background: #f8f9fa;
}

.dlmz-app-card h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #1e2830;
    font-weight: 700;
}

.dlmz-app-card p {
    color: #666;
    line-height: 1.6;
    font-size: 15px;
}


/* Портфолио */

.dlmz-portfolio-card {
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid #f0f0f0;
}

.dlmz-portfolio-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-color: #da511e;
}

.dlmz-portfolio-img {
    height: 250px;
    background: linear-gradient(135deg, #e0e0e0 0%, #f5f5f5 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 18px;
    position: relative;
    overflow: hidden;
}

.dlmz-portfolio-img:before {
    content: '';
    position: absolute;
    width: 80%;
    height: 80%;
    background: linear-gradient(45deg, #ddd 25%, transparent 25%, transparent 75%, #ddd 75%, #ddd), linear-gradient(45deg, #ddd 25%, transparent 25%, transparent 75%, #ddd 75%, #ddd);
    background-size: 20px 20px;
    background-position: 0 0, 10px 10px;
    opacity: 0.3;
}

.dlmz-portfolio-content {
    padding: 25px;
    background: #f8f9fa;
}

.dlmz-portfolio-card h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1e2830;
    font-weight: 700;
}

.dlmz-portfolio-card p {
    color: #666;
    line-height: 1.6;
    font-size: 15px;
}

@media (min-width: 1200px) {
    .license-list-inner__list.grid-list {
        grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    }
}

@media (max-width: 768px) {
    .advantage-card {
        max-width: 280px;
    }
}