/* === BONSEEDS HOMEPAGE 2025 === */

/* Container fix */
.bonseeds-homepage .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

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

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.5) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 10;
    color: white;
    text-align: center;
    width: 100%;
    padding: 0 20px;
}

.hero-badge {
    display: inline-block;
    padding: 10px 24px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 32px;
    backdrop-filter: blur(10px);
}

/* .hero-title стили перенесены в hero-unified.css */

.text-gradient {
    background: linear-gradient(135deg, #84CC16 0%, #3B82F6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* .hero-subtitle стили перенесены в hero-unified.css */

/* Hero Stats */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 800px;
    margin: 60px auto;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    display: block;
    margin-bottom: 8px;
    color: white;
}

.stat-label {
    font-size: 14px;
    text-transform: uppercase;
    opacity: 0.8;
    letter-spacing: 1px;
    color: white;
}

/* Hero Actions */
.hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, #84CC16 0%, #65A30D 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
    color: white;
}

.btn-glass {
    background: rgba(255,255,255,0.1);
    color: white;
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
}

.btn-glass:hover {
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.3);
    color: white;
}

/* Sections */
section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
}

.section-label {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(16, 185, 129, 0.1);
    color: #84CC16;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.section-title {
    font-size: 48px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #111827;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 20px;
    color: #6B7280;
    line-height: 1.6;
}

/* Products Showcase */
.products-showcase {
    background: #F3F4F6;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 40px;
}

.product-category {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-category:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.category-visual {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.category-image {
    width: 100%;
    height: 100%;
    position: relative;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.product-category:hover .category-image img {
    transform: scale(1.1);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.7) 100%);
}

.floating-stats {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    display: flex;
    gap: 20px;
}

.float-item {
    background: rgba(255,255,255,0.95);
    padding: 16px 24px;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: baseline;
    gap: 4px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.float-item .value {
    font-size: 32px;
    font-weight: 800;
    color: #84CC16;
}

.float-item .unit {
    font-size: 14px;
    color: #6B7280;
    font-weight: 500;
}

.category-content {
    padding: 40px;
}

.category-title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 16px;
    color: #111827;
}

.category-description {
    font-size: 18px;
    color: #6B7280;
    line-height: 1.6;
    margin-bottom: 32px;
}

.category-features {
    margin: 32px 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 16px;
    color: #111827;
}

.feature svg {
    color: #84CC16;
    flex-shrink: 0;
}

.products-list {
    margin: 32px 0;
    padding: 24px;
    background: #F3F4F6;
    border-radius: 16px;
}

.products-list h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #111827;
}

.products-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.products-list li {
    padding: 8px 0;
    color: #6B7280;
}

.products-list strong {
    color: #111827;
    font-weight: 600;
}

.category-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: white !important;
    font-weight: 600;
    font-size: 18px;
    text-decoration: none;
    transition: gap 0.3s;
    background: linear-gradient(135deg, #84CC16 0%, #65A30D 100%);
    padding: 12px 24px;
    border-radius: 8px;
}

.category-link:hover {
    gap: 16px;
    color: white !important;
    background: linear-gradient(135deg, #65A30D 0%, #4A7C0A 100%);
}

/* Advantages Section */
.advantages-section {
    background: white;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.advantage-card {
    background: #F3F4F6;
    padding: 40px;
    border-radius: 24px;
    transition: all 0.3s;
}

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

.advantage-icon {
    position: relative;
    width: 80px;
    height: 80px;
    margin-bottom: 24px;
}

.icon-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #84CC16 0%, #65A30D 100%);
    border-radius: 20px;
    opacity: 0.1;
}

.advantage-icon svg {
    position: relative;
    width: 48px;
    height: 48px;
    margin: 16px;
    color: #84CC16;
}

.advantage-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #111827;
}

.advantage-card p {
    color: #6B7280;
    line-height: 1.6;
}

/* Technology Section */
.technology-section {
    background: #F3F4F6;
}

.tech-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.tech-card {
    background: white;
    padding: 32px;
    border-radius: 20px;
    margin-bottom: 24px;
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.tech-card.active {
    border-color: #84CC16;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.tech-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.tech-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: #111827;
}

.tech-badge {
    padding: 6px 16px;
    background: rgba(16, 185, 129, 0.1);
    color: #84CC16;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.tech-benefits {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.tech-benefits li {
    padding: 8px 0 8px 24px;
    position: relative;
    color: #6B7280;
}

.tech-benefits li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #84CC16;
    font-weight: bold;
}

.tech-visual {
    position: relative;
}

