/* 
 * reactoredge.pro - Основные стили сайта
 * Стиль: Bold & Artistic с экспрессивным использованием цвета и типографики
 * Компоновка: Z-pattern Journey
 */


:root {
    
    --primary-color: #0D2E59;
    --secondary-color: #9A2F43;
    --accent-color: #FF6B35;
    
    
    --gold-color: #FFD700;
    --emerald-color: #2D9E78;
    --purple-color: #8A2BE2;
    
    
    --bg-light: #F5F1E9;
    --bg-dark: #2C2C2C;
    --bg-gray: #E8E8E8;
    
    
    --white: #FFFFFF;
    --black: #000000;
    --light-blue: #E3F2FD;
    
    
    --heading-font: 'Quicksand', sans-serif;
    --body-font: 'Open Sans', sans-serif;
    
    
    --section-padding: 100px 0;
    --container-padding: 0 15px;
    
    
    --transition: all 0.3s ease;
    
    
    --z-navbar: 1000;
    --z-dropdown: 1010;
    --z-cookie: 1020;
    --z-modal: 1030;
}


html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--body-font);
    color: var(--bg-dark);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.iti {
  width: 100%;
}

p {
    margin-bottom: 1.5rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--secondary-color);
}

img {
    max-width: 100%;
    height: auto;
}

.btn {
    font-family: var(--heading-font);
    font-weight: 700;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.title-underline {
    height: 5px;
    width: 80px;
    background: var(--accent-color);
    margin-bottom: 1.5rem;
}

.section-title {
    margin-bottom: 3rem;
}

.shadow-lg {
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.15) !important;
}


.navbar {
    padding: 1rem 0;
    transition: var(--transition);
    z-index: var(--z-navbar);
}

.navbar.scrolled {
    padding: 0.5rem 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.navbar-brand img {
    height: 40px;
    transition: var(--transition);
}

.navbar-light .navbar-nav .nav-link {
    color: var(--bg-dark);
    font-weight: 600;
    padding: 0.5rem 1rem;
    position: relative;
}

.navbar-light .navbar-nav .nav-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: 0;
    left: 50%;
    background-color: var(--accent-color);
    transition: var(--transition);
    transform: translateX(-50%);
}

.navbar-light .navbar-nav .nav-link:hover:after,
.navbar-light .navbar-nav .nav-link.active:after {
    width: 80%;
}

.navbar-light .navbar-nav .nav-link.active {
    color: var(--primary-color);
}


.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: url('../images/hero-investment.jpg') no-repeat center center;
    background-size: cover;
    padding-top: 80px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(13, 46, 89, 0.85) 0%, rgba(154, 47, 67, 0.85) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    transform: translateY(-30px);
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.typed-container {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold-color);
    height: 70px;
}


.about-section {
    padding: var(--section-padding);
    position: relative;
    overflow: hidden;
}

.about-image-container {
    position: relative;
    z-index: 1;
    transform: rotate(3deg);
    transition: var(--transition);
}

.about-image-container:hover {
    transform: rotate(0deg) scale(1.02);
}

.about-image-container:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 20px;
    left: 20px;
    background-color: var(--accent-color);
    z-index: -1;
    border-radius: 0.5rem;
}


.services-section {
    padding: var(--section-padding);
    position: relative;
}

.service-card {
    background-color: var(--white);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.service-card:before {
    content: '';
    position: absolute;
    width: 120%;
    height: 120%;
    top: -10%;
    left: -10%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    z-index: -1;
    transform: scale(0);
    border-radius: 50%;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service-card:hover:before {
    transform: scale(1);
}

.service-card:hover {
    color: var(--white);
}

.service-card:hover h3,
.service-card:hover .service-icon i {
    color: var(--white);
}

.service-icon {
    margin-bottom: 1.5rem;
}

.service-icon i {
    font-size: 2.5rem;
    color: var(--accent-color);
    transition: var(--transition);
}

.service-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    transition: var(--transition);
}

.service-features {
    list-style-type: none;
    padding-left: 0;
    margin-top: 1.5rem;
}

.service-features li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.service-features li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    transition: var(--transition);
}

.service-card:hover .service-features li:before {
    color: var(--gold-color);
}


.contact-form-section {
    padding: var(--section-padding);
    position: relative;
}

.contact-form-container {
    position: relative;
    z-index: 1;
}

.form-floating > label {
    color: #6c757d;
}

.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label {
    color: var(--primary-color);
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(13, 46, 89, 0.25);
}

.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}


.map-section {
    padding: var(--section-padding);
}

.map-container {
    height: 450px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}


.footer {
    position: relative;
    z-index: 1;
}

.footer-logo {
    filter: brightness(0) invert(1);
}

.footer-title {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-title:after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background-color: var(--accent-color);
    bottom: 0;
    left: 0;
}

.footer-links {
    list-style-type: none;
    padding-left: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #adb5bd;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-contact {
    list-style-type: none;
    padding-left: 0;
}

.footer-contact li {
    margin-bottom: 0.75rem;
    color: #adb5bd;
    display: flex;
    align-items: flex-start;
}

.footer-contact li i {
    margin-right: 10px;
    color: var(--accent-color);
    margin-top: 5px;
}


.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--white);
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
    padding: 1.5rem 0;
    z-index: var(--z-cookie);
    display: none;
}

.cookie-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.cookie-settings-group {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e9ecef;
}

.cookie-settings-group:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}


.page-header {
    padding: 150px 0 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    text-align: center;
    position: relative;
}

