 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: system-ui, 'Segoe UI', 'Roboto', 'Inter', sans-serif;
        }

        body {
            background: #f5f7fb;
            color: #1a2c3e;
            line-height: 1.4;
        }

        /* хедер с навигацией */
        .header {
            background: linear-gradient(105deg, #0a2b38 0%, #124c62 100%);
            color: white;
            padding: 1.2rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
            box-shadow: 0 6px 14px rgba(0,0,0,0.08);
        }
        .logo h2 {


             
            font-size: 1.8rem;
            font-weight: 700;
            letter-spacing: 1px;
        }
        .logo p {
            font-size: 0.8rem;
            opacity: 0.8;
        }
        .nav-links {
            display: flex;
            gap: 2rem;
        }
        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: 0.2s;
        }
        .nav-links a:hover {
            color: #ffb347;
            text-decoration: underline;
        }
        .btn-outline-light {
            border:  white;
            padding: 0.5rem 1.2rem;
            border-radius: 40px;
            background: transparent;
            font-weight: 600;
            cursor: pointer;
            transition: 0.2s;
        }
        .btn-outline-light:hover {
            background: white;
            color: #124c62;
        }

        /* герой секция */
        .hero {
            background: #ffffff;
            padding: 2.5rem 2rem;
            text-align: center;
            border-bottom: 1px solid #e2edf2;
        }
        .hero h1 {
            font-size: 2.2rem;
            color: #0e4b64;
            margin-bottom: 0.8rem;
        }
        .hero-stats {
            display: flex;
            justify-content: center;
            gap: 3rem;
            margin: 2rem 0 1rem;
            flex-wrap: wrap;
        }
        .stat-item {
            text-align: center;
        }
        .stat-number {
            font-size: 2.2rem;
            font-weight: 800;
            color: #e67e22;
        }
        .stat-label {
            font-size: 0.9rem;
            color: #3f6b7c;
        }

        /* контейнер */
        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 2rem 1.5rem;
        }

        /* секция услуг — две основные карточки (как на оригинале) + сетка доп услуг */
        .section-title {
            font-size: 1.9rem;
            font-weight: 700;
            margin: 2rem 0 1rem;
            color: #0f4b63;
            border-left: 5px solid #e67e22;
            padding-left: 1rem;
        }
        .service-highlight {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin: 2rem 0;
        }
        .card {
            background: white;
            border-radius: 28px;
            padding: 1.8rem;
            box-shadow: 0 8px 20px rgba(0,0,0,0.05);
            transition: all 0.25s;
            border: 1px solid #e0edf2;
            cursor: pointer;
        }
        .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 30px rgba(0,0,0,0.1);
            border-color: #cbdde6;
        }
        .card h3 {
            font-size: 1.6rem;
            margin-bottom: 0.75rem;
            color: #135d78;
        }
        .price-tag {
            font-size: 1.3rem;
            font-weight: 800;
            background: #f0f6fa;
            display: inline-block;
            padding: 0.2rem 1rem;
            border-radius: 40px;
            margin: 0.5rem 0;
        }
        .detail-btn {
            background: none;
            border: none;
            color: #e67e22;
            font-weight: 600;
            margin-top: 1rem;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            cursor: pointer;
            font-size: 0.9rem;
        }
        .detail-btn:after {
            content: "→";
            transition: transform 0.2s;
        }
        .detail-btn:hover:after {
            transform: translateX(5px);
        }

        /* сетка торгового оборудования */
        .equipment-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
            gap: 1rem;
            margin: 1.5rem 0;
        }
        .equip-item {
            background: #f8fafc;
            border-radius: 60px;
            padding: 0.6rem 1rem;
            text-align: center;
            font-weight: 500;
            border: 1px solid #d9e6ef;
        }

        /* консультация */
        .consult-banner {
            background: linear-gradient(135deg, #e9f0f5, #ffffff);
            border-radius: 32px;
            padding: 2rem;
            margin: 2rem 0;
            text-align: center;
            border: 1px solid #cbe1ea;
        }
        .consult-banner h3 {
            font-size: 1.8rem;
            color: #0f4b63;
        }
        .btn-primary {
            background: #e67e22;
            border: none;
            color: white;
            padding: 0.8rem 2rem;
            border-radius: 60px;
            font-weight: bold;
            font-size: 1rem;
            margin-top: 1rem;
            cursor: pointer;
            transition: 0.2s;
        }
        .btn-primary:hover {
            background: #c95f0e;
            transform: scale(1.02);
        }

        footer {
            background: #0e2e3b;
            color: #cbdde6;
            text-align: center;
            padding: 1.5rem;
            font-size: 0.8rem;
            margin-top: 2rem;
        }

        /* модальное окно */
        .modal {
            display: none;
            position: fixed;
            top: 0; left: 0;
            width: 100%; height: 100%;
            background: rgba(0,0,0,0.75);
            align-items: center;
            justify-content: center;
            z-index: 1000;
            backdrop-filter: blur(3px);
        }
        .modal-card {
            background: white;
            max-width: 500px;
            width: 90%;
            border-radius: 32px;
            padding: 1.8rem;
            position: relative;
            animation: fadeUp 0.2s ease;
        }
        @keyframes fadeUp {
            from { opacity: 0; transform: translateY(20px);}
            to { opacity: 1; transform: translateY(0);}
        }
        .modal-header {
            font-size: 1.7rem;
            font-weight: 700;
            color: #0f4b63;
            border-left: 4px solid #e67e22;
            padding-left: 1rem;
        }
        .close-modal {
            position: absolute;
            top: 1rem;
            right: 1.5rem;
            font-size: 1.8rem;
            cursor: pointer;
            color: #819eae;
        }
        .modal-footer-btn {
            background: #e67e22;
            color: white;
            border: none;
            padding: 0.5rem 1.5rem;
            border-radius: 40px;
            margin-top: 1rem;
            cursor: pointer;
        }
        @media (max-width: 700px) {
            .header {
                flex-direction: column;
                text-align: center;
            }
            .hero h1 {
                font-size: 1.7rem;
            }
        }