

html {
    scroll-behavior: smooth;
}




/* ========== GENBA PROJECT - ГЕНЕТИЧНИЙ ЖЕТОН ========== */
/* Повністю самостійний файл, без хедера/футера */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Manrope", sans-serif;
    background-color: #f8f9fa;
    color: #1a2a32;
    line-height: 1.5;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========== HERO ========== */
.genba-hero {
    position: relative;
    background: linear-gradient(135deg, #0a1a2a 0%, #1a2a2a 100%);
    min-height: 85vh;
    display: flex;
    overflow: hidden;
    align-items: center;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 800 800" opacity="0.05"><path fill="none" d="M400 100 L500 200 L400 300 L300 200 Z" stroke="white" stroke-width="2"/><circle cx="400" cy="400" r="150" stroke="white" stroke-width="1.5" fill="none"/><path d="M200 600 L600 600" stroke="white" stroke-width="1"/><path d="M150 150 L250 150 L250 250 L150 250 Z" stroke="white" stroke-width="1"/></svg>');
    background-repeat: repeat;
    background-size: 60px;
    pointer-events: none;
}

.hero-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 20px 60px 20px;
    color: white;
    z-index: 2;
    width: 100%;
}

.hero-badge {
    display: inline-block;
    background: rgba(133, 171, 186, 0.2);
    backdrop-filter: blur(4px);
    padding: 8px 20px;
    border-radius: 40px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 30px;
    border: 1px solid rgba(133, 171, 186, 0.5);
}

.hero-title {
    font-size: clamp(42px, 8vw, 72px);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    max-width: 900px;
}

.hero-accent {
    color: #85abba;
}

.hero-subtitle {
    font-size: clamp(18px, 4vw, 22px);
    opacity: 0.9;
    max-width: 650px;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    gap: 48px;
    flex-wrap: wrap;
}

.hero-stat .stat-num {
    font-size: 42px;
    font-weight: 800;
    color: #85abba;
    display: block;
    line-height: 1.2;
}

.hero-stat span:not(.stat-num) {
    font-size: 16px;
    opacity: 0.8;
}

.btn-outline-light {
    display: inline-block;
    padding: 12px 28px;
    border: 2px solid #85abba;
    border-radius: 50px;
    color: #85abba;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    background: transparent;
    margin-top: 40px;
}

.btn-outline-light:hover {
    background: #85abba;
    color: white;
}

/* ========== ЗАГАЛЬНІ СЕКЦІЇ ========== */
.genba-section {
    padding: 80px 0;
}

.genba-section.alt-bg {
    background-color: #f0f4f7;
}

.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-header.inline-header {
    text-align: left;
    margin-bottom: 32px;
}

.section-badge {
    display: inline-block;
    background: #85abba;
    color: white;
    font-size: 13px;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 30px;
    margin-bottom: 16px;

}

.section-header h2 {
    font-size: clamp(32px, 5vw, 44px);
    font-weight: 700;
    color: #1a2a32;
}

.section-header .accent {
    color: #85abba;
}

/* ========== ПРО КОМПАНІЮ ========== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.about-text p {
    font-size: 18px;
    line-height: 1.6;
    color: #2c3e44;
    margin-bottom: 20px;
}

.about-highlight {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.highlight-card {
    background: white;
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
    border-left: 4px solid #85abba;
}

.highlight-icon {
    font-size: 32px;
    display: block;
    margin-bottom: 12px;
}

.highlight-card p {
    font-size: 16px;
    line-height: 1.5;
    color: #2c3e44;
}

/* ========== МАТЕРІАЛОЗНАВСТВО + БІО-ЗБЕРЕЖЕННЯ (double column) ========== */
.double-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.lead-text {
    font-size: 20px;
    font-weight: 500;
    color: #1a2a32;
    margin-bottom: 24px;
}

.check-list {
    list-style: none;
    padding: 0;
}

