<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>SmartTools — Приборы диагностики и наладки</title>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap" rel="stylesheet">
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.12.2/gsap.min.js"></script>
<style>
:root {
--bg-dark: #0f151f;
--bg-panel: #161d2b;
--text-main: #ffffff;
--text-muted: #94a3b8;
--accent-green: #4ade80;
--accent-green-glow: rgba(74, 222, 128, 0.5);
--accent-blue: #60a5fa;
--accent-yellow: #facc15;
--accent-orange: #fb923c;
--accent-teal: #2dd4bf;
--border-color: rgba(255, 255, 255, 0.1);
}
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: 'Inter', sans-serif;
background-color: var(--bg-dark);
color: var(--text-main);
overflow-x: hidden;
position: relative;
min-height: 100vh;
display: flex;
flex-direction: column;
}
/* Футуристическая сетка на фоне */
.bg-grid {
position: fixed;
top: 0;
left: 0;
width: 200%;
height: 200%;
background-image:
linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
background-size: 40px 40px;
z-index: -2;
pointer-events: none;
}
.bg-nodes {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: radial-gradient(circle at 15% 50%, rgba(74, 222, 128, 0.05) 0%, transparent 50%),
radial-gradient(circle at 85% 30%, rgba(96, 165, 250, 0.05) 0%, transparent 50%);
z-index: -1;
pointer-events: none;
}
.container {
max-width: 1440px;
margin: 0 auto;
padding: 0 40px;
width: 100%;
}
/* HEADER */
header {
display: flex;
justify-content: space-between;
align-items: center;
padding: 20px 0;
border-bottom: 1px solid var(--border-color);
}
.logo {
display: flex;
align-items: center;
gap: 10px;
font-size: 24px;
font-weight: 600;
letter-spacing: -0.5px;
}
.logo svg {
width: 36px;
height: 36px;
}
nav {
display: flex;
align-items: center;
gap: 30px;
}
nav a {
color: var(--text-main);
text-decoration: none;
font-size: 14px;
font-weight: 500;
transition: all 0.3s ease;
display: flex;
align-items: center;
gap: 8px;
}
nav a:hover {
color: var(--accent-green);
text-shadow: 0 0 10px rgba(74, 222, 128, 0.5);
}
.nav-catalog {
background: rgba(255, 255, 255, 0.05);
padding: 8px 16px;
border-radius: 20px;
border: 1px solid rgba(255, 255, 255, 0.1);
}
.header-actions {
display: flex;
align-items: center;
gap: 24px;
}
.btn {
padding: 12px 24px;
border-radius: 30px;
font-size: 14px;
font-weight: 600;
cursor: pointer;
transition: all 0.3s ease;
text-decoration: none;
display: inline-flex;
align-items: center;
justify-content: center;
}
.btn-outline {
background: transparent;
color: var(--text-main);
border: 1px solid var(--text-main);
}
.btn-outline:hover {
background: rgba(255, 255, 255, 0.1);
box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
}
.phone {
font-size: 15px;
font-weight: 600;
display: flex;
align-items: center;
gap: 8px;
}
/* HERO SECTION */
.hero {
position: relative;
padding: 80px 0;
display: flex;
align-items: center;
min-height: 600px;
}
.hero-content {
width: 55%;
position: relative;
z-index: 2;
}
.hero h1 {
font-size: 42px;
font-weight: 700;
line-height: 1.2;
margin-bottom: 24px;
text-transform: uppercase;
letter-spacing: -0.5px;
}
.hero p {
font-size: 16px;
line-height: 1.6;
color: var(--text-muted);
margin-bottom: 40px;
max-width: 90%;
}
.hero-buttons {
display: flex;
gap: 20px;
}
.btn-primary {
background: linear-gradient(90deg, #4ade80, #2dd4bf);
color: #022c22;
border: none;
box-shadow: 0 0 20px rgba(74, 222, 128, 0.4);
text-transform: uppercase;
letter-spacing: 0.5px;
}
.btn-primary:hover {
box-shadow: 0 0 30px rgba(74, 222, 128, 0.7);
transform: translateY(-2px);
}
.hero-image-container {
position: absolute;
right: -40px;
top: 0;
width: 55%;
height: 100%;
z-index: 1;
}
/* Используем указанный файл */
.hero-image {
width: 100%;
height: 100%;
object-fit: cover;
object-position: right center;
mask-image: linear-gradient(to right, transparent, black 30%);
-webkit-mask-image: linear-gradient(to right, transparent, black 30%);
opacity: 0.8;
}
/* FEATURES GRID */
.features {
padding: 20px 0 40px;
position: relative;
z-index: 2;
}
.features-grid {
display: grid;
grid-template-columns: repeat(5, 1fr);
gap: 16px;
margin-bottom: 12px;
}
.card {
background: rgba(22, 29, 43, 0.7);
backdrop-filter: blur(10px);
border-radius: 12px;
padding: 24px;
border: 1px solid var(--border-color);
display: flex;
flex-direction: column;
gap: 20px;
transition: transform 0.3s ease;
position: relative;
overflow: hidden;
min-height: 220px;
}
.card:hover {
transform: translateY(-5px);
}
.card::before {
content: '';
position: absolute;
top: 0; left: 0; right: 0; bottom: 0;
border-radius: 12px;
pointer-events: none;
box-shadow: inset 0 0 20px var(--glow-color, transparent);
opacity: 0.5;
transition: opacity 0.3s ease;
}
.card:hover::before {
opacity: 1;
}
.card-green { --glow-color: rgba(74, 222, 128, 0.2); border-color: rgba(74, 222, 128, 0.3); }
.card-blue { --glow-color: rgba(96, 165, 250, 0.2); border-color: rgba(96, 165, 250, 0.3); }
.card-yellow { --glow-color: rgba(250, 204, 21, 0.2); border-color: rgba(250, 204, 21, 0.3); }
.card-orange { --glow-color: rgba(251, 146, 60, 0.2); border-color: rgba(251, 146, 60, 0.3); }
.card-teal { --glow-color: rgba(45, 212, 191, 0.2); border-color: rgba(45, 212, 191, 0.3); }
.card-header {
display: flex;
justify-content: space-between;
align-items: center;
}
.card-icon {
display: flex;
gap: 12px;
}
.card-icon svg {
width: 32px; height: 32px;
}
.card h3 {
font-size: 14px;
text-transform: uppercase;
font-weight: 600;
margin-top: 10px;
letter-spacing: 0.5px;
}
.card p {
font-size: 13px;
color: var(--text-muted);
line-height: 1.5;
margin-top: auto;
}
.footnote {
text-align: right;
font-size: 12px;
color: var(--text-muted);
padding-right: 10px;
}
/* CUSTOM SOLUTIONS FORM */
.solutions {
padding: 40px 0;
position: relative;
z-index: 2;
}
.solutions-box {
background: rgba(22, 29, 43, 0.5);
border: 1px solid rgba(255, 255, 255, 0.15);
border-radius: 16px;
padding: 32px 40px;
display: flex;
align-items: center;
justify-content: space-between;
backdrop-filter: blur(10px);
}
.solutions-info {
display: flex;
align-items: center;
gap: 24px;
max-width: 50%;
}
.solutions-icon svg {
width: 48px;
height: 48px;
stroke: var(--text-muted);
}
.solutions-text h2 {
font-size: 18px;
font-weight: 600;
margin-bottom: 8px;
text-transform: uppercase;
}
.solutions-text p {
font-size: 14px;
color: var(--text-muted);
line-height: 1.4;
}
.solutions-form {
display: flex;
gap: 16px;
align-items: center;
}
.solutions-form input {
background: rgba(255, 255, 255, 0.05);
border: 1px solid rgba(255, 255, 255, 0.2);
padding: 14px 20px;
border-radius: 8px;
color: white;
width: 320px;
font-family: inherit;
font-size: 14px;
outline: none;
transition: border-color 0.3s;
}
.solutions-form input:focus {
border-color: var(--accent-green);
}
.btn-white {
background: #ffffff;
color: var(--bg-dark);
border: none;
padding: 14px 24px;
border-radius: 8px;
font-weight: 600;
cursor: pointer;
transition: all 0.3s ease;
text-transform: uppercase;
font-size: 13px;
}
.btn-white:hover {
background: #e2e8f0;
transform: translateY(-2px);
}
/* FOOTER */
footer {
margin-top: auto;
padding: 24px 0;
border-top: 1px solid var(--border-color);
background: var(--bg-dark);
position: relative;
z-index: 2;
}
.footer-content {
display: flex;
justify-content: space-between;
align-items: center;
font-size: 12px;
color: var(--text-muted);
}
.footer-links {
display: flex;
gap: 20px;
}
.footer-links a {
color: var(--text-muted);
text-decoration: none;
transition: color 0.3s;
}
.footer-links a:hover {
color: white;
text-decoration: underline;
}
/* SVG Colors for cards */
.svg-green { stroke: var(--accent-green); fill: none; stroke-width: 1.5; }
.svg-blue { stroke: var(--accent-blue); fill: none; stroke-width: 1.5; }
.svg-yellow { stroke: var(--accent-yellow); fill: none; stroke-width: 1.5; }
.svg-orange { stroke: var(--accent-orange); fill: none; stroke-width: 1.5; }
.svg-teal { stroke: var(--accent-teal); fill: none; stroke-width: 1.5; }
</style>
</head>
<body>
<div class="bg-grid"></div>
<div class="bg-nodes"></div>
<div class="container">
<!-- HEADER -->
<header class="gsap-header">
<div class="logo">
<svg viewBox="0 0 100 100" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M20 50 C 20 30, 40 30, 50 30 L 80 30" stroke="#4ade80" stroke-width="8" stroke-linecap="round"/>
<path d="M50 30 L 50 80" stroke="#4ade80" stroke-width="8" stroke-linecap="round"/>
<path d="M20 70 C 40 70, 40 50, 60 50" stroke="#ffffff" stroke-width="8" stroke-linecap="round"/>
</svg>
SmartTools
</div>
<nav>
<a href="#" class="nav-catalog">
<svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><rect x="3" y="3" width="7" height="7"></rect><rect x="14" y="3" width="7" height="7"></rect><rect x="14" y="14" width="7" height="7"></rect><rect x="3" y="14" width="7" height="7"></rect></svg>
Каталог
</a>
<a href="#">Услуги <svg width="12" height="12" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><path d="M6 9l6 6 6-6"/></svg></a>
<a href="#">Учебный Центр</a>
<a href="#">О Компании</a>
<a href="#">Новости</a>
<a href="#">Контакты</a>
</nav>
<div class="header-actions">
<a href="#" class="btn btn-outline">Заказать демонстрацию</a>
<div class="phone">
<svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><path d="M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z"></path></svg>
+7 (495) 191-73-74
</div>
</div>
</header>
<!-- HERO -->
<section class="hero">
<div class="hero-content">
<h1 class="gsap-hero-text">СМАРТТУЛЗ — РАЗРАБОТКА И ПРОИЗВОДСТВО ПРИБОРОВ ДИАГНОСТИКИ И НАЛАДКИ</h1>
<p class="gsap-hero-text">Системы лазерной центровки валов, виброанализаторы, индукционные нагреватели отечественного производства с адаптацией под задачи заказчика. Повышайте надежность оборудования с нами.</p>
<div class="hero-buttons gsap-hero-btn">
<a href="#" class="btn btn-primary">ОТКРЫТЬ КАТАЛОГ</a>
<a href="#" class="btn btn-outline" style="text-transform: uppercase;">СВЯЗАТЬСЯ С НАМИ</a>
</div>
</div>
<div class="hero-image-container gsap-hero-image">
<img src="image.png" alt="Diagnostic Equipment" class="hero-image">
</div>
</section>
<!-- FEATURES -->
<section class="features">
<div class="features-grid">
<!-- Card 1 -->
<div class="card card-green gsap-card">
<div class="card-icon">
<svg class="svg-green" viewBox="0 0 24 24"><path d="M2 12h4l3-9 5 18 3-9h5"/></svg>
<svg class="svg-green" viewBox="0 0 24 24"><circle cx="12" cy="12" r="3"/><path d="M19.4 15a1.65 1.65 0 0 0 .33 1.82l.06.06a2 2 0 0 1 0 2.83 2 2 0 0 1-2.83 0l-.06-.06a1.65 1.65 0 0 0-1.82-.33 1.65 1.65 0 0 0-1 1.51V21a2 2 0 0 1-2 2 2 2 0 0 1-2-2v-.09A1.65 1.65 0 0 0 9 19.4a1.65 1.65 0 0 0-1.82.33l-.06.06a2 2 0 0 1-2.83 0 2 2 0 0 1 0-2.83l.06-.06a1.65 1.65 0 0 0 .33-1.82 1.65 1.65 0 0 0-1.51-1H3a2 2 0 0 1-2-2 2 2 0 0 1 2-2h.09A1.65 1.65 0 0 0 4.6 9a1.65 1.65 0 0 0-.33-1.82l-.06-.06a2 2 0 0 1 0-2.83 2 2 0 0 1 2.83 0l.06.06a1.65 1.65 0 0 0 1.82.33H9a1.65 1.65 0 0 0 1-1.51V3a2 2 0 0 1 2-2 2 2 0 0 1 2 2v.09a1.65 1.65 0 0 0 1 1.51 1.65 1.65 0 0 0 1.82-.33l.06-.06a2 2 0 0 1 2.83 0 2 2 0 0 1 0 2.83l-.06.06a1.65 1.65 0 0 0-.33 1.82V9a1.65 1.65 0 0 0 1.51 1H21a2 2 0 0 1 2 2 2 2 0 0 1-2 2h-.09a1.65 1.65 0 0 0-1.51 1z"/></svg>
</div>
<h3>ВИБРОДИАГНОСТИКА</h3>
<p>4-х канальные виброанализаторы, сборщики данных, онлайн мониторинг.</p>
</div>
<!-- Card 2 -->
<div class="card card-blue gsap-card">
<div class="card-icon">
<svg class="svg-blue" viewBox="0 0 24 24"><circle cx="12" cy="12" r="3"/><path d="M12 2v7M12 15v7M2 12h7M15 12h7M4.93 4.93l4.95 4.95M14.12 14.12l4.95 4.95M4.93 19.07l4.95-4.95M14.12 9.88l4.95-4.95"/></svg>
<svg class="svg-blue" viewBox="0 0 24 24"><path d="M4 9h16M4 15h16M9 4v16M15 4v16M2 12h20"/></svg>
</div>
<h3>ЛАЗЕРНАЯ ЦЕНТРОВКА</h3>
<p>Высокоточные системы центровки валов, выверка геометрии станков.</p>
</div>
<!-- Card 3 -->
<div class="card card-yellow gsap-card">
<div class="card-icon">
<svg class="svg-yellow" viewBox="0 0 24 24"><path d="M12 2.69l5.66 5.66a8 8 0 1 1-11.31 0z"/></svg>
<svg class="svg-yellow" viewBox="0 0 24 24"><circle cx="12" cy="12" r="8"/><circle cx="12" cy="12" r="3"/><path d="M12 4v2M12 18v2M4 12h2M18 12h2M6.34 6.34l1.42 1.42M16.24 16.24l1.42 1.42M6.34 17.66l1.42-1.42M16.24 7.76l1.42-1.42"/></svg>
</div>
<h3>КОНТРОЛЬ СМАЗКИ</h3>
<p>Контроль чистоты масел, приборы для диагностики подшипников.</p>
</div>
<!-- Card 4 -->
<div class="card card-orange gsap-card">
<div class="card-icon">
<svg class="svg-orange" viewBox="0 0 24 24"><rect x="3" y="5" width="18" height="14" rx="2"/><path d="M8 12h4"/><path d="M16 12h.01"/></svg>
<svg class="svg-orange" viewBox="0 0 24 24"><path d="M4 10h16M4 14h16M6 6h12a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2zM2 12h2M20 12h2"/></svg>
</div>
<h3>ТЕРМОДИАГНОСТИКА</h3>
<p>Промышленные тепловизоры, обследование электрооборудования.</p>
</div>
<!-- Card 5 -->
<div class="card card-teal gsap-card">
<div class="card-icon">
<svg class="svg-teal" viewBox="0 0 24 24"><path d="M4 12h3s1-5 4-5 2 3 2 5 1 5 4 5 3-3 3-5h3"/></svg>
<svg class="svg-teal" viewBox="0 0 24 24"><circle cx="12" cy="12" r="9"/><circle cx="12" cy="12" r="4"/><path d="M12 3v1M12 20v1M3 12h1M20 12h1M5.6 5.6l.7.7M17.7 17.7l.7.7M5.6 18.4l.7-.7M17.7 6.3l.7-.7"/></svg>
</div>
<h3>НАГРЕВАТЕЛИ & МОНТАЖ</h3>
<p>Индукционные нагреватели ИНП, гидравлический инструмент для РЖД.</p>
</div>
</div>
<div class="footnote">*Все приборы в каталоге разделены по цветовой гамме.</div>
</section>
<!-- CUSTOM SOLUTIONS -->
<section class="solutions gsap-solutions">
<div class="solutions-box">
<div class="solutions-info">
<div class="solutions-icon">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round">
<path d="M12 2l-6 15h12z"/><circle cx="12" cy="17" r="2"/><path d="M9 22h6"/><path d="M3 10h2M19 10h2"/>
</svg>
</div>
<div class="solutions-text">
<h2>ИНДИВИДУАЛЬНЫЕ РЕШЕНИЯ</h2>
<p>Разрабатываем нестандартные инженерные системы под Ваши ТУ. Есть сложная задача? Опишите ее в форме ниже.</p>
</div>
</div>
<div class="solutions-form">
<input type="text" placeholder="Опишите вашу задачу...">
<button class="btn-white">ЗАПРОСИТЬ РАЗРАБОТКУ</button>
</div>
</div>
</section>
<!-- FOOTER -->
<footer class="gsap-footer">
<div class="footer-content">
<div class="date">3 октября 2026</div>
<div class="copyright">© 2026 СМАРТТУЛЗ</div>
<div class="footer-links">
<a href="#">Лицензия</a>
<a href="#">Предприятия</a>
<a href="#">Контакты</a>
</div>
</div>
</footer>
</div>
<!-- GSAP Animations -->
<script>
document.addEventListener("DOMContentLoaded", (event) => {
gsap.registerPlugin();
const tl = gsap.timeline();
// Background nodes slow pan animation
gsap.to(".bg-grid", {
backgroundPosition: "40px 40px",
duration: 4,
repeat: -1,
ease: "linear"
});
// Header Load
tl.from(".gsap-header", {
y: -30,
opacity: 0,
duration: 0.8,
ease: "power2.out"
});
// Hero content mask/fade reveal
tl.from(".gsap-hero-text", {
y: 30,
opacity: 0,
duration: 1,
stagger: 0.2,
ease: "power3.out"
}, "-=0.4");
// Buttons fade in
tl.from(".gsap-hero-btn .btn", {
y: 20,
opacity: 0,
duration: 0.6,
stagger: 0.15,
ease: "power2.out"
}, "-=0.5");
// Hero Image
tl.from(".gsap-hero-image", {
x: 50,
opacity: 0,
duration: 1.5,
ease: "power2.out"
}, "-=1");
// Features staggered appearance
tl.from(".gsap-card", {
y: 40,
opacity: 0,
duration: 0.8,
stagger: 0.1,
ease: "power2.out"
}, "-=0.5");
// Bottom elements
tl.from(".gsap-solutions", {
y: 30,
opacity: 0,
duration: 0.8,
ease: "power2.out"
}, "-=0.4");
tl.from(".gsap-footer", {
opacity: 0,
duration: 0.8,
ease: "power2.out"
}, "-=0.4");
// Continuous pulsing glow on cards border
const cards = document.querySelectorAll('.card');
cards.forEach(card => {
// To keep the performance high, we use CSS transitions on hover,
// but GSAP can add a subtle idle breathing effect to all cards
gsap.to(card, {
boxShadow: "0 0 10px rgba(255,255,255,0.02)",
duration: 2 + Math.random(),
yoyo: true,
repeat: -1,
ease: "sine.inOut"
});
});
});
</script>
</body>
</html>