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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background-color: #ffffff;
    color: #000000;
    line-height: 1.5;
    scroll-behavior: smooth;
}

:root {
    --primary-green: #67b040;
    --primary-orange: #ffb376;
    --white: #ffffff;
    --black: #000000;
    --gray-light: #f7f7f7;
    --gray-border: #eaeaea;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

/* Header */
.header {
    background: #ffffff;
    border-bottom: 1px solid var(--gray-border);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    flex-wrap: wrap;
}

.logo a {
    font-size: 28px;
    font-weight: 700;
    text-decoration: none;
    color: var(--black);
    letter-spacing: -0.3px;
}

.logo span {
    color: var(--primary-green);
    font-weight: 600;
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
    align-items: center;
    flex-wrap: wrap;
}

.nav-links a {
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    color: var(--black);
    transition: 0.2s;
}

.nav-links a:hover {
    color: var(--primary-green);
}

/* Language Dropdown Styles */
.language-dropdown {
    position: relative;
    display: inline-block;
}

.lang-current {
    background: var(--primary-green);
    color: white;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    border: none;
    transition: 0.2s;
}

.lang-current:hover {
    background: #4f8a30;
}

.lang-current i {
    font-size: 0.75rem;
    transition: transform 0.2s;
}

.language-dropdown.open .lang-current i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: white;
    border: 1px solid var(--gray-border);
    border-radius: 16px;
    padding: 8px 0;
    margin: 0;
    list-style: none;
    min-width: 140px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
    z-index: 1000;
}

.language-dropdown.open .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 10px 20px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: background 0.2s;
    color: var(--black);
}

.dropdown-menu li:hover {
    background: var(--gray-light);
}

/* Hero */
.hero {
    background: linear-gradient(135deg, #ffffff 0%, #fff7f0 100%);
    padding: 60px 0 70px;
    border-bottom: 1px solid var(--gray-border);
}

.hero-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 48px;
}

.hero-content {
    flex: 1.2;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--black);
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.2rem;
    color: #3a3a3a;
    margin-bottom: 32px;
    max-width: 560px;
}

.hero-btn {
    background: var(--primary-green);
    color: white;
    border: none;
    padding: 14px 34px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 40px;
    cursor: pointer;
    transition: 0.2s;
    box-shadow: 0 4px 12px rgba(103, 176, 64, 0.25);
}

.hero-btn:hover {
    background: #4f8a30;
    transform: translateY(-2px);
}

.hero-image {
    flex: 1;
    background: #fef5ea;
    border-radius: 32px;
    padding: 30px 20px;
    text-align: center;
    min-height: 280px;
    border: 1px solid var(--gray-border);
}

.hero-illustration {
    font-size: 100px;
    color: var(--primary-green);
}

.hero-image p {
    margin-top: 20px;
    font-weight: 500;
    color: var(--black);
}

/* Solutions */
.solutions {
    padding: 80px 0;
    background: #ffffff;
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--black);
}

.section-sub {
    text-align: center;
    color: #4a4a4a;
    max-width: 700px;
    margin: 0 auto 56px auto;
    font-size: 1.1rem;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-bottom: 60px;
}

.solution-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 32px 28px;
    transition: all 0.25s;
    border: 1px solid var(--gray-border);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.02);
    cursor: pointer;
}

.solution-card:hover {
    transform: translateY(-6px);
    border-color: var(--primary-green);
    box-shadow: 0 20px 30px -12px rgba(103, 176, 64, 0.15);
}

.card-icon {
    font-size: 2.4rem;
    color: var(--primary-green);
    margin-bottom: 24px;
}

.solution-card h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    font-weight: 600;
    color: var(--black);
}

.solution-card p {
    color: #4a4a4a;
    margin-bottom: 20px;
}

.badge-hes7 {
    background: var(--primary-orange);
    color: #000;
    display: inline-block;
    padding: 4px 14px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.75rem;
}

/* hes7 block */
.hes7-block {
    background: var(--gray-light);
    border-radius: 28px;
    padding: 28px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}

.hes7-block h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--black);
}

.hes7-btn {
    background: var(--primary-orange);
    padding: 12px 28px;
    border-radius: 40px;
    font-weight: 600;
    color: #000;
    transition: 0.2s;
    display: inline-block;
    text-decoration: none;
}

.hes7-btn:hover {
    opacity: 0.85;
}



/* Timeline - улучшенная версия с годами ближе к центру */
.timeline {
    position: relative;
    margin: 60px auto;
    padding: 40px 0;
    background: #ffffff;
}

.timeline-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.timeline-container::after {
    content: '';
    position: absolute;
    width: 3px;
    background: var(--primary-green);
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 3px;
}

