:root {
    --primary-color: #4b8ff0;
    --secondary-color: #f8f9fa;
    --accent-color: #ffd700;
}

:root {
    --primary: #2A6F97;
    --secondary: #5c94b8;
    --accent: #FFD700;
    --light: #F8F9FA;
}

body {
    
    font-family: 'Arial', sans-serif;
}

.nav-link {
    color: var(--primary-color) !important;
}

.hero-section {
    background:linear-gradient(50deg, var(--secondary-color) 54%, #ffffff 55%);
    padding: 45px 0 0 ;
}

@media (max-width: 767px) {
    .hero-section {
        padding: 100px 0 50px !important;
        min-height: auto !important; /* Отключаем фиксированную высоту если нужно */
    }
}



.feature-icon {
    font-size: 3rem;
    color: var(--primary-color);
}

.pricing-card {
    transition: transform 0.3s;
    border: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.testimonial-card img {
    width: 80px;
    height: 80px;
}

:root {
    --primary: #2A6F97;
    --secondary: #61A5C2;
    --accent: #FF6F00;
    --light: #F8F9FA;
}

.section-heading {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    position: relative;
}

.section-heading:after {
    content: '';
    width: 60px;
    height: 4px;
    background: var(--accent);
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}

.feature-card {
    transition: all 0.3s;
    border: 1px solid rgba(42, 111, 151, 0.1);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 1.5rem;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.icon-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(42, 111, 151, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.process-step {
    position: relative;
    padding: 2rem;
    background: var(--light);
    border-radius: 15px;
}

.tech-logo {
    width: 80px;
    filter: grayscale(1);
    transition: all 0.3s;
}

.tech-logo:hover {
    filter: grayscale(0);
}

.cta-section {
    background:linear-gradient(180deg, var(--secondary) 5%, var(--primary) 90%);
    color: white;
    border-radius: 20px;
    overflow: hidden;
}





 .navbar {
     padding: 0.8rem 0;
     transition: all 0.3s;
 }

.logo-icon {
    transition: transform 0.3s;
}

.logo-icon:hover {
    transform: rotate(15deg);
}

.logo-text {
    font-family: 'Arial', sans-serif;
    font-weight: 700;
    font-size: 1.4rem;
    letter-spacing: -0.5px;
}

.text-accent {
    color: #FF6F00;
    position: relative;
}

.text-accent::after {
    content: "";
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #FF6F00;
    transform: scaleX(0);
    transition: transform 0.3s;
}

.nav-link {
    color: #2A6F97 !important;
    font-weight: 500;
    position: relative;
    padding: 0.5rem 1rem !important;
    border-radius: 8px;
    transition: all 0.3s;
}

.nav-link:hover {
    background: rgba(42, 111, 151, 0.05);
}

.nav-link.active {
    background: rgba(42, 111, 151, 0.1);
}

.btn-primary {
    background: #2A6F97;
    border-color: #2A6F97;
    padding: 0.5rem 1.5rem;
}

.btn-primary:hover {
    background: #1F5372;
}

/* Убираем ярко-синий цвет при клике */
.btn-primary:active,
.btn-primary:focus,
.btn-primary:focus-visible {
    background-color: #2A6F97 !important;
    border-color: #2A6F97 !important;
    box-shadow: none !important;
    outline: none !important;
}


 .logo-text .text-primary{
     color: #2A6F97 !important;
 }
.logo-icon {
    transition: transform 0.3s ease;
    cursor: pointer;
}

.logo-icon:hover .logo-frame {
    stroke: #1F5372;
    transform: rotate(-8deg);
}

.logo-icon:hover .logo-elements rect {
    transform: scaleX(1.1);
    transform-origin: left center;
}

.logo-icon:hover .logo-elements circle {
    transform: scale(1.3);
}

.logo-frame {
    transition: all 0.4s ease;
}

.logo-elements rect,
.logo-elements circle {
    transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}






.pain-point-card {
     background: white;
     border-radius: 12px;
     transition: all 0.3s;
     border: 1px solid rgba(0,0,0,0.05);
 }

.pain-point-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(42, 111, 151, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
}

.pain-point-card .bi {
    opacity: 0.9;
}



 .process-step {
     background: white;
     border-radius: 15px;
     transition: all 0.3s ease;
     position: relative;
     overflow: hidden;
 }

.process-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(42, 111, 151, 0.1);
}

.step-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(42, 111, 151, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}


 .benefit-card {
     background: white;
     border-radius: 15px;
     transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
     position: relative;
     overflow: hidden;
 }

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(42, 111, 151, 0.1);
}

.icon-benefit {
    width: 90px;
    height: 90px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    position: relative;
}

.icon-benefit .bi {
    font-size: 2rem;
    color: white;
}

.pulse-effect {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid var(--primary);
    border-radius: 50%;
    animation: pulse 2s infinite;
    opacity: 0;
}

@keyframes pulse {
    0% { transform: scale(0.8); opacity: 0.8; }
    100% { transform: scale(1.5); opacity: 0; }
}

.benefit-card:hover .pulse-effect {
    animation: pulse 1.5s infinite;
}



/* Убираем outline и box-shadow у всех полей ввода на странице регистрации */
input,
select,
textarea {
    outline: none;
    box-shadow: none;
}

 input:focus,
 select:focus,
 textarea:focus {
    outline: none !important;
    box-shadow: none !important;
}