.advantage-card {
    background-color: var(--white);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.advantage-image {
    height: 250px;
    overflow: hidden;
}

.advantage-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.advantage-card:hover .advantage-image img {
    transform: scale(1.05);
}

.advantage-content {
    padding: 2rem;
}

.advantage-icon {
    width: 70px;
    height: 70px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    margin-top: -50px;
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.advantage-icon i {
    font-size: 2rem;
    color: var(--white);
}

.advantage-list {
    list-style-type: none;
    padding-left: 0;
    margin-top: 1.5rem;
}

.advantage-list li {
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.advantage-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.case-study-card {
    background-color: var(--white);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.case-header {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e9ecef;
}

.case-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 0.75rem;
    font-size: 0.875rem;
    color: #6c757d;
}

.partner-card {
    background-color: var(--white);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: var(--transition);
}

.partner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.partner-quote {
    position: relative;
}

.partner-quote i {
    font-size: 2rem;
    color: var(--primary-color);
    opacity: 0.2;
    position: absolute;
    top: -10px;
    left: -10px;
}

.partner-info {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e9ecef;
}

.partner-name {
    font-weight: 700;
    color: var(--primary-color);
}

.partner-position {
    font-size: 0.875rem;
    color: #6c757d;
}


.industries-intro {
    padding: var(--section-padding);
}

.industry-card {
    background-color: var(--white);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.industry-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.industry-image {
    height: 100%;
    min-height: 300px;
}

.industry-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.industry-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.industry-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.industry-title {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.industry-subtitle {
    font-size: 1.25rem;
    margin: 1.5rem 0 0.75rem;
    color: var(--secondary-color);
}

.industry-features,
.industry-solutions {
    list-style-type: none;
    padding-left: 0;
}

.industry-features li,
.industry-solutions li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.industry-features li:before,
.industry-solutions li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 1.25rem;
    line-height: 1;
}

.industry-contact-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
}


.guide-sidebar {
    background-color: var(--white);
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

.guide-nav-title {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #e9ecef;
}

.guide-nav-list {
    list-style-type: none;
    padding-left: 0;
}

.guide-nav-list li {
    margin-bottom: 0.75rem;
}

.guide-nav-list a {
    display: block;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    transition: var(--transition);
}

.guide-nav-list a:hover,
.guide-nav-list a.active {
    background-color: var(--light-blue);
    color: var(--primary-color);
}

.guide-section {
    padding: 2rem;
    background-color: var(--white);
    border-radius: 1rem;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

.guide-section-header {
    margin-bottom: 2rem;
}

.guide-section-title {
    font-size: 2rem;
    color: var(--primary-color);
}

.guide-note,
.guide-tip {
    padding: 1.5rem;
    border-radius: 0.5rem;
    margin: 1.5rem 0;
}

.guide-note {
    background-color: var(--light-blue);
    border-left: 5px solid var(--primary-color);
}

.guide-tip {
    background-color: #f1f8e9;
    border-left: 5px solid var(--emerald-color);
}

.guide-note h4,
.guide-tip h4 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.feature-card {
    background-color: var(--bg-light);
    border-radius: 1rem;
    padding: 1.5rem;
    height: 100%;
    transition: var(--transition);
}

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

.feature-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.feature-icon i {
    font-size: 1.25rem;
    color: var(--white);
}

.accordion-button:not(.collapsed) {
    background-color: var(--light-blue);
    color: var(--primary-color);
}

.accordion-button:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(13, 46, 89, 0.25);
}


.contact-info {
    height: 100%;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.25rem;
    color: var(--white);
}

.contact-text h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.contact-text p {
    margin-bottom: 0.25rem;
}


.policy-section,
.terms-section,
.cookie-policy-section {
    margin-bottom: 3rem;
}

.policy-section h2,
.terms-section h2,
.cookie-policy-section h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #e9ecef;
}

.policy-section h3,
.terms-section h3,
.cookie-policy-section h3 {
    color: var(--secondary-color);
    margin: 1.5rem 0 1rem;
}

.policy-section ul,
.terms-section ul,
.cookie-policy-section ul {
    margin-bottom: 1.5rem;
}


.thanks-section {
    background-color: var(--bg-light);
}

.thanks-icon {
    font-size: 5rem;
    color: var(--emerald-color);
}


@media (max-width: 1199.98px) {
    :root {
        --section-padding: 80px 0;
    }
    
    .hero-content h1 {
        font-size: 3.5rem;
    }
    
    .typed-container {
        font-size: 1.75rem;
    }
}

@media (max-width: 991.98px) {
    :root {
        --section-padding: 60px 0;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .typed-container {
        font-size: 1.5rem;
        height: 60px;
    }
    
    .navbar-collapse {
        background-color: var(--white);
        padding: 1rem;
        border-radius: 0.5rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        margin-top: 1rem;
    }
    
    .about-image-container:before {
        top: 10px;
        left: 10px;
    }
    
    .industry-image {
        min-height: 250px;
    }
}

@media (max-width: 767.98px) {
    :root {
        --section-padding: 50px 0;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .typed-container {
        font-size: 1.25rem;
        height: 50px;
    }
    
    .about-image-container {
        margin-bottom: 2rem;
    }
    
    .cookie-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .cookie-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .contact-detail {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .contact-text {
        text-align: center;
    }
}

@media (max-width: 575.98px) {
    :root {
        --section-padding: 40px 0;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .typed-container {
        font-size: 1rem;
        height: 40px;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .advantage-image {
        height: 200px;
    }
    
    .industry-image {
        min-height: 200px;
    }
}