Загрузка данных
/* style.css — отдельный файл стилей */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Inter', sans-serif;
background: #f5f7fb;
color: #1e293b;
line-height: 1.5;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 24px;
}
/* Шапка */
.header {
background: #0f172a;
color: white;
padding: 40px 0 32px;
border-bottom: 4px solid #eab308;
}
.company-header {
text-align: center;
margin-bottom: 24px;
}
.company-name {
font-size: 3rem;
font-weight: 800;
letter-spacing: -0.02em;
background: linear-gradient(135deg, #fff, #cbd5e1);
background-clip: text;
-webkit-background-clip: text;
color: transparent;
}
.company-sub {
font-size: 1.1rem;
font-weight: 500;
color: #94a3b8;
margin-top: 6px;
}
.production-intro {
text-align: center;
border-top: 1px solid #334155;
padding-top: 24px;
margin-top: 8px;
}
.production-text {
font-size: 1.3rem;
font-weight: 500;
color: #e2e8f0;
}
.factory-icon {
margin-top: 12px;
font-size: 2rem;
color: #eab308;
display: flex;
justify-content: center;
gap: 20px;
}
/* Изображение производственной линии (стилизованное) */
.factory-image {
margin: 40px 0 32px;
}
.factory-placeholder {
background: linear-gradient(145deg, #e2e8f0, #cbd5e1);
border-radius: 32px;
padding: 48px 20px;
text-align: center;
box-shadow: 0 8px 16px rgba(0,0,0,0.05);
display: flex;
flex-direction: column;
align-items: center;
gap: 16px;
}
.factory-placeholder i {
font-size: 4rem;
color: #0f172a;
}
.factory-placeholder span {
font-weight: 600;
font-size: 1.2rem;
color: #1e293b;
background: white;
padding: 6px 18px;
border-radius: 40px;
}
/* Секции */
.section {
margin: 48px 0;
}
.section-title {
font-size: 1.8rem;
font-weight: 700;
margin-bottom: 24px;
padding-bottom: 10px;
border-bottom: 3px solid #eab308;
display: inline-block;
letter-spacing: -0.01em;
}
/* Таблица */
.table-wrapper {
overflow-x: auto;
border-radius: 20px;
background: white;
box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
.styled-table {
width: 100%;
border-collapse: collapse;
font-size: 1rem;
min-width: 500px;
}
.styled-table thead tr {
background-color: #1e293b;
color: white;
text-align: left;
}
.styled-table th,
.styled-table td {
padding: 14px 20px;
border-bottom: 1px solid #e2e8f0;
}
.styled-table tbody tr:hover {
background-color: #f8fafc;
}
.icon-cell {
text-align: center;
font-size: 1.8rem;
color: #eab308;
}
.specs-table td {
font-size: 0.9rem;
}
/* Услуги: сетка с иконками (изображениями) */
.services-grid {
display: flex;
flex-wrap: wrap;
gap: 28px;
justify-content: center;
margin-top: 20px;
}
.service-card {
background: white;
border-radius: 28px;
padding: 28px 20px;
flex: 1;
min-width: 220px;
text-align: center;
transition: transform 0.2s, box-shadow 0.2s;
box-shadow: 0 6px 14px rgba(0,0,0,0.03);
border: 1px solid #e2e8f0;
}
.service-card:hover {
transform: translateY(-6px);
box-shadow: 0 20px 30px -12px rgba(0,0,0,0.1);
}
.service-icon {
font-size: 2.8rem;
color: #eab308;
margin-bottom: 16px;
}
.service-card h3 {
font-size: 1.35rem;
margin-bottom: 10px;
font-weight: 600;
}
.service-card p {
color: #475569;
font-size: 0.9rem;
}
/* Футер */
.footer {
background: #0f172a;
color: #cbd5e1;
padding: 32px 0;
margin-top: 48px;
text-align: center;
}
.footer-inner p {
margin: 6px 0;
}
.footer-note {
font-weight: 600;
color: #eab308;
letter-spacing: 0.3px;
}
/* Адаптивность */
@media (max-width: 768px) {
.container {
padding: 0 20px;
}
.company-name {
font-size: 2.2rem;
}
.production-text {
font-size: 1rem;
}
.section-title {
font-size: 1.5rem;
}
.styled-table th, .styled-table td {
padding: 10px 12px;
}
.service-card {
min-width: 100%;
}
}