/* CSS Variables */
:root {
    --primary-bg: #f7f7f7;
    --accent-blue: #76a8a2;
    --accent-dark: #182621;
    --accent-rose: #a04b5b;
    --light-bg: #e4efef;
    --white-bg: #ffffff;
    --text-dark: #183e3a;
    --text-muted: #6c757d;
    --border-light: #dee2e6;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 8px 25px rgba(0, 0, 0, 0.15);
    --border-radius: 3px;
    --transition: all 0.3s ease;
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Rubik', sans-serif;
    background-color: var(--primary-bg);
    color: var(--text-dark);
    line-height: 1.6;
    padding-top: 80px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    color: var(--accent-dark);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-dark);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* Utility Classes */
.section-padding {
    padding: 80px 0;
}

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

/* Header Styles */
.header-section {
    background-color: var(--accent-dark);
    box-shadow: var(--shadow);
    z-index: 1030;
}

.navbar-brand {
    color: var(--white-bg) !important;
    font-size: 1.8rem !important;
    font-weight: 700;
}

.navbar-nav .nav-link {
    color: var(--white-bg) !important;
    font-weight: 500;
    margin: 0 15px;
    transition: var(--transition);
}

.navbar-nav .nav-link:hover {
    color: var(--accent-blue) !important;
}

.offcanvas-body {
    background-color: var(--white-bg);
}

.offcanvas .nav-link {
    color: var(--text-dark) !important;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.hero-content {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-hover);
    text-align: center;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

/* Button Styles */
.btn-custom {
    background-color: var(--accent-blue);
    border-color: var(--accent-blue);
    color: var(--white-bg);
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 4px;
    transition: var(--transition);
}

.btn-custom:hover {
    background-color: var(--accent-dark);
    border-color: var(--accent-dark);
    color: var(--white-bg);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}


/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--accent-dark);
    color: var(--white-bg);
    padding: 1.5rem;
    z-index: 1040;
    transform: translateY(100%);
    transition: var(--transition);
}

.cookie-popup.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.cookie-content p {
    margin: 0;
    flex: 1;
    min-width: 300px;
}

.cookie-content a {
    color: var(--accent-blue);
    text-decoration: none;
}

.cookie-content a:hover {
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.cookie-buttons .btn {
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
}

/* Footer */
.footer-section {
    background-color: var(--accent-dark);
    color: var(--white-bg);
    padding: 3rem 0 1rem;
}

.footer-title {
    color: var(--white-bg);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-subtitle {
    color: var(--accent-blue);
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-text {
    color: #bdc3c7;
    line-height: 1.6;
}

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

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

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent-blue);
}

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

.footer-contact i {
    margin-right: 0.5rem;
    margin-top: 0.2rem;
    color: var(--accent-blue);
    font-size: 1rem;
}

.footer-divider {
    border-color: #5a6c7d;
    margin: 2rem 0 1rem;
}

.footer-copyright {
    color: #95a5a6;
    margin: 0;
    font-size: 0.9rem;
}

/* Page Header for Secondary Pages */
.page-header {
    background: linear-gradient(135deg, var(--light-bg), var(--white-bg));
    padding: 4rem 0 3rem;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-dark);
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* Content Sections */
.content-section {
    background: var(--white-bg);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
}

.content-section h2 {
    color: var(--accent-dark);
    font-weight: 600;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--accent-blue);
    padding-bottom: 0.5rem;
}

.content-section h3 {
    color: var(--accent-dark);
    font-weight: 600;
    margin: 2rem 0 1rem;
}