.timeline-item {
    position: relative;
    width: 50%;
    padding: 20px 0;
}

.timeline-item.left {
    left: 0;
    padding-right: 60px;
}

.timeline-item.right {
    left: 50%;
    padding-left: 60px;
}

.timeline-content {
    background: #ffffff;
    border-radius: 20px;
    padding: 24px 28px;
    border: 1px solid var(--gray-border);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
}

.timeline-content:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(103, 176, 64, 0.1);
    border-color: var(--primary-green);
}

.timeline-year {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-green);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
    border-left: 4px solid var(--primary-orange);
    padding-left: 16px;
}

.timeline-content ul {
    list-style: none;
    padding-left: 0;
}

.timeline-content li {
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative;
    color: #1e1e1e;
    line-height: 1.45;
}

.timeline-content li::before {
    content: "●";
    color: var(--primary-orange);
    position: absolute;
    left: 0;
    font-size: 0.9rem;
}

/* Точки на центральной линии */
.timeline-item::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    background: white;
    border: 3px solid var(--primary-green);
    border-radius: 50%;
    top: 32px;
    z-index: 2;
    transition: all 0.3s ease;
}

.timeline-item.left::after {
    right: -8px;
}

.timeline-item.right::after {
    left: -8px;
}

.timeline-item:hover::after {
    background: var(--primary-green);
    transform: scale(1.2);
}

/* Соединительные линии от точек к блокам */
.timeline-item.left .timeline-content::before {
    content: '';
    position: absolute;
    width: 30px;
    height: 2px;
    background: var(--gray-border);
    right: -30px;
    top: 40px;
}

.timeline-item.right .timeline-content::before {
    content: '';
    position: absolute;
    width: 30px;
    height: 2px;
    background: var(--gray-border);
    left: -30px;
    top: 40px;
}

/* Адаптив для мобильных устройств */
@media (max-width: 768px) {
    .timeline-container::after {
        left: 30px;
    }
    
    .timeline-item {
        width: 100%;
        padding-left: 60px;
        padding-right: 20px;
    }
    
    .timeline-item.left {
        left: 0;
        padding-right: 20px;
    }
    
    .timeline-item.right {
        left: 0;
        padding-left: 60px;
    }
    
    .timeline-item.left::after,
    .timeline-item.right::after {
        left: 22px;
        right: auto;
    }
    
    .timeline-item.left .timeline-content::before,
    .timeline-item.right .timeline-content::before {
        display: none;
    }
    
    .timeline-year {
        font-size: 1.4rem;
    }
    
    .timeline-content {
        padding: 18px 20px;
    }
}

@media (max-width: 480px) {
    .timeline-item {
        padding-left: 50px;
    }
    
    .timeline-item.right {
        padding-left: 50px;
    }
    
    .timeline-item.left::after,
    .timeline-item.right::after {
        left: 18px;
        width: 12px;
        height: 12px;
    }
    
    .timeline-year {
        font-size: 1.2rem;
    }
    
    .timeline-content li {
        font-size: 0.9rem;
    }
}

/* Products Showcase */
.products-showcase {
    background: var(--gray-light);
    padding: 70px 0;
}

.product-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.product-item {
    flex: 1;
    min-width: 260px;
    background: white;
    border-radius: 32px;
    padding: 32px 24px;
    text-align: center;
    border: 1px solid var(--gray-border);
    transition: 0.2s;
    cursor: pointer;
}

.product-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-green);
}

.product-item i {
    font-size: 3.2rem;
    color: var(--primary-green);
    margin-bottom: 20px;
}

.product-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.quote-happiness {
    margin-top: 50px;
    text-align: center;
    font-size: 1.2rem;
    background: #fff2e6;
    padding: 24px;
    border-radius: 48px;
    color: #000;
    border-left: 8px solid var(--primary-orange);
}

/* Footer */
.footer {
    background: #111111;
    color: #dddddd;
    padding: 48px 0 32px;
}

.footer-flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
}

.wechat-card {
    background: #222222;
    padding: 16px 26px;
    border-radius: 60px;
    display: inline-flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    cursor: pointer;
    border: 1px solid var(--primary-green);
}

.wechat-card i {
    font-size: 36px;
    color: var(--primary-green);
}

.btn-copy {
    background: #FFF;
    border: none;
    padding: 8px 20px;
    border-radius: 60px;
    font-weight: 500;
    color: black;
    cursor: pointer;
    transition: 0.2s;
}

.btn-copy:hover {
    background: var(--primary-orange);
}

/* Toast */
.toast-msg {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: #000000;
    color: white;
    padding: 10px 24px;
    border-radius: 60px;
    font-size: 0.9rem;
    z-index: 200;
    opacity: 0;
    transition: 0.2s;
    pointer-events: none;
}