.check-list li {
    padding-left: 28px;
    position: relative;
    margin-bottom: 16px;
    font-size: 16px;
    color: #2c3e44;
}

.check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #85abba;
    font-weight: bold;
}

.spec-card {
    background: white;
    border-radius: 28px;
    padding: 32px;
    text-align: center;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(133, 171, 186, 0.3);
}

.spec-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a2a32;
}

.spec-detail {
    font-weight: 600;
    color: #85abba;
    font-size: 20px;
}

.divider {
    height: 1px;
    background: #e0e8ec;
    margin: 24px 0;
}

.power-value {
    font-size: 42px;
    font-weight: 800;
    color: #85abba;
}

.power-value span {
    font-size: 18px;
    font-weight: 400;
    color: #6a7a82;
}

.spec-note {
    font-size: 14px;
    margin-top: 12px;
    color: #8a9aa2;
}

.spec-image {
    margin-top: 24px;
    border-radius: 20px;
    overflow: hidden;
}

.spec-image img {
    width: 100%;
    display: block;
}

/* ========== КЛЮЧОВІ МОЖЛИВОСТІ (GRID) ========== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feature-card {
    background: white;
    border-radius: 28px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(133, 171, 186, 0.2);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 32px rgba(0, 0, 0, 0.1);
    border-color: #85abba;
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a2a32;
}

.feature-card p {
    font-size: 15px;
    color: #4a5a62;
}

/* ========== СТАТИСТИКА / ПОКАЗНИКИ (унікальні для GENBA) ========== */
.stats-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 32px;
    text-align: center;
}

.stat-item {
    background: white;
    border-radius: 32px;
    padding: 32px 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: #85abba;
    line-height: 1.2;
    margin-bottom: 12px;
}

.stat-desc {
    font-size: 18px;
    font-weight: 600;
    color: #1a2a32;
    margin-bottom: 8px;
}

.stat-note {
    font-size: 14px;
    color: #6a7a82;
}

/* ========== ТЕМНА СЕКЦІЯ ПЕРЕВАГ (як останній скрін) ========== */
.dark-advantage-section {
    background: linear-gradient(135deg, #0f1a1f 0%, #1a2a2f 100%);
    padding: 80px 0;
    color: white;
}

.dark-advantage-section .section-header h2 {
    color: white;
}

.dark-advantage-section .section-header .accent {
    color: #85abba;
}

.dark-advantage-section .section-badge {
    background: rgba(133, 171, 186, 0.2);
    backdrop-filter: blur(4px);
    color: white;
    border: 1px solid rgba(133, 171, 186, 0.4);
}

.advantage-dark-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.advantage-dark-item {
    display: flex;
    align-items: center;
    gap: 28px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(5px);
    border-radius: 28px;
    padding: 28px 32px;
    border: 1px solid rgba(133, 171, 186, 0.25);
    transition: all 0.3s;
}

.advantage-dark-item:hover {
    transform: translateX(10px);
    background: rgba(255, 255, 255, 0.06);
    border-color: #85abba;
}

.advantage-dark-icon {
    font-size: 48px;
    flex-shrink: 0;
}

.advantage-dark-content h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
    color: white;
}

.advantage-dark-content p {
    font-size: 16px;
    color: #cbd8e0;
    line-height: 1.5;
}

.advantage-dark-content strong {
    color: #85abba;
    font-weight: 700;
}

/* ========== CTA НАТО ========== */
.cta-section {
    padding: 80px 0 80px 0;
}