.content-section p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.content-section ul, .content-section ol {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.content-section li {
    margin-bottom: 0.5rem;
}

/* Contact Form */
.contact-form {
    background: var(--white-bg);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.contact-form h3 {
    color: var(--accent-dark);
    margin-bottom: 2rem;
    text-align: center;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    color: var(--text-dark);
    font-weight: 500;
    margin-bottom: 0.5rem;
    display: block;
}

.form-control {
    border: 2px solid var(--border-light);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    transition: var(--transition);
    font-family: 'Rubik', sans-serif;
}

.form-control:focus {
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 0.2rem rgba(118, 143, 168, 0.25);
}

.btn-submit {
    background-color: var(--accent-blue);
    border-color: var(--accent-blue);
    color: var(--white-bg);
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 25px;
    transition: var(--transition);
    width: 100%;
}

.btn-submit:hover {
    background-color: var(--accent-dark);
    border-color: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

/* Contact Info */
.contact-info {
    background: var(--white-bg);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.contact-info h3 {
    color: var(--accent-dark);
    margin-bottom: 2rem;
    text-align: center;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--light-bg);
    border-radius: 8px;
    transition: var(--transition);
}

.contact-item:hover {
    background: #d6dae2;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: var(--accent-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

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

.contact-details h6 {
    color: var(--accent-dark);
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.contact-details p {
    color: var(--text-muted);
    margin: 0;
    line-height: 1.4;
}

/* Map Container */
.map-container {
    background: var(--white-bg);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    margin-top: 2rem;
}

.map-container h4 {
    color: var(--accent-dark);
    margin-bottom: 1.5rem;
    text-align: center;
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
    border-radius: 8px;
}

/* Thank You Page */
.thank-you-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--light-bg), var(--white-bg));
}

.thank-you-card {
    background: var(--white-bg);
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-hover);
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
}

.thank-you-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-rose));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.thank-you-icon i {
    font-size: 2.5rem;
    color: var(--white-bg);
}

.thank-you-card h2 {
    color: var(--accent-dark);
    margin-bottom: 1rem;
}

.thank-you-card p {
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-content {
        padding: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-padding {
        padding: 60px 0;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        justify-content: center;
    }
    
    .steps-timeline {
        padding-left: 1rem;
    }
    
    .steps-timeline::before {
        left: 20px;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        margin-right: 1rem;
    }
    
    .step-content {
        margin-top: 0.5rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .contact-form,
    .contact-info {
        padding: 2rem;
    }
    
    .thank-you-card {
        padding: 2rem;
        margin: 1rem;
    }
    
    .map-container iframe {
        height: 300px;
    }
}

@media (max-width: 576px) {
    .hero-content {
        padding: 1.5rem;
    }
    
    .service-card,
    .tip-card,
    .review-card {
        padding: 1.5rem;
    }
    
    .footer-contact p {
        flex-direction: column;
    }
    
    .footer-contact i {
        margin-bottom: 0.5rem;
    }
}


/* new styles  */

:root {
    --primary-bg: #f7f7f7;
    --accent-blue: #76a8a2;
    --accent-dark: #182621;
    --accent-rose: #a04b5b;
    --light-bg: #e4efef;
    --white-bg: #ffffff;
    --text-dark: #183e3a;
    --text-muted: #6c757d;
    --border-light: #dee2e6;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 8px 25px rgba(0, 0, 0, 0.15);
    --border-radius: 3px;
    --transition: all 0.3s ease;
  }
  
  /* Общие стили */
  .section-padding {
    padding: 5rem 0;
  }
  
  .section-heading {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    position: relative;
  }
  
  /* Стили для блока "Современные сельхозтехнологии" */
  .tech-section {
    background-color: var(--white-bg);
    position: relative;
    overflow: hidden;
  }
  
  .tech-section::before {
    content: "";
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background-color: var(--accent-blue);
    opacity: 0.1;
    top: -100px;
    right: -100px;
    z-index: 0;
  }
  
  .tech-card {
    border-left: 4px solid var(--accent-blue);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    background-color: var(--white-bg);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-radius: var(--border-radius);
  }
  
  .tech-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-5px);
  }
  
  .tech-card-title {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: var(--accent-dark);
    font-size: 1.25rem;
    font-weight: 600;
  }
  
  .tech-card-title .material-icons {
    margin-right: 0.75rem;
    color: var(--accent-blue);
    font-size: 1.75rem;
  }
  
  .tech-card-text {
    color: var(--text-muted);
    line-height: 1.6;
  }
  
  /* Стили для блока "Аналитика и факты" */
  .analytics-section {
    background-color: var(--light-bg);
    position: relative;
  }
  
  .analytics-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
    color: var(--text-dark);
    position: relative;
    z-index: 1;
  }
  
  .analytics-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 2rem;
  }
  
  .stat-item {
    background-color: var(--white-bg);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    border-bottom: 3px solid var(--accent-blue);
    min-height: 170px;
  }
  
  .stat-item:hover {
    box-shadow: var(--shadow-hover);
  }
  
  .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-dark);
    margin-bottom: 0.5rem;
    position: relative;
    display: inline-block;
  }
  
  .stat-number::after {
    content: "+";
    position: absolute;
    top: 0;
    right: -15px;
    font-size: 1.5rem;
    color: var(--accent-blue);
  }
  
  .stat-label {
    color: var(--text-muted);
    font-weight: 500;
  }
  
  .analytics-description {
    background-color: var(--white-bg);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow);
    position: relative;
    z-index: 1;
  }
  
  .analytics-description p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1rem;
  }
  
  .analytics-description p:last-child {
    margin-bottom: 0;
  }

  /* Стили для блока "О компании" */