hr {
    margin: 28px 0 16px;
    border-color: #333;
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .nav-links {
        gap: 18px;
        margin-top: 12px;
    }
    
    .timeline::after {
        left: 20px;
    }
    
    .timeline-item {
        width: 100%;
        padding-left: 60px;
        padding-right: 20px;
    }
    
    .timeline-item.right {
        left: 0;
    }
    
    .timeline-item::after {
        left: 13px;
        right: auto;
    }
    
    .solutions-grid {
        grid-template-columns: 1fr;
    }
    
    .product-cards {
        flex-direction: column;
    }
    
    .footer-flex {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-grid {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content p {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.6rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .solution-card {
        padding: 24px 20px;
    }
    
    .timeline-item .content {
        padding: 16px 20px;
    }
    
    .hes7-block {
        flex-direction: column;
        text-align: center;
    }
}

/* Анимации */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.solution-card, .product-item, .timeline-item {
    animation: fadeInUp 0.6s ease forwards;
}

/* Дополнительные стили */
button {
    background: none;
    border: none;
    cursor: pointer;
}

a {
    text-decoration: none;
}

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

.notesCenter {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0;
    list-style: none;
}

/* Центральная линия */
.lineStyle {
	padding-top: 20px;
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #e5e5e5;
    transform: translateX(-50%);
    z-index: 1;
}

.notesLine {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, #67b040, #67b040);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 1s ease;
}

/* Анимация линии при скролле */
.notesCenter.scrolled .notesLine {
    transform: scaleY(1);
}

/* Элементы списка */
.notesCenter li {
    position: relative;
    margin-bottom: 60px;
    clear: both;
    list-style: none;
    z-index: 2;
}

/* Иконка-маркер */
.year {
    position: absolute;
    left: 50%;
    top: 0;
    width: 40px;
    height: 40px;
    margin-left: -20px;
    background: #fff;
    border-radius: 50%;
    text-align: center;
    z-index: 3;
}

.year img {
    width: 32px;
    height: 32px;
    margin-top: 4px;
    background: #67b040;
    border-radius: 50%;
    padding: 6px;
}

/* Блок с контентом */
.article {
    width: 45%;
    position: relative;
    background: #ffffff;
    border-radius: 12px;
    padding: 20px 24px;
    border: 1px solid #eaeaea;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.article:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(103, 176, 64, 0.1);
    border-color: #67b040;
}

/* Четные элементы - справа */
.notesCenter li:nth-child(even) .article {
    float: right;
}

/* Нечетные элементы - слева */
.notesCenter li:nth-child(odd) .article {
    float: left;
}

/* Год */
.articleTime {
    font-size: 24px;
    font-weight: 700;
    color: #67b040;
    display: inline-block;
    margin-bottom: 12px;
    border-left: 4px solid #ffb376;
    padding-left: 12px;
}

/* Список достижений */
.articleList {
    margin: 0;
    padding: 0;
}

.articleList p {
    margin-bottom: 10px;
    line-height: 1.5;
    color: #333;
    font-size: 14px;
}

.articleList p:last-child {
    margin-bottom: 0;
}

/* Очистка float */
.clearfix::after {
    content: '';
    display: table;
    clear: both;
}

/* Адаптив для планшетов */
@media (max-width: 768px) {
    .notesCenter {
        max-width: 100%;
        padding: 0 20px;
    }
    
    .lineStyle {
        left: 20px;
    }
    
    .year {
        left: 0;
        margin-left: 0;
        width: 32px;
        height: 32px;
    }
    
    .year img {
        width: 26px;
        height: 26px;
        padding: 4px;
    }
    
    .article {
        width: calc(100% - 60px);
        float: right !important;
        margin-left: 60px;
    }
    
    .notesCenter li:nth-child(odd) .article,
    .notesCenter li:nth-child(even) .article {
        float: right;
        margin-left: 60px;
    }
    
    .articleTime {
        font-size: 20px;
    }
}

/* Адаптив для телефонов */
@media (max-width: 480px) {
    .article {
        padding: 15px 18px;
    }
    
    .articleTime {
        font-size: 18px;
    }
    
    .articleList p {
        font-size: 13px;
    }
}

/* Анимация появления WOW */
.wow {
    visibility: hidden;
    animation-duration: 0.8s;
    animation-fill-mode: both;
}

.wow.fadeInUp {
    animation-name: fadeInUp;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 40px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
        visibility: visible;
    }
}

/* News Section */
.news-section {
    padding: 70px 0;
    background: #f8fafc;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.news-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #eaeaea;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(103, 176, 64, 0.12);
    border-color: #67b040;
}

.news-image {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.news-date {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    backdrop-filter: blur(5px);
}

.news-date i {
    margin-right: 5px;
}

.news-content {
    padding: 22px 25px 25px;
}

.news-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a1a1a;
    line-height: 1.4;
}

.news-content p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 18px;
}

.news-readmore {
    color: #67b040;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.2s;
}

.news-readmore:hover {
    gap: 12px;
    color: #4f8a30;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.pagination a,
.pagination-dots {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 8px;
    border-radius: 10px;
    background: white;
    border: 1px solid #e0e0e0;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s;
}

.pagination a:hover:not(.disabled):not(.active) {
    background: #67b040;
    border-color: #67b040;
    color: white;
}

.pagination a.active {
    background: #67b040;
    border-color: #67b040;
    color: white;
}

.pagination a.disabled {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
}

.pagination-dots {
    border: none;
    background: transparent;
}

/* Адаптив */
@media (max-width: 768px) {
    .news-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .news-image {
        height: 180px;
    }
    
    .news-content {
        padding: 18px 20px;
    }
    
    .news-content h3 {
        font-size: 1.1rem;
    }
    
    .pagination a,
    .pagination-dots {
        min-width: 35px;
        height: 35px;
        font-size: 0.85rem;
    }
}


/* Features Section - Две колонки */
.features-section {
    padding: 20px 0;
    background: linear-gradient(135deg, #ffffff 0%, #fff7f0 100%);
    border-bottom: 1px solid var(--gray-border);
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 40px;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-item:hover {
    transform: translateX(8px);
    border-color: #67b040;
    box-shadow: 0 8px 20px rgba(103, 176, 64, 0.12);
}


/* ФИНАЛЬНОЕ ПЕРЕОПРЕДЕЛЕНИЕ ДЛЯ ИКОНОК - НЕ УДАЛЯТЬ */
.feature-icon {
    width: 50px !important;
    height: 50px !important;
    min-width: 50px !important;
    background: #ffffff !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: hidden !important;
}

.feature-icon img {
    width: 30px !important;
    height: 30px !important;
    object-fit: contain !important;
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    filter: none !important;
    background: transparent !important;
    position: static !important;
    max-width: none !important;
}

.feature-main-image {
    display: block !important;
    max-width: 800px !important;
    height: auto !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.feature-item:hover .feature-icon {
    background: #ffb376;
    transform: scale(1.05);
}

/* === ПРИНУДИТЕЛЬНЫЕ СТИЛИ ДЛЯ ТЕКСТА === */
.feature-text,
.feature-text h4 {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    color: #000000 !important;
    font-size: 1rem !important;
    font-weight: 500 !important;
    line-height: 1.3 !important;
    margin: 0 !important;
    padding: 0 !important;
    background: transparent !important;
}

.feature-item {
    display: flex !important;
    align-items: center !important;
    gap: 18px !important;
    padding: 5px 10px !important;
    background: #ffffff !important;
    border-radius: 60px !important;
    border: 1px solid #eaeaea !important;
    opacity: 1 !important;
    visibility: visible !important;
}


/* Правая колонка - картинка */
.features-image {
    position: relative;
    text-align: center;
}


.feature-main-image:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 50px rgba(103, 176, 64, 0.15);
}

.image-badge {
    position: absolute;
    bottom: -15px;
    right: 20px;
    background: #ffb376;
    color: #1a1a1a;
    padding: 8px 18px;
    border-radius: 40px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}


/* Модальное окно */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(3px);
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: #ffffff;
    max-width: 500px;
    width: 90%;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    animation: modalFadeIn 0.3s ease;
    position: relative;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    padding: 24px 28px 12px;
    border-bottom: 1px solid #eaeaea;
}

.modal-header h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #67b040;
    margin: 0;
}

.modal-body {
    padding: 20px 28px 28px;
}

.modal-body p {
    margin-bottom: 16px;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #1a1a1a;
}

.modal-body i {
    width: 24px;
    color: #67b040;
    font-size: 1.2rem;
}

.modal-body a {
    color: #1a1a1a;
    text-decoration: none;
    border-bottom: 1px dashed #67b040;
}

.modal-body a:hover {
    color: #67b040;
}

.modal-slogan {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid #eaeaea;
    font-style: italic;
    color: #ffb376;
    font-weight: 500;
    text-align: center;
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    color: #aaa;
    transition: 0.2s;
}

.modal-close:hover {
    color: #67b040;
}

/* Адаптив */
@media (max-width: 600px) {
    .modal-header h3 {
        font-size: 1.3rem;
    }
    .modal-body p {
        font-size: 0.9rem;
        flex-wrap: wrap;
        gap: 8px;
    }
    .modal-body i {
        width: 20px;
    }
}