/* Базові налаштування */
body.creation-page {
    overflow-y: auto;
    overflow-x: hidden;
    background-color: #000000;
    color: #ffffff;
}

.top-header {
    position: absolute;
    top: 40px;
    left: 40px;
    right: 40px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    z-index: 100; /* Додаємо цей рядок, щоб шапка була поверх усього контенту */
}
/* Статична шапка (як на інших сторінках) */
.static-header .logo,
.static-header .hire-btn {
    opacity: 1;
    transform: none;
    transition: none;
}
.static-header .back-btn {
    font-size: 30px;
}

/* Головний екран */
.creation-hero {
    min-height: 750Px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5%;
    text-align: center;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.barcode-accent {
    font-family: 'Libre Barcode 39 Text', sans-serif;
    font-size: 50px;
    color: rgba(255, 255, 255, 0.4);
    display: block;
    margin-bottom: 10px;
}

.hero-title {
    font-family: 'Lexend Zetta', sans-serif;
    font-size: 4.5vw;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
    letter-spacing: 2px;
}

.hero-desc {
    font-family: 'Lexend Zetta', sans-serif;
    font-weight: 200;
    font-size: 14px;
    color: #a0a0a0;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Секція Архітектури / Стеку */
.tech-stack-section {
    padding: 100px 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-family: 'Lexend Zetta', sans-serif;
    font-size: 18px;
    font-weight: 300;
    letter-spacing: 5px;
    margin-bottom: 60px;
    text-align: center;
    color: #ffffff;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

/* Картки технологій */
.tech-card {
    background: rgba(15, 15, 15, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 40px;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.tech-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.5);
}

.tech-header {
    display: flex;
    align-items: baseline;
    gap: 15px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 15px;
}

.tech-num {
    font-family: 'Lexend Zetta', sans-serif;
    font-size: 14px;
    font-weight: 100;
    color: #666;
}

.tech-card h3 {
    font-family: 'Lexend Zetta', sans-serif;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 2px;
}

.tech-card p {
    font-family: 'Lexend Zetta', sans-serif;
    font-size: 12px;
    font-weight: 200;
    color: #888;
    line-height: 1.8;
}

/* Call to action секція (Кнопка і ціна) */
.creation-cta {
    padding: 100px 5% 150px 5%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.cta-title {
    font-family: 'Lexend Zetta', sans-serif;
    font-size: 20px;
    font-weight: 300;
    letter-spacing: 3px;
}

.price-barcode {
    font-family: 'Libre Barcode 39 Text', sans-serif;
    font-size: 90px;
    color: #ffffff;
    line-height: 1;
}

.buy-btn-large {
    display: inline-block;
    background: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
    padding: 20px 60px;
    font-family: 'Lexend Zetta', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    cursor: pointer;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.buy-btn-large:hover {
    background: #ffffff;
    color: #000000;
}

/* Футер */
.relative-footer {
    position: relative;
    padding-bottom: 40px;
    text-align: center;
}

.relative-footer p {
    font-family: 'Lexend Zetta', sans-serif;
    font-size: 10px;
    color: #4d4d4d;
    letter-spacing: 2px;
    font-weight: 300;
}

/* Адаптивність для мобільних пристроїв */
@media (max-width: 900px) {
    .tech-grid {
        grid-template-columns: 1fr;
    }
    .hero-title {
        font-size: 8vw;
    }
    .price-barcode {
        font-size: 60px;
    }
}