.about-section {
    background-color: var(--primary-bg);
    position: relative;
  }
  
  .about-card {
    background-color: var(--white-bg);
    border-radius: var(--border-radius);
    padding: 2rem;
    height: 100%;
    box-shadow: var(--shadow);
    transition: var(--transition);
  }
  
  .about-card:hover {
    box-shadow: var(--shadow-hover);
  }
  
  .about-text {
    margin-bottom: 1.5rem;
    color: var(--text-muted);
    line-height: 1.7;
  }
  
  .about-text strong {
    color: var(--text-dark);
  }
  
  .about-image {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-bottom: 1.5rem;
    position: relative;
  }
  
  .about-image img {
    transition: var(--transition);
    width: 100%;
    height: auto;
  }
  
  .about-image:hover img {
    transform: scale(1.03);
  }
  
  .about-image::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--accent-blue), var(--accent-dark));
  }
  
  /* Стили для блока "Преимущества технологий" */
  .advantages-section {
    background-color: var(--accent-dark);
    color: var(--white-bg);
    position: relative;
    overflow: hidden;
  }
  

  
  .advantages-heading {
    color: var(--white-bg);
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
  }
  
  .advantages-heading::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--accent-blue);
  }
  
  .advantage-item {
    margin-bottom: 2rem;
    display: flex;
    align-items: flex-start;
  }
  
  .advantage-icon {
    flex-shrink: 0;
    background-color: var(--accent-blue);
    color: var(--white-bg);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
  }
  
  .advantage-content {
    flex-grow: 1;
  }
  
  .advantage-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--white-bg);
  }
  
  .advantage-text {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
  }
  
  /* Стили для блока "Популярная Сельхоз техника" */
  .equipment-section {
    background-color: var(--white-bg);
    position: relative;
  }
  
  .equipment-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
    color: var(--text-dark);
  }
  
  .equipment-card {
    background-color: var(--white-bg);
    border: 1px solid var(--border-light);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
  }
  
  .equipment-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-5px);
    border-color: var(--accent-blue);
  }
  
  .equipment-image {
    position: relative;
    overflow: hidden;
  }
  
  .equipment-image img {
    width: 100%;
    height: auto;
    transition: var(--transition);
  }
  
  .equipment-card:hover .equipment-image img {
    transform: scale(1.05);
  }
  
  .equipment-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: var(--accent-blue);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 600;
  }
  
  .equipment-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
  }
  
  .equipment-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--accent-dark);
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 0.5rem;
  }
  
  .equipment-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--accent-blue);
  }
  
  .equipment-description {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1rem;
    flex-grow: 1;
  }
  /* Стили для блока "Команда и эксперты" */