.tech-visual img {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

/* Economics Section */
.economics-section {
    background: white;
}

.economics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.economics-card {
    background: #F3F4F6;
    padding: 40px;
    border-radius: 24px;
}

.economics-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #111827;
}

.economics-data {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.data-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.data-row.highlight {
    background: white;
    margin: 16px -16px 0;
    padding: 16px;
    border-radius: 12px;
    border: none;
}

.data-row .label {
    color: #6B7280;
}

.data-row .value {
    font-size: 20px;
    font-weight: 700;
    color: #111827;
}

.data-row.highlight .value {
    color: #84CC16;
    font-size: 28px;
}

/* Results Section */
.results-section {
    background: #F3F4F6;
}

.result-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(132, 204, 22, 0.1);
    position: relative;
}

.result-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #84CC16 0%, #65A30D 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.result-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-color: rgba(132, 204, 22, 0.3);
}

.result-card:hover::before {
    opacity: 1;
}

.result-image {
    height: 240px;
    overflow: hidden;
}

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

.result-content {
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    background: white;
}

.result-header {
    margin-bottom: 4px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(132, 204, 22, 0.1);
}

.result-content h3 {
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 2px;
    color: #111827;
    line-height: 1.3;
    letter-spacing: -0.02em;
    position: relative;
}

.result-content h3::before {
    content: '';
    display: inline-block;
    width: 18px;
    height: 18px;
    margin-right: 8px;
    vertical-align: middle;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%2384CC16' stroke-width='2'%3E%3Cpath d='M12 2l3.09 6.26L22 9.27l-5 4.87 1.18 6.88L12 17.77l-6.18 3.25L7 14.14 2 9.27l6.91-1.01L12 2z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.result-location {
    font-size: 12px;
    font-weight: 500;
    color: #6B7280;
    line-height: 1.3;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 4px;
}

.result-location::before {
    content: '';
    display: inline-block;
    width: 12px;
    height: 12px;
    margin-right: 4px;
    vertical-align: middle;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2'%3E%3Cpath d='M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0 1 18 0z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.result-yield {
    font-size: 42px;
    font-weight: 900;
    background: linear-gradient(135deg, #84CC16 0%, #65A30D 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 8px 0 4px;
    line-height: 1;
    letter-spacing: -0.03em;
    position: relative;
    display: inline-block;
}

.result-yield::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #84CC16 0%, transparent 100%);
    border-radius: 2px;
}

.result-hybrid {
    font-size: 12px;
    color: #65A30D;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin: 6px 0;
    padding: 6px 12px;
    background: linear-gradient(135deg, rgba(132, 204, 22, 0.15) 0%, rgba(101, 163, 13, 0.1) 100%);
    border-radius: 8px;
    display: inline-block;
    width: fit-content;
    border: 1px solid rgba(132, 204, 22, 0.2);
    box-shadow: 0 2px 4px rgba(132, 204, 22, 0.1);
}

.result-content > p:not(.result-yield):not(.result-hybrid):not(.result-location):not(.result-author) {
    color: #374151;
    line-height: 1.65;
    margin: 8px 0;
    flex: 1;
    font-size: 14px;
    font-style: italic;
    position: relative;
    padding-left: 16px;
}

.result-content > p:not(.result-yield):not(.result-hybrid):not(.result-location):not(.result-author)::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -4px;
    font-size: 32px;
    color: rgba(132, 204, 22, 0.3);
    font-family: Georgia, serif;
    line-height: 1;
}

.result-author {
    color: #111827;
    font-weight: 600;
    font-style: normal;
    margin-top: auto;
    padding-top: 12px;
    border-top: 2px solid rgba(132, 204, 22, 0.15);
    font-size: 13px;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    gap: 6px;
}

.result-author::before {
    content: '—';
    color: #84CC16;
    font-weight: 700;
    font-size: 16px;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #84CC16 0%, #65A30D 100%);
    color: white;
    text-align: center;
    padding: 120px 0;
}

.cta-content h2 {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 24px;
    color: white;
}

.cta-content p {
    font-size: 24px;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto 48px;
}

.cta-actions {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.btn-lg {
    padding: 20px 40px;
    font-size: 18px;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tech-showcase {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 48px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .floating-stats {
        flex-direction: column;
    }
    
    .advantages-grid,
    .economics-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-features {
        flex-direction: column;
        gap: 20px;
    }
}

/* Swiper Styles */
.swiper {
    padding-bottom: 50px;
}

.swiper-pagination {
    bottom: 0 !important;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #84CC16;
    opacity: 0.3;
}

.swiper-pagination-bullet-active {
    opacity: 1;
}
