/* ===== Стили для страницы 1С в темной теме ===== */

.dark-theme {
    background-color: #0f172a;
    color: #e2e8f0;
}

/* Переопределение основных цветов для темной темы */
.dark-theme .header {
    background-color: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #334155;
}

.dark-theme .nav-menu a {
    color: #cbd5e1;
}

.dark-theme .nav-menu a:hover,
.dark-theme .nav-menu a.active {
    color: #60a5fa;
}

.dark-theme .dropdown-menu {
    background-color: #1e293b;
    border: 1px solid #334155;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.dark-theme .phone-link {
    background: linear-gradient(135deg, #c236aa, #30ded6);
    color: white;
}

/* Герой секция для 1С */
.hero-1c {
    background: linear-gradient(135deg, #01050e, #072a9a, #01050e);
    padding-top: 140px;
    position: relative;
    overflow: hidden;
}

.hero-1c::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
}

.hero-1c .container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(59, 130, 246, 0.2);
    color: #60a5fa;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.hero-title {
    font-size: 4.0rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #fffff 0%, #a78bfa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #fffff;
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #60a5fa;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: #94a3b8;
    margin-top: 5px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-glow {
    position: relative;
    overflow: hidden;
}

.btn-glow::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s;
}

.btn-glow:hover::after {
    opacity: 1;
}

/* Дашборд превью */
.dashboard-preview {
    perspective: 1000px;
}

.dashboard-window {
    background: linear-gradient(145deg, #1e293b, #0f172a);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(59, 130, 246, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transform: rotateY(-10deg) rotateX(5deg);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: rotateY(-10deg) rotateX(5deg) translateY(0); }
    50% { transform: rotateY(-10deg) rotateX(5deg) translateY(-10px); }
}

.window-header {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 20px;
}

.window-dots {
    display: flex;
    gap: 8px;
}

.window-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: block;
}