.team-section {
    background-color: var(--light-bg);
    position: relative;
  }
  
  .team-container {
    position: relative;
    z-index: 1;
  }
  
  .team-card {
    background: var(--white-bg);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    position: relative;
  }
  
  .team-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-5px);
  }
  
  .team-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 250px;
  }
  
  .team-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
  }
  
  .team-card:hover .team-image-wrapper img {
    transform: scale(1.05);
  }
  
  .team-info {
    padding: 1.5rem;
    text-align: center;
    position: relative;
  }
  
  .team-info::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(to right, var(--accent-blue), var(--accent-dark));
  }
  
  .team-name {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--accent-dark);
  }
  
  .team-position {
    font-size: 0.875rem;
    color: var(--accent-blue);
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  .team-description {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
  }
  
  .team-social {
    margin-top: 1rem;
  }
  
  .social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background-color: var(--primary-bg);
    color: var(--accent-dark);
    border-radius: 50%;
    margin: 0 0.25rem;
    transition: var(--transition);
  }
  
  .social-icon:hover {
    background-color: var(--accent-blue);
    color: var(--white-bg);
  }
  
  /* Стили для блока "Миссия и ценности" */
  .mission-section {
    background-color: var(--white-bg);
    position: relative;
    overflow: hidden;
  }
  

  .mission-content {
    position: relative;
    z-index: 1;
  }
  
  .mission-heading {
    position: relative;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
  }
  
  .mission-heading::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 70px;
    height: 3px;
    background-color: var(--accent-blue);
  }
  
  .mission-text {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1.5rem;
  }
  
  .mission-text:last-child {
    margin-bottom: 0;
  }
  
  .mission-highlight {
    color: var(--accent-dark);
    font-weight: 600;
  }
  
  .mission-image-container {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    height: 100%;
  }
  
  .mission-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
  }
  
  .mission-image-container:hover img {
    transform: scale(1.03);
  }
  
  .mission-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    color: var(--white-bg);
    font-weight: 600;
  }
  
  /* Стили для блока "Наш подход" */
  .approach-section {
    background-color: var(--accent-dark);
    position: relative;
  }
  
  .approach-pattern {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(135deg, rgba(255,255,255,0.05) 25%, transparent 25%), 
                      linear-gradient(225deg, rgba(255,255,255,0.05) 25%, transparent 25%), 
                      linear-gradient(45deg, rgba(255,255,255,0.05) 25%, transparent 25%), 
                      linear-gradient(315deg, rgba(255,255,255,0.05) 25%, transparent 25%);
    background-position: 40px 0, 40px 0, 0 0, 0 0;
    background-size: 80px 80px;
    background-repeat: repeat;
    opacity: 0.3;
  }
  
  .approach-content {
    position: relative;
    z-index: 1;
    border-radius: var(--border-radius);
    padding: 3rem;
  }
  
  .approach-heading {
    color: var(--white-bg);
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
  }
  
  .approach-heading::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 70px;
    height: 3px;
    background-color: var(--accent-blue);
  }
  
  .approach-text {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin-bottom: 2rem;
    position: relative;
    padding-left: 1.5rem;
  }
  
  .approach-text:last-child {
    margin-bottom: 0;
  }
  
  .approach-text::before {
    content: "";
    position: absolute;
    top: 0.7rem;
    left: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--accent-blue);
  }
  
  .approach-values {
    display: flex;
    flex-wrap: wrap;
    margin-top: 2rem;
  }
  
  .approach-value {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 0.5rem 1.25rem;
    margin-right: 1rem;
    margin-bottom: 1rem;
    color: var(--white-bg);
    font-size: 0.9rem;
    transition: var(--transition);
  }
  
  .approach-value:hover {
    background-color: var(--accent-blue);
    transform: translateY(-2px);
  }
  
  .approach-quote {
    font-style: italic;
    padding: 1.5rem;
    margin-top: 2rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-left: 3px solid var(--accent-blue);
    color: rgba(255, 255, 255, 0.9);
  }
  
  .approach-quote p {
    margin-bottom: 0;
  }
  /* Стили для блока "Современные решения" */
