* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background: linear-gradient(135deg, #f5f7fa 0%, #e4edf5 100%);
    color: #333;
    line-height: 1.6;
}

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

/* Шапка */
header {
    background: linear-gradient(90deg, #062270 0%, #1a3a6c 100%);
    color: white;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.logo img {
    width: 90%;
    height: auto;
}

.company-info h1 {
    font-size: 1.5rem;
    margin-bottom: 5px;
    color: white;
}

.company-info p {
    font-size: 0.9rem;
    opacity: 0.9;
    color: #e0e0e0;
}

.contact-info {
    text-align: right;
}

.contact-info .phone {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 5px;
    display: block;
    color: #ffffff;
    text-decoration: none;
}

.contact-info .email {
    font-size: 0.9rem;
    color: #FFA726;
    text-decoration: none;
}

/* Герой-секция */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://pionero2.ru/wp-content/uploads/2024/12/slide52.png');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 0;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.cta-button {
    display: inline-block;
    background: linear-gradient(90deg, #008110 0%, #00660d 100%);
    color: white;
    padding: 15px 35px;
    font-size: 1.2rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    margin: 10px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    background: linear-gradient(90deg, #00660d 0%, #008110 100%);
}

.whatsapp-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(90deg, #25D366 0%, #128C7E 100%);
    color: white;
    padding: 15px 35px;
    font-size: 1.2rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    margin: 10px;
}

.whatsapp-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    background: linear-gradient(90deg, #128C7E 0%, #25D366 100%);
}

/* Секции */
section {
    padding: 60px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    color: #062270;
    position: relative;
}

.section-title h2 {
    font-size: 2.2rem;
    display: inline-block;
    padding-bottom: 15px;
}

.section-title h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #A64E00 0%, #FF8C00 100%);
    border-radius: 2px;
}

/* Преимущества */
.benefits {
    background-color: white;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.benefit-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: center;
    border-top: 4px solid #A64E00;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    font-size: 3rem;
    color: #062270;
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #062270;
}

/* Товары */
.products {
    background: linear-gradient(135deg, #e4edf5 0%, #d1e2f0 100%);
}

/* Стили для таблицы товаров */
.products-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(6, 34, 112, 0.1);
    font-size: 1.05rem;
}

.products-table thead {
    background: linear-gradient(135deg, #1a3a6c 0%, #062270 100%);
}

.products-table th {
    padding: 18px 25px;
    text-align: left;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    position: relative;
}

.products-table th:after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 60%;
    width: 1px;
    background: rgba(255, 255, 255, 0.2);
}

.products-table th:last-child:after {
    display: none;
}

.products-table td {
    padding: 16px 25px;
    border-bottom: 1px solid #f0f4f9;
    color: #333;
    transition: all 0.3s ease;
}

.products-table tbody tr {
    transition: all 0.3s ease;
}

.products-table tbody tr:nth-child(even) {
    background-color: #f8fafd;
}

.products-table tbody tr:last-child td {
    border-bottom: none;
}

.products-table tbody tr:hover {
    background-color: #edf4ff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(6, 34, 112, 0.08);
}

.products-table tbody tr:hover td {
    color: #062270;
}

.product-name {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
}

.product-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: #eef5ff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a3a6c;
    font-size: 18px;
}

.price-tag {
    background: linear-gradient(135deg, #008110 0%, #00660d 100%);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-weight: 600;
    display: inline-block;
}

.custom-price {
    background: linear-gradient(135deg, #FF8C00 0%, #A64E00 100%);
}

.discount-note {
    text-align: center;
    margin-top: 25px;
    font-style: italic;
    color: #A64E00;
    font-weight: 500;
    background: #fff8e6;
    padding: 12px;
    border-radius: 8px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    border-left: 4px solid #FF8C00;
}

/* Услуги - 3x2 grid */
.services {
    background-color: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

.service-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border-left: 4px solid #008110;
}

.service-card:hover {
    background: linear-gradient(135deg, #e9ecef 0%, #f8f9fa 100%);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.service-card i {
    font-size: 2.8rem;
    color: #008110;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #062270;
}

.service-card p {
    margin-bottom: 15px;
    color: #444;
}

.service-details {
    text-align: left;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px dashed #ddd;
}

.service-details li {
    margin-bottom: 8px;
    padding-left: 5px;
}

.service-details li:before {
    content: "•";
    color: #A64E00;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

/* Контактная информация */
.contact-info-section {
    background: linear-gradient(135deg, #062270 0%, #1a3a6c 100%);
    color: white;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.contact-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

@media (max-width: 768px) {
    .contact-details {
        grid-template-columns: 1fr;
    }
}

.contact-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    color: white;
}

.contact-icon {
    font-size: 1.5rem;
    color: #FFA726;
    min-width: 30px;
    padding-top: 5px;
}

.contact-text h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
    color: #FFA726;
}

.contact-text p,
.contact-text a {
    color: white;
    text-decoration: none;
}

.contact-text a:hover {
    text-decoration: underline;
}

/* Блок карты */
.delivery-section {
    padding: 0;
    height: 100vh;
    position: relative;
    background: none;
}

.map-container {
    width: 100%;
    height: 100%;
    position: relative;
    background: #f0f4f9;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-overlay {
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    z-index: 10;
    text-align: center;
    padding: 15px;
    background: rgba(255, 255, 255, 0.85);
    max-width: 90%;
    margin: 0 auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.map-header h1 {
    font-size: 1.8rem;
    margin-bottom: 8px;
    color: #A64E00;
}

.map-header h3 {
    font-size: 1.2rem;
    font-weight: normal;
    color: #062270;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    transition: all 0.3s ease;
    position: absolute;
    top: 0;
    left: 0;
}

.map-iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
}
/* Подвал */
footer {
    background: #051b4d;
    color: #a0b9d9;
    padding: 40px 0 20px;
    text-align: center;
}

.footer-content {
    max-width: 800px;
    margin: 0 auto;
}

.requisites {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.requisite-item {
    text-align: center;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.requisite-item h4 {
    color: #FFA726;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.working-since {
    margin: 20px 0;
    font-size: 1.1rem;
    color: #FFA726;
    font-weight: bold;
}

.copyright {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
}

/* Адаптивность */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 2rem;
    }

    .cta-button,
    .whatsapp-button {
        display: block;
        margin: 15px auto;
        max-width: 300px;
    }

    .map-container {
        height: 500px;
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .logo-section {
        justify-content: center;
    }

    .contact-info {
        text-align: center;
    }

    .section-title h2 {
        font-size: 1.8rem;
    }

    .products-table {
        font-size: 0.9rem;
    }

    .products-table th,
    .products-table td {
        padding: 12px 15px;
    }

    .map-container {
        height: 400px;
    }

    .delivery-section {
        padding: 50px 0 0;
    }

    .delivery-content {
        padding-bottom: 40px;
    }

    .map-placeholder h3 {
        font-size: 1.4rem;
    }

    .map-placeholder p {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 70px 0;
    }

    .hero h1 {
        font-size: 1.7rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .section-title h2 {
        font-size: 1.6rem;
    }

    .products-table {
        display: block;
        overflow-x: auto;
    }

    .map-container {
        height: 300px;
    }

    .map-header h1 {
        font-size: 1.8rem;
    }

    .map-header h3 {
        font-size: 1.2rem;
    }

    .map-placeholder h3 {
        font-size: 1.2rem;
    }

    .map-placeholder p {
        font-size: 0.9rem;
    }
}

/* SEO улучшения - скрытые тексты для ключевых слов */
.seo-keywords {
    position: absolute;
    left: -9999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}