Интерактивная схема интеграций
Реклама ●
Лендинг ●
CRM ●
Аналитика ●
Выберите блок для просмотра деталей
Нажмите на любой блок схемы, чтобы увидеть подробную информацию о настройке и интеграции.
.romi-calculator {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: white;
padding: 30px;
border-radius: 15px;
max-width: 600px;
margin: 20px auto;
box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.calculator-inputs label {
display: block;
margin-bottom: 5px;
font-weight: bold;
}
.calculator-inputs input {
width: 100%;
padding: 12px;
margin-bottom: 15px;
border: none;
border-radius: 8px;
font-size: 16px;
}
.calculator-results {
background: rgba(255,255,255,0.1);
padding: 20px;
border-radius: 10px;
margin-top: 20px;
}
.result-item {
display: flex;
justify-content: space-between;
margin-bottom: 10px;
font-size: 18px;
}
.result-item.highlight {
font-size: 24px;
font-weight: bold;
color: #ffd700;
border-top: 2px solid rgba(255,255,255,0.3);
padding-top: 10px;
}
.interactive-schema {
max-width: 800px;
margin: 20px auto;
text-align: center;
}
.schema-container {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 30px;
padding: 20px;
background: #f8f9fa;
border-radius: 15px;
}
.tool-block {
background: white;
padding: 20px;
border-radius: 12px;
cursor: pointer;
transition: all 0.3s ease;
box-shadow: 0 4px 15px rgba(0,0,0,0.1);
min-width: 120px;
}
.tool-block:hover {
transform: translateY(-5px);
box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}
.tool-block.active {
background: #007bff;
color: white;
transform: scale(1.05);
}
.tool-icon {
font-size: 32px;
display: block;
margin-bottom: 10px;
}
.tool-name {
font-weight: bold;
display: block;
margin-bottom: 5px;
}
.tool-status {
color: #28a745;
font-size: 12px;
}
.connection-line {
width: 40px;
height: 3px;
background: #007bff;
margin: 0 10px;
}
.details-panel {
background: white;
padding: 25px;
border-radius: 12px;
box-shadow: 0 4px 15px rgba(0,0,0,0.1);
text-align: left;
}
.kpi-item {
display: flex;
justify-content: space-between;
padding: 8px 0;
border-bottom: 1px solid #eee;
}
.kpi-value {
font-weight: bold;
color: #28a745;
}
code {
background: #f8f9fa;
padding: 10px;
border-radius: 5px;
display: block;
margin: 10px 0;
color: #333;
}
.improvement-suggestions {
background: rgba(255,255,255,0.1);
padding: 15px;
border-radius: 8px;
margin-top: 20px;
}
.improvement-suggestions ul {
margin: 10px 0;
}
.improvement-suggestions li {
margin-bottom: 8px;
padding-left: 10px;
border-left: 3px solid #ffd700;
}