.solutions-section {
    background-color: var(--primary-bg);
    position: relative;
    overflow: hidden;
  }
  
  .solutions-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
  }
  
  .solutions-wrapper {
    position: relative;
  }
  
  .solutions-connector {
    position: absolute;
    top: 10%;
    left: 50%;
    height: 80%;
    width: 2px;
    background-color: var(--accent-blue);
    opacity: 0.3;
    z-index: 0;
  }
  
  .solution-item {
    position: relative;
    z-index: 1;
    margin-bottom: 4rem;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
  }
  
  .solution-item:last-child {
    margin-bottom: 0;
  }
  
  .solution-content {
    background-color: var(--white-bg);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    width: 100%;
  }
  
  .solution-item:hover .solution-content {
    box-shadow: var(--shadow-hover);
    transform: translateY(-5px);
  }
  
  .solution-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: var(--accent-dark);
    color: var(--white-bg);
    border-radius: 50%;
    font-weight: 700;
    position: absolute;
    top: -25px;
    left: 2rem;
  }
  
  .solution-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--accent-dark);
    margin-bottom: 1rem;
  }
  
  .solution-description {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1.5rem;
  }
  
  .solution-image {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    margin-top: 1.5rem;
  }
  
  .solution-image img {
    width: 100%;
    height: auto;
    transition: var(--transition);
  }
  
  .solution-item:hover .solution-image img {
    transform: scale(1.03);
  }
  
  /* Стили для блока "Агротехника в действии" */
  .action-section {
    background-color: var(--accent-dark);
    position: relative;
    overflow: hidden;
    color: var(--white-bg);
  }
  
  .action-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('./img/texture.webp') repeat;
    opacity: 0.1;
    z-index: 0;
  }
  
  .action-content {
    position: relative;
    z-index: 1;
    padding: 4rem 0;
    text-align: center;
  }
  
  .action-heading {
    color: var(--white-bg);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
  }
  
  .action-heading::before,
  .action-heading::after {
    content: "";
    position: absolute;
    height: 3px;
    background-color: var(--accent-blue);
    bottom: -0.5rem;
    width: 30px;
  }
  
  .action-heading::before {
    left: -40px;
  }
  
  .action-heading::after {
    right: -40px;
  }
  
  .action-text {
    font-size: 1.2rem;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto 2rem;
    color: rgba(255, 255, 255, 0.9);
  }
  
  .action-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
  }
  
  .action-btn {
    padding: 0.8rem 2rem;
    border-radius: 30px;
    font-weight: 500;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
  }
  
  .action-btn-primary {
    background-color: var(--accent-blue);
    color: var(--white-bg);
  }
  
  .action-btn-primary:hover {
    background-color: var(--white-bg);
    color: var(--accent-dark);
    transform: translateY(-3px);
  }
  
  .action-btn-secondary {
    background-color: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--white-bg);
  }
  
  .action-btn-secondary:hover {
    border-color: var(--white-bg);
    transform: translateY(-3px);
  }
  
  .action-btn .material-icons {
    margin-right: 0.5rem;
    font-size: 1.2rem;
  }
  
  /* Стили для блока "Инновации будущего" */
  .innovation-section {
    background-color: var(--white-bg);
    position: relative;
    overflow: hidden;
  }
  
  .innovation-container {
    position: relative;
    z-index: 1;
  }
  
  .innovation-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background-color: var(--light-bg);
    clip-path: polygon(100px 0, 100% 0, 100% 100%, 0 100%);
    z-index: 0;
  }
  
  .innovation-content {
    position: relative;
    z-index: 2;
  }
  
  .innovation-heading {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    position: relative;
  }
  
  .innovation-subheading {
    font-size: 1.25rem;
    color: var(--accent-blue);
    font-weight: 500;
    margin-bottom: 1.5rem;
  }
  
  .innovation-text {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1.5rem;
  }
  
  .innovation-list {
    margin-top: 2rem;
    padding-left: 0;
    list-style: none;
  }
  
  .innovation-list-item {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
  }
  
  .innovation-list-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 10px;
    height: 10px;
    background-color: var(--accent-blue);
    border-radius: 50%;
  }
  
  .innovation-image-container {
    position: relative;
    z-index: 2;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    height: 100%;
    min-height: 350px;
  }
  
  .innovation-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .innovation-image-label {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1rem;
    background-color: rgba(0, 0, 0, 0.6);
    color: var(--white-bg);
    font-size: 0.9rem;
  }
  
  .innovation-badge {
    display: inline-block;
    padding: 0.35rem 1rem;
    background-color: var(--accent-blue);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 20px;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  /* Стили для блока "Актуальные новости" */
.news-section {
    background-color: var(--light-bg);
    position: relative;
    overflow: hidden;
  }

  .news-card {
    background-color: var(--white-bg);
    border-radius: var(--border-radius);
    overflow: hidden;
    height: 100%;
    position: relative;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
  }
  
  .news-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-7px);
  }
  
  .news-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
  }
  
  .news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
  }
  
  .news-card:hover .news-image img {
    transform: scale(1.05);
  }
  
  .news-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--accent-blue);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    z-index: 1;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  
  .news-date {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    font-size: 0.75rem;
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    z-index: 1;
  }
  
  .news-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
  }
  
  .news-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--accent-dark);
    margin-bottom: 1rem;
    line-height: 1.4;
    transition: var(--transition);
  }
  
  .news-card:hover .news-title {
    color: var(--accent-blue);
  }
  
  .news-excerpt {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex-grow: 1;
  }
  
  .news-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid var(--border-light);
  }
  
  .news-author {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
  }
  
  .author-image {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    margin-right: 10px;
    overflow: hidden;
  }
  
  .author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .author-name {
    color: var(--text-dark);
    font-weight: 500;
  }
  
  .news-stats {
    display: flex;
    align-items: center;
  }
  
  .stat-item {
    display: flex;
    align-items: center;
    margin-left: 15px;
    color: var(--text-muted);
    font-size: 0.85rem;
  }
  
  .stat-item .material-icons {
    font-size: 16px;
    margin-right: 3px;
  }
  
  .news-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    text-indent: -9999px;
  }
  
  .news-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 2rem;
    background-color: var(--accent-blue);
    color: white;
    font-weight: 500;
    border-radius: 30px;
    transition: var(--transition);
    border: none;
  }
  
  .news-button:hover {
    background-color: var(--accent-dark);
    box-shadow: var(--shadow);
  }
  
  .news-button .material-icons {
    margin-left: 0.5rem;
    font-size: 1.2rem;
  }
  
  /* Стили для блока "Аналитика и исследования" */
  .analytics-research-section {
    background-color: var(--white-bg);
    position: relative;
  }
  
  .analytics-container {
    position: relative;
    background-color: var(--primary-bg);
    border-radius: var(--border-radius);
    padding: 3rem;
    box-shadow: var(--shadow);
  }
  
  .analytics-header {
    margin-bottom: 2rem;
    position: relative;
  }
  
  .analytics-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
  }
  
  .analytics-title::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 70px;
    height: 3px;
    background-color: var(--accent-blue);
  }
  
  .analytics-subtitle {
    color: var(--accent-blue);
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 1rem;
  }
  
  .analytics-text {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 2rem;
  }
  
  .analytics-text:last-of-type {
    margin-bottom: 2.5rem;
  }
  
  .analytics-highlight {
    background-color: rgba(118, 168, 162, 0.1);
    padding: 2px 5px;
    border-radius: 3px;
    color: var(--accent-blue);
    font-weight: 500;
  }
  
  .analytics-box {
    background-color: var(--white-bg);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    margin-top: 2rem;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--accent-blue);
  }
  
  .analytics-box-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--accent-dark);
    margin-bottom: 1rem;
  }
  
  .analytics-metrics {
    display: flex;
    flex-wrap: wrap;
    margin: 2.5rem 0;
    padding: 1.5rem;
    background-color: var(--white-bg);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
  }
  
  .metric-item {
    flex-grow: 1;
    flex-basis: 0;
    min-width: 150px;
    text-align: center;
    padding: 1rem;
  }
  
  .metric-value {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--accent-dark);
    margin-bottom: 0.5rem;
    position: relative;
  }
  
  .metric-value::after {
    content: "%";
    position: absolute;
    top: 0;
    right: -20px;
    font-size: 1.2rem;
    color: var(--accent-blue);
  }
  
  .metric-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    max-width: 150px;
    margin: 0 auto;
    line-height: 1.4;
  }
  
  .analytics-conclusion {
    font-style: italic;
    color: var(--text-muted);
  }