.window-dots span:nth-child(1) { background: #f87171; }
.window-dots span:nth-child(2) { background: #fbbf24; }
.window-dots span:nth-child(3) { background: #34d399; }

.dashboard-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.metric {
    background: rgba(30, 41, 59, 0.7);
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid #3b82f6;
    font-size: 0.9rem;
}

.metric strong {
    display: block;
    font-size: 1.5rem;
    color: #60a5fa;
    margin-top: 5px;
}

/* Карточки услуг */
.solution-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.solution-card {
    background: linear-gradient(145deg, #1e293b, #0f172a);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid #334155;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.solution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
}

.card-glow:hover {
    transform: translateY(-10px);
    border-color: #3b82f6;
    box-shadow: 
        0 20px 40px rgba(59, 130, 246, 0.15),
        0 0 20px rgba(59, 130, 246, 0.1);
}

.solution-icon {
    font-size: 2.5rem;
    color: #3b82f6;
    margin-bottom: 20px;
}

.solution-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #f1f5f9;
}

.solution-description {
    color: #94a3b8;
    margin-bottom: 25px;
    line-height: 1.6;
    flex-grow: 1;
}

.benefits-list {
    list-style: none;
    margin: 25px 0;
    flex-grow: 1;
}

.benefits-list li {
    padding: 12px 0;
    border-bottom: 1px solid #334155;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #cbd5e1;
}

.benefits-list li:last-child {
    border-bottom: none;
}

.benefits-list i {
    color: #10b981;
    flex-shrink: 0;
    margin-top: 3px;
}

.benefits-list strong {
    color: #e2e8f0;
}

.solution-cta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid #334155;
}

.price {
    font-size: 1.25rem;
    font-weight: 700;
    color: #60a5fa;
}

.btn-link {
    color: #60a5fa;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s;
}

.btn-link:hover {
    gap: 12px;
    color: #93c5fd;
}

/* Конфигурации */
.configs-section {
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
}

.config-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.config-card {
    background: rgba(30, 41, 59, 0.7);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #334155;
    transition: all 0.3s ease;
}

.config-card:hover {
    border-color: #3b82f6;
    transform: translateY(-5px);
    background: rgba(30, 41, 59, 0.9);
}

.config-icon {
    font-size: 2rem;
    color: #8b5cf6;
    margin-bottom: 15px;
}

.config-card h4 {
    color: #f1f5f9;
    margin-bottom: 10px;
    font-size: 1.25rem;
}

.config-description {
    color: #94a3b8;
    font-size: 0.95rem;
    margin-bottom: 20px;
    min-height: 40px;
}

.config-benefit {
    background: rgba(59, 130, 246, 0.1);
    padding: 15px;
    border-radius: 8px;
    border-left: 3px solid #3b82f6;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.benefit-icon {
    color: #10b981;
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.benefit-content {
    font-size: 0.9rem;
    color: #cbd5e1;
}

.benefit-content strong {
    color: #e2e8f0;
}

/* Кейсы */
.cases-section {
    background: #0f172a;
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.case-card {
    background: linear-gradient(145deg, #1e293b, #0f172a);
    border-radius: 16px;
    padding: 30px;
    border: 1px solid #334155;
    transition: all 0.3s ease;
}

.case-card {
    background: linear-gradient(145deg, #1e293b, #0f172a);
    border-radius: 16px;
    padding: 25px;
    border: 1px solid #334155;
    transition: all 0.3s ease;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.case-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #334155;
}

.case-industry {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(59, 130, 246, 0.1);
    color: #60a5fa;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.case-duration {
    color: #94a3b8;
    font-size: 0.9rem;
}

.case-card h3 {
    color: #f1f5f9;
    margin-bottom: 15px;
    font-size: 1.3rem;
    line-height: 1.3;
    word-wrap: break-word;
}

.case-problem {
    background: rgba(239, 68, 68, 0.1);
    border-left: 4px solid #ef4444;
    padding: 15px;
    border-radius: 0 8px 8px 0;
    margin-bottom: 20px;
    color: #fca5a5;
    font-size: 0.95rem;
    line-height: 1.5;
}

.case-problem strong {
    color: #fecaca;
}

.case-solution {
    margin-bottom: 25px;
}

.case-solution h4 {
    color: #60a5fa;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.case-solution ul {
    list-style: none;
    padding-left: 0;
}

.case-solution li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    color: #cbd5e1;
    font-size: 0.95rem;
    line-height: 1.4;
    word-wrap: break-word;
}

.case-solution li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #3b82f6;
}

.case-solution strong {
    color: #e2e8f0;
}

.case-results h4 {
    color: #10b981;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.result-item {
    text-align: center;
    background: rgba(16, 185, 129, 0.1);
    padding: 15px 10px;
    border-radius: 8px;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.result-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: #10b981;
    line-height: 1;
}

.result-label {
    font-size: 0.8rem;
    color: #94a3b8;
    margin-top: 5px;
    line-height: 1.2;
}

/* Процесс работы */
.process-section {
    background: linear-gradient(180deg, #1e293b 0%, #0f172a 100%);
}

.process-steps {
    max-width: 100%;
    margin: 50px auto 0;
    position: relative;
    padding-left: 40;
    margin-left: 40;
}

.process-steps::before {
    content: '';
    position: absolute;
    left: 40px !important; /* Фиксируем положение линии */
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, #3b82f6, #8b5cf6, #3b82f6);
    opacity: 0.3;
    z-index: 1;
}

.process-step {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
    position: relative;
    width: 100%;
    align-items: flex-start;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    color: white;
    flex-shrink: 0;
    z-index: 2;
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.3);
    position: relative;
	transform: translateX(55px); /* Только номер смещается */
    
}

.step-content {
    flex-grow: 1;
    background: rgba(30, 41, 59, 0.7);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #334155;
    margin-left: 20; /* Убираем отступы */
    min-width: 0; /* Важно для адаптивности */
}

.step-content h3 {
    color: #f1f5f9;
    margin-bottom: 10px;
    font-size: 1.3rem;
    line-height: 1.3;
}

.step-content p {
    color: #94a3b8;
    margin-bottom: 15px;
    line-height: 1.6;
    font-size: 0.95rem;
}

.step-output {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 8px;
    border-left: 3px solid #3b82f6;
    color: #cbd5e1;
    font-size: 0.95rem;
    flex-wrap: wrap;
}

.step-output i {
    color: #3b82f6;
    font-size: 1.2rem;
}

.step-output strong {
    color: #e2e8f0;
}

/* FAQ */
.faq-section {
    background: #0f172a;
}

.faq-grid {
    max-width: 800px;
    margin: 40px auto 0;
}

.faq-item {
    background: rgba(30, 41, 59, 0.7);
    border-radius: 12px;
    margin-bottom: 15px;
    border: 1px solid #334155;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #3b82f6;
}

.faq-question {
    padding: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.faq-question h3 {
    color: #f1f5f9;
    font-size: 1.1rem;
    margin: 0;
    flex-grow: 1;
}

.faq-question i {
    color: #94a3b8;
    transition: transform 0.3s;
    flex-shrink: 0;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    color: #94a3b8;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    padding: 0 25px 25px;
    max-height: 1000px;
}

.faq-answer p {
    margin-bottom: 15px;
}

.faq-answer ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

.faq-answer li {
    margin-bottom: 8px;
    color: #cbd5e1;
}

.faq-answer strong {
    color: #e2e8f0;
}

/* Форма */
.form-section {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
}

.form-container {
    background: rgba(30, 41, 59, 0.9);
    border-radius: 20px;
    padding: 50px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    border: 1px solid #334155;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.form-content h2 {
    text-align: left;
}

.form-benefits {
    margin: 30px 0;
}

.form-benefit {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    color: #cbd5e1;
}

.form-benefit i {
    color: #10b981;
    font-size: 1.2rem;
}

.contact-methods {
    margin-top: 40px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.contact-method i {
    font-size: 1.5rem;
    color: #3b82f6;
}

.contact-method div {
    display: flex;
    flex-direction: column;
}

.contact-method strong {
    color: #e2e8f0;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.contact-method a,
.contact-method span {
    color: #60a5fa;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
}

.contact-method span {
    color: #94a3b8;
    font-weight: normal;
}

/* Форма */
.audit-form {
    background: rgba(15, 23, 42, 0.8);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid #334155;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: #cbd5e1;
    margin-bottom: 8px;
    font-size: 0.95rem;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    background: rgba(30, 41, 59, 0.8);
    border: 1px solid #475569;
    border-radius: 8px;
    color: #f1f5f9;
    font-size: 1rem;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}

.form-group input::placeholder {
    color: #64748b;
}

.form-footer {
    margin-top: 30px;
}

.btn-block {
    width: 100%;
    padding: 18px;
    font-size: 1.1rem;
    font-weight: 600;
}

.form-note {
    color: #94a3b8;
    font-size: 0.85rem;
    text-align: center;
    margin-top: 15px;
    line-height: 1.4;
}

/* Футер */
.dark-theme .footer {
    background: #0f172a;
    border-top: 1px solid #334155;
}

.dark-theme .footer-title {
    color: #f1f5f9;
}

.dark-theme .footer-desc,
.dark-theme .footer-links a,
.dark-theme .footer-contacts {
    color: #94a3b8;
}

.dark-theme .footer-links a:hover {
    color: #60a5fa;
}

.dark-theme .footer-contacts a:hover {
    color: #60a5fa;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #60a5fa;
    font-size: 1.2rem;
    transition: all 0.3s;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.footer-social a:hover {
    background: rgba(59, 130, 246, 0.2);
    transform: translateY(-3px);
    color: #93c5fd;
}

.dark-theme .footer-bottom {
    border-top: 1px solid #334155;
    color: #64748b;
}

.dark-theme .footer-bottom a {
    color: #94a3b8;
}

.dark-theme .footer-bottom a:hover {
    color: #60a5fa;
}

.hero-1c .title-line {
    display: block;
    line-height: 1.1;
}

.hero-1c .title-line:first-child {
    background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-1c .title-line:last-child {
    color: #f1f5f9;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 30px 0;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(59, 130, 246, 0.1);
    padding: 10px 18px;
    border-radius: 50px;
    color: #cbd5e1;
    font-size: 0.95rem;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.feature i {
    color: #60a5fa;
}

.hero-note {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 30px;
    padding: 15px;
    background: rgba(34, 197, 94, 0.1);
    border-radius: 12px;
    border-left: 4px solid #22c55e;
    color: #86efac;
    font-size: 0.95rem;
}

.hero-note i {
    color: #22c55e;
    font-size: 1.2rem;
}

.hero-note strong {
    color: #bbf7d0;
}

.personal-workflow {
    background: rgba(30, 41, 59, 0.8);
    border-radius: 16px;
    padding: 30px;
    border: 1px solid #334155;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.workflow-step {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #334155;
}

.workflow-step:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.step-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
}

.step-content h4 {
    color: #f1f5f9;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.step-content p {
    color: #94a3b8;
    font-size: 0.9rem;
    margin: 0;
}

/* Адаптивность */
@media (max-width: 992px) {
    .hero-1c .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .form-container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 30px;
    }
    
    .results-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-stats {
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .stat {
        flex: 1 0 calc(50% - 20px);
    }
    
    .solution-grid,
    .config-grid,
    .cases-grid {
        grid-template-columns: 1fr;
    }
    
    
    
    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .results-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    
    .form-container {
        padding: 20px;
    }
    
    .audit-form {
        padding: 20px;
    }
}

/* ===== Улучшенная правая часть героя ===== */

.hero-visual {
    position: relative;
    height: 100%;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Анимированный логотип 1С */
.c1-animation {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto;
}

.c1-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 4rem;
    font-weight: 800;
    display: flex;
    z-index: 2;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(59, 130, 246, 0.3);
}

.c1-digit {
    animation: pulse 2s ease-in-out infinite;
}

.c1-letter {
    animation: pulse 2s ease-in-out infinite 0.5s;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.05); }
}

/* Орбиты с иконками */
.animation-orbits {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.orbit {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.orbit-1 {
    top: 10%;
    left: 10%;
    right: 10%;
    bottom: 10%;
    animation: orbit-rotate 20s linear infinite;
}

.orbit-2 {
    top: 20%;
    left: 20%;
    right: 20%;
    bottom: 20%;
    animation: orbit-rotate 25s linear infinite reverse;
}

.orbit-3 {
    top: 30%;
    left: 30%;
    right: 30%;
    bottom: 30%;
    animation: orbit-rotate 30s linear infinite;
}

@keyframes orbit-rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.orbit-dot {
    position: absolute;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--dot-color, #3b82f6), #60a5fa);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.3);
    top: -20px;
    left: calc(50% - 20px);
}

.dot-1 {
    --dot-color: #3b82f6;
    animation: dot-pulse 3s ease-in-out infinite;
}

.dot-2 {
    --dot-color: #8b5cf6;
    animation: dot-pulse 3s ease-in-out infinite 1s;
}

.dot-3 {
    --dot-color: #10b981;
    animation: dot-pulse 3s ease-in-out infinite 2s;
}

@keyframes dot-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Планшет с интерфейсом 1С */
.tablet-mockup {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(15deg);
    width: 280px;
    z-index: 3;
    animation: tablet-float 6s ease-in-out infinite;
}

@keyframes tablet-float {
    0%, 100% { transform: translate(-50%, -50%) rotate(15deg) translateY(0); }
    50% { transform: translate(-50%, -50%) rotate(15deg) translateY(-15px); }
}

.tablet-screen {
    background: linear-gradient(145deg, #1e293b, #0f172a);
    border-radius: 16px;
    padding: 20px;
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 20px 40px rgba(0, 0, 0, 0.5);
    border: 1px solid #334155;
    position: relative;
    z-index: 2;
}

.screen-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #334155;
    color: #cbd5e1;
    font-size: 0.9rem;
    font-weight: 600;
}

.screen-time {
    color: #94a3b8;
    font-size: 0.85rem;
}

.screen-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.data-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
}

.data-label {
    color: #94a3b8;
    font-size: 0.9rem;
}

.data-value {
    color: #60a5fa;
    font-weight: 600;
    font-size: 1rem;
}

.progress-bar {
    background: rgba(30, 41, 59, 0.8);
    border-radius: 10px;
    height: 20px;
    margin-top: 15px;
    overflow: hidden;
    position: relative;
}

.progress-fill {
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    height: 100%;
    border-radius: 10px;
}

.progress-bar span {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.8rem;
    font-weight: 500;
    z-index: 1;
}

.tablet-frame {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(145deg, #334155, #1e293b);
    border-radius: 20px;
    z-index: 1;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

/* Плавающие элементы */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.floating-element {
    position: absolute;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--fe-color, #3b82f6), rgba(var(--fe-color-rgb), 0.8));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    animation: float-element 8s ease-in-out infinite;
}

.fe-1 {
    --fe-color: #3b82f6;
    --fe-color-rgb: 59, 130, 246;
    top: 10%;
    right: 20%;
    animation-delay: 0s;
}

.fe-2 {
    --fe-color: #10b981;
    --fe-color-rgb: 16, 185, 129;
    bottom: 20%;
    right: 10%;
    animation-delay: 2s;
}

.fe-3 {
    --fe-color: #8b5cf6;
    --fe-color-rgb: 139, 92, 246;
    bottom: 10%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes float-element {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    33% { transform: translateY(-20px) rotate(10deg); }
    66% { transform: translateY(10px) rotate(-10deg); }
}

/* ===== ИСПРАВЛЕНИЕ ОТСТУПОВ ===== */

/* Кейсы - исправление отступов результатов */
.case-results .results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 15px;
    width: 100%;
    overflow: hidden;
}

.case-results .result-item {
    text-align: center;
    background: rgba(16, 185, 129, 0.1);
    padding: 15px 5px;
    border-radius: 8px;
    border: 1px solid rgba(16, 185, 129, 0.2);
    min-width: 0; /* Важно для предотвращения переполнения */
}

.case-results .result-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: #10b981;
    line-height: 1;
    margin-bottom: 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.case-results .result-label {
    font-size: 0.75rem;
    color: #94a3b8;
    line-height: 1.2;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
/* Процесс работы - исправление выравнивания */
.process-steps {
    max-width: 100%;
    margin: 50px auto 0;
    position: relative;
}

.process-step {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
    position: relative;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    color: white;
    flex-shrink: 0;
    z-index: 2;
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.3);
}

.step-content {
    flex-grow: 1;
    background: rgba(30, 41, 59, 0.7);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #334155;
}

/* Адаптивность для кейсов */
@media (max-width: 1200px) {
    .case-results .results-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-visual {
        min-height: 400px;
        margin-top: 40px;
    }
    
    .tablet-mockup {
        width: 220px;
    }
    
    .c1-animation {
        width: 150px;
        height: 150px;
    }
    
    .c1-logo {
        font-size: 3rem;
    }
    
    .orbit-dot {
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }
    
    .floating-element {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .case-results .results-grid {
        grid-template-columns: 1fr;
    }
    
    .process-step {
        flex-direction: column;
        gap: 20px;
    }
    
    .step-number {
        align-self: flex-start;
    }
}

@media (max-width: 480px) {
    .hero-visual {
        min-height: 350px;
    }
    
    .tablet-mockup {
        width: 180px;
    }
    
    .c1-animation {
        width: 120px;
        height: 120px;
    }
}
/* ===== КОМПАКТНАЯ ВЕРСИЯ ГЕРОЙ-СЕКЦИИ ===== */
.hero-1c.compact-left {
    padding-top: 100px;
    padding-bottom: 60px;
    min-height: auto;
    max-height: 85vh;
    overflow: visible;
    display: flex;
    align-items: center;
}

.hero-1c.compact-left .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

/* Компактная левая часть */
.hero-1c.compact-left .hero-content.compact-content {
    padding-right: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 450px;
    max-height: 500px;
}

/* Бадж */
.hero-1c.compact-left .compact-badge {
    padding: 6px 12px;
    font-size: 0.95rem;
    margin-bottom: 10px;
    display: inline-block;
    width: fit-content;
}

/* Заголовок */
.hero-1c.compact-left .compact-title {
    font-size: 2.5rem;
    line-height: 1.1;
    margin-bottom: 12px;
}

.hero-1c.compact-left .compact-title .title-line {
    display: block;
    margin-bottom: 0;
}

/* Подзаголовок */
.hero-1c.compact-left .compact-subtitle {
    font-size: 1.35rem;
    line-height: 1.4;
    margin-bottom: 15px;
    padding-right: 10px;
}

/* Фичи */
.hero-1c.compact-left .compact-features {
    margin: 10px 0 15px;
    gap: 8px;
    display: flex;
    flex-wrap: wrap;
}

.hero-1c.compact-left .compact-features .feature {
    padding: 6px 10px;
    font-size: 0.95rem;
    border-radius: 8px;
    flex: 1;
    min-width: 140px;
    max-width: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Кнопки */
.hero-1c.compact-left .compact-buttons {
    margin: 10px 0 15px;
    gap: 10px;
    display: flex;
    flex-wrap: wrap;
}

.hero-1c.compact-left .compact-buttons .btn {
    padding: 10px 16px;
    font-size: 0.9rem;
    border-radius: 8px;
    flex: 1;
    min-width: 220px;
    max-width: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Примечание */
.hero-1c.compact-left .compact-note {
    margin-top: 12px;
    padding: 8px 12px;
    font-size: 0.95rem;
    line-height: 1.3;
    border-radius: 8px;
}

/* Правая часть - центрируем содержимое */
.hero-1c.compact-left .hero-image {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-1c.compact-left .hero-visual {
    position: relative;
    width: 100%;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
}

/* Адаптация анимации под новую высоту */
.hero-1c.compact-left .c1-animation {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 160px;
    height: 160px;
}

.hero-1c.compact-left .tablet-mockup {
    position: absolute;
    top: 48%;
    left: 55%;
    transform: translate(-50%, -50%) rotate(15deg);
    width: 220px;
    z-index: 3;
}

/* ===== ИСПРАВЛЕНИЕ ПЛАВАЮЩИХ ЭЛЕМЕНТОВ ===== */

/* Восстанавливаем все три плавающих элемента */
.hero-1c.compact-left .floating-element {
    position: absolute;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--fe-color, #3b82f6), rgba(var(--fe-color-rgb), 0.8));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    animation: float-element 8s ease-in-out infinite;
    z-index: 4; /* Повышаем z-index */
}

/* Первый элемент - сверху справа */
.hero-1c.compact-left .floating-element.fe-1 {
    --fe-color: #3b82f6;
    --fe-color-rgb: 59, 130, 246;
    top: 10% !important; /* Оригинальная позиция */
    right: 20% !important;
    animation-delay: 0s;
}

/* Второй элемент - снизу справа */
.hero-1c.compact-left .floating-element.fe-2 {
    --fe-color: #10b981;
    --fe-color-rgb: 16, 185, 129;
    bottom: 20% !important;
    right: 10% !important;
    animation-delay: 2s;
}

/* Третий элемент - снизу слева */
.hero-1c.compact-left .floating-element.fe-3 {
    --fe-color: #8b5cf6;
    --fe-color-rgb: 139, 92, 246;
    bottom: 10% !important;
    left: 20% !important;
    animation-delay: 4s;
}

/* Анимация плавающих элементов */
@keyframes float-element {
    0%, 100% { 
        transform: translateY(0) rotate(0deg); 
    }
    33% { 
        transform: translateY(-20px) rotate(10deg); 
    }
    66% { 
        transform: translateY(10px) rotate(-10deg); 
    }
}

/* ===== УТОЧНЯЕМ РАЗМЕРЫ АНИМАЦИИ ===== */

/* Центральная анимация 1С */
.hero-1c.compact-left .c1-animation {
    position: absolute;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    width: 200px; /* Оригинальный размер */
    height: 200px;
    z-index: 2;
}

.hero-1c.compact-left .c1-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 4rem; /* Оригинальный размер */
    font-weight: 800;
    display: flex;
    z-index: 3;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Орбиты */
.hero-1c.compact-left .orbit {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.hero-1c.compact-left .orbit-1 {
    top: 10%;
    left: 10%;
    right: 10%;
    bottom: 10%;
    animation: orbit-rotate 20s linear infinite;
}

.hero-1c.compact-left .orbit-2 {
    top: 20%;
    left: 20%;
    right: 20%;
    bottom: 20%;
    animation: orbit-rotate 25s linear infinite reverse;
}

.hero-1c.compact-left .orbit-3 {
    top: 30%;
    left: 30%;
    right: 30%;
    bottom: 30%;
    animation: orbit-rotate 30s linear infinite;
}

.hero-1c.compact-left .orbit-dot {
    position: absolute;
    width: 40px; /* Оригинальный размер */
    height: 40px;
    background: linear-gradient(135deg, var(--dot-color, #3b82f6), #60a5fa);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem; /* Оригинальный размер */
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.3);
    top: -20px;
    left: calc(50% - 20px);
    z-index: 3;
}

/* Планшет */
.hero-1c.compact-left .tablet-mockup {
    position: absolute;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) rotate(15deg) !important;
    width: 80px; /* Оригинальный размер */
    z-index: 3;
    animation: tablet-float 6s ease-in-out infinite;
}

.hero-1c.compact-left .tablet-screen {
    background: linear-gradient(145deg, #1e293b, #0f172a);
    border-radius: 16px;
    padding: 20px; /* Оригинальный размер */
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 20px 40px rgba(0, 0, 0, 0.5);
    border: 1px solid #334155;
    position: relative;
    z-index: 2;
}

/* Анимация планшета */
@keyframes tablet-float {
    0%, 100% { 
        transform: translate(-50%, -50%) rotate(15deg) translateY(0); 
    }
    50% { 
        transform: translate(-50%, -50%) rotate(15deg) translateY(-15px); 
    }
}

/* ===== УВЕЛИЧИВАЕМ ПРАВУЮ ЧАСТЬ ДЛЯ ВСЕХ ЭЛЕМЕНТОВ ===== */

.hero-1c.compact-left .hero-image {
    flex: 0 0 45%;
    max-width: 45%;
    height: 500px !important; /* Увеличиваем высоту для всех элементов */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-top: 0;
}

/* АДАПТИВНОСТЬ */

@media (max-width: 992px) {
    .hero-1c.compact-left .hero-image {
        height: 450px !important;
    }
    
    .hero-1c.compact-left .c1-animation {
        width: 180px;
        height: 180px;
    }
    
    .hero-1c.compact-left .c1-logo {
        font-size: 3.5rem;
    }
    
    .hero-1c.compact-left .tablet-mockup {
        width: 240px;
    }
    
    .hero-1c.compact-left .floating-element {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .hero-1c.compact-left .hero-image {
        height: 400px !important;
    }
    
    .hero-1c.compact-left .c1-animation {
        width: 160px;
        height: 160px;
    }
    
    .hero-1c.compact-left .c1-logo {
        font-size: 3rem;
    }
    
    .hero-1c.compact-left .tablet-mockup {
        width: 220px;
    }
    
    .hero-1c.compact-left .orbit-dot {
        width: 35px;
        height: 35px;
        font-size: 1rem;
        top: -17.5px;
        left: calc(50% - 17.5px);
    }
    
    .hero-1c.compact-left .floating-element {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .hero-1c.compact-left .hero-image {
        height: 350px !important;
    }
    
    .hero-1c.compact-left .c1-animation {
        width: 140px;
        height: 140px;
    }
    
    .hero-1c.compact-left .c1-logo {
        font-size: 2.8rem;
    }
    
    .hero-1c.compact-left .tablet-mockup {
        width: 200px;
    }
    
    .hero-1c.compact-left .orbit-dot {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
        top: -15px;
        left: calc(50% - 15px);
    }
    
    .hero-1c.compact-left .floating-element {
        width: 35px;
        height: 35px;
        font-size: 1.1rem;
    }
    
    /* На маленьких экранах убираем один элемент */
    .hero-1c.compact-left .floating-element.fe-3 {
        display: none;
    }
}

/* ===== АДАПТИВНОСТЬ ===== */

/* Ноутбуки */
@media (max-width: 1200px) {
    .hero-1c.compact-left .container {
        gap: 20px;
    }
    
    .hero-1c.compact-left .compact-title {
        font-size: 2.2rem;
    }
    
    .hero-1c.compact-left .compact-features .feature {
        min-width: 130px;
        font-size: 0.8rem;
    }
    
    .hero-1c.compact-left .compact-buttons .btn {
        min-width: 200px;
        font-size: 0.85rem;
    }
}

/* Планшеты (горизонтальные) */
@media (max-width: 992px) {
    .hero-1c.compact-left .container {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .hero-1c.compact-left {
        padding-top: 90px;
        padding-bottom: 40px;
        max-height: none;
    }
    
    .hero-1c.compact-left .hero-content.compact-content {
        min-height: auto;
        max-height: none;
        padding-right: 0;
        text-align: center;
        align-items: center;
    }
    
    .hero-1c.compact-left .compact-badge {
        margin: 0 auto 10px;
    }
    
    .hero-1c.compact-left .compact-title {
        text-align: center;
        margin-bottom: 15px;
    }
    
    .hero-1c.compact-left .compact-subtitle {
        text-align: center;
        padding-right: 0;
        margin-bottom: 20px;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-1c.compact-left .compact-features {
        justify-content: center;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-1c.compact-left .compact-buttons {
        justify-content: center;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-1c.compact-left .hero-image {
        order: -1;
        margin-bottom: 10px;
    }
    
    .hero-1c.compact-left .hero-visual {
        height: 350px;
    }
}

/* Планшеты (вертикальные) и большие телефоны */
@media (max-width: 768px) {
    .hero-1c.compact-left {
        padding-top: 80px;
        padding-bottom: 30px;
    }
    
    .hero-1c.compact-left .compact-title {
        font-size: 2rem;
    }
    
    .hero-1c.compact-left .compact-subtitle {
        font-size: 0.95rem;
    }
    
    .hero-1c.compact-left .compact-features {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    
    .hero-1c.compact-left .compact-features .feature {
        width: 100%;
        max-width: 250px;
        margin-bottom: 5px;
    }
    
    .hero-1c.compact-left .compact-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-1c.compact-left .compact-buttons .btn {
        width: 100%;
        max-width: 300px;
        margin-bottom: 8px;
    }
    
    .hero-1c.compact-left .hero-visual {
        height: 300px;
    }
    
    .hero-1c.compact-left .c1-animation {
        width: 140px;
        height: 140px;
    }
    
    .hero-1c.compact-left .tablet-mockup {
        width: 190px;
        transform: translate(-50%, -50%) rotate(15deg) scale(0.9);
    }
}

/* Мобильные телефоны */
@media (max-width: 576px) {
    .hero-1c.compact-left {
        padding-top: 70px;
        padding-bottom: 20px;
    }
    
    .hero-1c.compact-left .compact-title {
        font-size: 1.8rem;
    }
    
    .hero-1c.compact-left .compact-subtitle {
        font-size: 0.9rem;
    }
    
    .hero-1c.compact-left .hero-visual {
        height: 250px;
    }
    
    .hero-1c.compact-left .c1-animation {
        width: 120px;
        height: 120px;
    }
    
    .hero-1c.compact-left .c1-logo {
        font-size: 3rem;
    }
    
    .hero-1c.compact-left .tablet-mockup {
        width: 170px;
        transform: translate(-50%, -50%) rotate(15deg) scale(0.8);
    }
    
    .hero-1c.compact-left .compact-buttons .btn {
        font-size: 0.8rem;
        padding: 8px 12px;
    }
    
    .hero-1c.compact-left .compact-note {
        font-size: 0.8rem;
        padding: 6px 10px;
    }
}

/* Очень маленькие экраны */
@media (max-width: 380px) {
    .hero-1c.compact-left .compact-title {
        font-size: 1.6rem;
    }
    
    .hero-1c.compact-left .compact-features .feature {
        max-width: 220px;
    }
    
    .hero-1c.compact-left .hero-visual {
        height: 220px;
    }
}

/* ===== ФИКС ДЛЯ ВЕРТИКАЛЬНОГО ВЫРАВНИВАНИЯ ===== */

/* 1. Убираем ограничения высоты у всей секции */
.hero-1c.compact-left {
    padding-top: 100px;
    padding-bottom: 60px;
    min-height: auto;
    max-height: none !important; /* Убираем ограничение */
    overflow: visible;
    display: flex;
    align-items: flex-start; /* Выравниваем содержимое по верху */
}

/* 2. Контейнер делаем flex вместо grid */
.hero-1c.compact-left .container {
    display: flex !important; /* Меняем grid на flex */
    flex-wrap: wrap;
    gap: 30px;
    align-items: flex-start; /* Выравнивание по верху */
    justify-content: space-between;
    width: 100%;
}

/* 3. Левая часть - фиксированная ширина, без ограничений по высоте */
.hero-1c.compact-left .hero-content.compact-content {
    flex: 0 0 45%; /* Фиксируем ширину */
    max-width: 45%;
    padding-right: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* Выравнивание по верху */
    min-height: auto !important;
    max-height: none !important;
    height: auto;
    margin-top: 0;
    padding-top: 0;
}

/* 4. Правая часть - фиксированная высота */
.hero-1c.compact-left .hero-image {
    flex: 0 0 45%;
    max-width: 45%;
    height: 450px !important; /* Фиксируем высоту */
    display: flex;
    align-items: center; /* Центрируем по вертикали */
    justify-content: center;
    position: relative;
    margin-top: 0;
}

/* 5. Визуал правой части - центрируем */
.hero-1c.compact-left .hero-visual {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
}

/* 6. Анимация - центрируем абсолютно */
.hero-1c.compact-left .c1-animation {
    position: absolute;
    top: 50% !important;
    left: 20% !important;
    transform: translate(-50%, -50%) !important;
    width: 160px;
    height: 160px;
}

/* 7. Планшет - поднимаем немного */
.hero-1c.compact-left .tablet-mockup {
    position: absolute;
    top: 70% !important; /* высота позиционирования планшета */
    left: 80% !important;
    transform: translate(-50%, -50%) rotate(15deg) !important;
    width: 220px;
    z-index: 3;
}

/* 8. Уменьшаем отступы в левой части */
.hero-1c.compact-left .compact-title {
    margin-top: 0;
    margin-bottom: 10px;
}

.hero-1c.compact-left .compact-subtitle {
    margin-bottom: 15px;
}

.hero-1c.compact-left .compact-features {
    margin: 10px 0;
}

.hero-1c.compact-left .compact-buttons {
    margin: 15px 0;
}

.hero-1c.compact-left .compact-note {
    margin-top: 15px;
}

/* ===== АДАПТИВНОСТЬ ===== */

@media (max-width: 992px) {
    .hero-1c.compact-left .container {
        flex-direction: column;
    }
    
    .hero-1c.compact-left .hero-content.compact-content,
    .hero-1c.compact-left .hero-image {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .hero-1c.compact-left .hero-content.compact-content {
        padding-right: 0;
        text-align: center;
        order: 2;
    }
    
    .hero-1c.compact-left .hero-image {
        height: 300px;
        order: 1;
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .hero-1c.compact-left .hero-image {
        height: 300px !important;
    }
    
    .hero-1c.compact-left .tablet-mockup {
        width: 190px;
    }
}

@media (max-width: 576px) {
    .hero-1c.compact-left .hero-image {
        height: 250px !important;
    }
    
    .hero-1c.compact-left .tablet-mockup {
        width: 170px;
    }
}

/* Простейший фикс - скрываем сложную анимацию на мобильных */
@media (max-width: 768px) {
    .hero-1c.compact-left .hero-image {
        display: none !important;
    }
    
    /* Или показываем упрощенную версию */
    .hero-1c.compact-left .hero-visual {
        display: none !important;
    }
}

/* ===== УВЕЛИЧЕНИЕ ПРАВОЙ ЧАСТИ ===== */

/* Увеличиваем всю правую секцию */
.hero-1c.compact-left .hero-image {
    flex: 0 0 50% !important;
    max-width: 50% !important;
    height: 550px !important;
}

/* Увеличиваем визуальную область */
.hero-1c.compact-left .hero-visual {
    height: 100% !important;
    width: 100% !important;
}

/* Увеличиваем анимацию 1С */
.hero-1c.compact-left .c1-animation {
    width: 220px !important;
    height: 420px !important;
}

.hero-1c.compact-left .c1-logo {
    font-size: 5rem !important;
}

/* Увеличиваем планшет */
.hero-1c.compact-left .tablet-mockup {
    width: 320px !important;
	height: 500px  !important;
}

.hero-1c.compact-left .tablet-screen {
    padding: 25px !important;
}

.hero-1c.compact-left .screen-header {
    font-size: 1rem !important;
    margin-bottom: 25px !important;
    padding-bottom: 20px !important;
}

.hero-1c.compact-left .data-row {
    padding: 10px 0 !important;
}

.hero-1c.compact-left .data-label {
    font-size: 1rem !important;
}

.hero-1c.compact-left .data-value {
    font-size: 1.1rem !important;
}

.hero-1c.compact-left .progress-bar {
    height: 24px !important;
    margin-top: 20px !important;
}

.hero-1c.compact-left .progress-bar span {
    font-size: 0.9rem !important;
}

/* Увеличиваем плавающие элементы */
.hero-1c.compact-left .floating-element {
    width: 60px !important;
    height: 60px !important;
    font-size: 1.8rem !important;
}

/* Увеличиваем орбиты и точки */
.hero-1c.compact-left .orbit-dot {
    width: 50px !important;
    height: 50px !important;
    font-size: 1.4rem !important;
    top: -25px !important;
    left: calc(50% - 25px) !important;
}

/* Анимация планшета - более заметная */
@keyframes tablet-float-enhanced {
    0%, 100% { 
        transform: translate(-50%, -50%) rotate(15deg) translateY(0) scale(1.05) !important;
    }
    50% { 
        transform: translate(-50%, -50%) rotate(15deg) translateY(-20px) scale(1.05) !important;
    }
}

.hero-1c.compact-left .tablet-mockup {
    animation: tablet-float-enhanced 6s ease-in-out infinite !important;
}

/* ===== АДАПТИВНОСТЬ ДЛЯ УВЕЛИЧЕННОЙ ВЕРСИИ ===== */

@media (max-width: 1200px) {
    .hero-1c.compact-left .hero-image {
        height: 500px !important;
    }
    
    .hero-1c.compact-left .c1-animation {
        width: 200px !important;
        height: 200px !important;
    }
    
    .hero-1c.compact-left .tablet-mockup {
        width: 280px !important;
    }
}

@media (max-width: 992px) {
    .hero-1c.compact-left .hero-image {
        height: 450px !important;
    }
    
    .hero-1c.compact-left .c1-animation {
        width: 180px !important;
        height: 180px !important;
    }
    
    .hero-1c.compact-left .c1-logo {
        font-size: 4rem !important;
    }
    
    .hero-1c.compact-left .tablet-mockup {
        width: 250px !important;
    }
    
    .hero-1c.compact-left .floating-element {
        width: 50px !important;
        height: 50px !important;
        font-size: 1.5rem !important;
    }
    
    .hero-1c.compact-left .orbit-dot {
        width: 45px !important;
        height: 45px !important;
        font-size: 1.2rem !important;
        top: -22.5px !important;
        left: calc(50% - 22.5px) !important;
    }
}

@media (max-width: 768px) {
    .hero-1c.compact-left .hero-image {
        height: 400px !important;
    }
    
    .hero-1c.compact-left .c1-animation {
        width: 160px !important;
        height: 160px !important;
    }
    
    .hero-1c.compact-left .c1-logo {
        font-size: 3.5rem !important;
    }
    
    .hero-1c.compact-left .tablet-mockup {
        width: 220px !important;
    }
    
    .hero-1c.compact-left .floating-element {
        width: 45px !important;
        height: 45px !important;
        font-size: 1.3rem !important;
    }
    
    .hero-1c.compact-left .orbit-dot {
        width: 40px !important;
        height: 40px !important;
        font-size: 1.1rem !important;
        top: -20px !important;
        left: calc(50% - 20px) !important;
    }
}

@media (max-width: 576px) {
    .hero-1c.compact-left .hero-image {
        height: 350px !important;
    }
    
    .hero-1c.compact-left .c1-animation {
        width: 140px !important;
        height: 140px !important;
    }
    
    .hero-1c.compact-left .c1-logo {
        font-size: 3rem !important;
    }
    
    .hero-1c.compact-left .tablet-mockup {
        width: 200px !important;
    }
    
    .hero-1c.compact-left .floating-element {
        width: 40px !important;
        height: 40px !important;
        font-size: 1.2rem !important;
    }
    
    .hero-1c.compact-left .orbit-dot {
        width: 35px !important;
        height: 35px !important;
        font-size: 1rem !important;
        top: -17.5px !important;
        left: calc(50% - 17.5px) !important;
    }
}

/* Усиление анимаций для большей заметности */
.hero-1c.compact-left .c1-digit {
    animation: pulse 1.5s ease-in-out infinite !important;
}

.hero-1c.compact-left .c1-letter {
    animation: pulse 1.5s ease-in-out infinite 0.3s !important;
}

@keyframes dot-pulse-enhanced {
    0%, 100% { 
        transform: scale(1); 
        box-shadow: 0 5px 20px rgba(59, 130, 246, 0.4);
    }
    50% { 
        transform: scale(1.2); 
        box-shadow: 0 8px 25px rgba(59, 130, 246, 0.6);
    }
}

.hero-1c.compact-left .dot-1,
.hero-1c.compact-left .dot-2,
.hero-1c.compact-left .dot-3 {
    animation: dot-pulse-enhanced 2.5s ease-in-out infinite !important;
}

.hero-1c.compact-left .dot-2 {
    animation-delay: 0.8s !important;
}

.hero-1c.compact-left .dot-3 {
    animation-delay: 1.6s !important;
}
/* Адаптивность для сетки кейсов */
@media (max-width: 1200px) {
    .cases-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .case-results .results-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
    
    .case-results .result-value {
        font-size: 1.3rem;
    }
    
    .case-results .result-label {
        font-size: 0.7rem;
    }
}

@media (max-width: 768px) {
    .cases-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .case-results .results-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }
    
    .case-card {
        padding: 20px;
    }
    
    .case-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .case-duration {
        align-self: flex-start;
    }
    
    .case-results .result-item {
        padding: 12px 5px;
    }
    
    .case-results .result-value {
        font-size: 1.2rem;
    }
    
    .case-results .result-label {
        font-size: 0.65rem;
    }
}

@media (max-width: 576px) {
    .case-results .results-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .case-results .result-item {
        padding: 15px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    
    .case-results .result-value {
        font-size: 1.4rem;
        margin-bottom: 8px;
    }
    
    .case-results .result-label {
        font-size: 0.8rem;
        text-align: center;
    }
    
    .case-problem,
    .case-solution,
    .case-results {
        padding: 15px;
    }
    
    .case-problem {
        font-size: 0.9rem;
        padding: 12px;
    }
    
    .case-solution li {
        font-size: 0.9rem;
        padding-left: 20px;
    }
}

@media (max-width: 992px) {
    .process-steps::before {
        left: 30px !important;
    }
    
    .step-number {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .process-step {
        gap: 20px;
    }
    
    .step-content {
        padding: 20px;
    }
    
    .step-content h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .process-steps {
        padding-left: 15px !important;
    }
    
    .process-steps::before {
        left: 30px !important;
    }
    
    .process-step {
        flex-direction: column;
        gap: 15px;
        margin-bottom: 40px;
    }
    
    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.6rem;
        position: relative;
        left: 0 !important;
        margin-left: -10px; /* Компенсируем отступ */
    }
    
    .step-content {
        width: 100%;
        margin-left: 0;
        padding: 20px;
    }
    
    .step-output {
        font-size: 0.9rem;
        padding: 12px;
    }
}

@media (max-width: 576px) {
    .process-steps {
        padding-left: 40px !important;
    }
    
    .process-steps::before {
        left: 25px !important;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
        margin-left: -15px;
    }
    
    .step-content {
        padding: 15px;
    }
    
    .step-content h3 {
        font-size: 1.1rem;
    }
    
    .step-content p {
        font-size: 0.9rem;
    }
    
    .step-output {
        font-size: 0.85rem;
        padding: 10px;
    }
}

/* Исправляем проблему с горизонтальным скроллом */
.process-section .container {
    overflow: hidden;
    padding-left: 15px;
    padding-right: 15px;
}

.process-step {
    box-sizing: border-box;
}
/* ===== ГЛОБАЛЬНЫЕ ИСПРАВЛЕНИЯ ===== */

/* Убираем горизонтальный скролл */
body {
    overflow-x: hidden;
    width: 100%;
}

/* Исправляем контейнеры */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    box-sizing: border-box;
}

/* Фиксим секции */
.section {
    position: relative;
    width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

/* Улучшаем сетки */
.cases-grid,
.solution-grid,
.config-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 350px), 1fr));
    gap: 30px;
    margin-top: 40px;
    width: 100%;
    box-sizing: border-box;
}