.cta-card {
    background: linear-gradient(135deg, #1a2a32 0%, #2a3a42 100%);
    border-radius: 40px;
    padding: 60px 48px;
    text-align: center;
    color: white;
}

.cta-card h2 {
    font-size: clamp(32px, 5vw, 44px);
    font-weight: 700;
    margin-bottom: 24px;
}

.cta-card .accent {
    color: #85abba;
}

.cta-card p {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto 32px;
    opacity: 0.9;
}

.nato-partners {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.nato-partners img {
    height: 60px;
    width: auto;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.nato-partners img:hover {
    opacity: 1;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 16px;
}

.btn-primary {
    background: #85abba;
    color: #1a2a32;
}

.btn-primary:hover {
    background: #6c9aab;
    transform: scale(1.03);
}

.btn-outline {
    background: transparent;
    border: 2px solid #85abba;
    color: white;
}

.btn-outline:hover {
    background: rgba(133, 171, 186, 0.15);
}

/* ========== АДАПТИВНІСТЬ ========== */
@media (max-width: 1024px) {

    .about-grid,
    .double-column {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .genba-section {
        padding: 60px 0;
    }

    .cta-card {
        padding: 40px 28px;
    }

    .advantage-dark-item {
        padding: 22px 24px;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }

    .hero-stat .stat-num {
        font-size: 32px;
    }

    .advantage-dark-item {
        flex-direction: column;
        text-align: center;
        padding: 24px 20px;
    }

    .advantage-dark-icon {
        font-size: 42px;
    }

    .btn {
        padding: 12px 28px;
    }

    .stats-showcase {
        gap: 20px;
    }

    .stat-item {
        padding: 24px 16px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .genba-section {
        padding: 40px 0;
    }

    .feature-card {
        padding: 24px 16px;
    }

    .stat-number {
        font-size: 36px;
    }

    .cta-card {
        padding: 32px 20px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .advantage-dark-item {
        padding: 20px 16px;
    }

    .advantage-dark-content h4 {
        font-size: 20px;
    }
}

/* ========== ДОДАТКОВІ ЕЛЕМЕНТИ ДЛЯ ГАЛЕРЕЇ/ЗОБРАЖЕНЬ (якщо будуть) ========== */
.schema-image {
    max-width: 800px;
    margin: 0 auto 48px;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.schema-image img {
    width: 100%;
    display: block;
}

.results-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-bottom: 48px;
}

.results-gallery img {
    width: 100%;
    border-radius: 24px;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.results-gallery img:hover {
    transform: scale(1.02);
}

/* ========== ДЛЯ БЛОКІВ ЗІ СПИСКАМИ (ЗАХИСТ) ========== */
.check-list {
    list-style: none;
    padding-left: 0;
}

.check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #85abba;
    font-weight: bold;
}

.check-list li {
    position: relative;
}

/* ========== ФОТО ЖЕТОНА ПІД БЛОКОМ ХТО МИ ========== */
.jeton-showcase {
    margin-top: 40px;
    text-align: center;
}

.jeton-image-wrapper {
    max-width: 400px;
    margin: 0 auto;
    border-radius: 30px;
    background: linear-gradient(135deg, #f0f4f7 0%, #e8eef2 100%);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.jeton-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.jeton-image-wrapper img:hover {
    transform: scale(1.02);
}

/* Адаптація для мобільних */
@media (max-width: 768px) {
    .jeton-image-wrapper {
        max-width: 400px;
    }
}

/* ========== СТАТИСТИКА З КАРТИНКАМИ ========== */
.stat-item {
    background: white;
    border-radius: 32px;
    padding: 32px 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
    text-align: center;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.stat-image {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.stat-image img {
    width: 300px;
    object-fit: contain;
    border-radius: 20px;
    transition: transform 0.3s ease;
}


.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: #85abba;
    line-height: 1.2;
    margin-bottom: 12px;
}

.stat-desc {
    font-size: 18px;
    font-weight: 600;
    color: #1a2a32;
    margin-bottom: 8px;
}

.stat-note {
    font-size: 14px;
    color: #6a7a82;
}

/* Адаптація для мобільних */
@media (max-width: 768px) {
    .stat-image img {
        width: 200px;
    }

    .stat-number {
        font-size: 36px;
    }

    .stat-desc {
        font-size: 16px;
    }
}