.top-header {
    position: absolute;
    top: 40px;
    left: 40px;
    right: 40px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    z-index: 100; /* Додаємо цей рядок, щоб шапка була поверх усього контенту */
}

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

/* Шапка */
.static-header .logo,
.static-header .hire-btn {
    opacity: 1;
    transform: none;
    transition: none;
    z-index: 100;
}
.static-header .back-btn {
    font-size: 30px;
}

/* Головний екран */
.upgrade-hero {
    min-height: 750px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5%;
    text-align: center;
}

.barcode-accent {
    font-family: 'Libre Barcode 39 Text', sans-serif;
    font-size: 60px;
    color: #ffffff;
    opacity: 0.3;
    display: block;
    margin-bottom: 5px;
}

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

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

/* Секція списку покращень */
.upgrade-features {
    padding: 80px 5%;
    max-width: 900px;
    margin: 0 auto;
}

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

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

.feature-item {
    border-left: 2px solid rgba(255, 255, 255, 0.2);
    padding-left: 30px;
    position: relative;
    transition: border-color 0.3s ease;
}

.feature-item:hover {
    border-left-color: #ffffff;
}

.feature-title-wrap {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

/* Анімована точка біля заголовка */
.feature-dot {
    position: absolute;
    left: -6px; /* Центруємо на лінії (ширина лінії 2px, точка 10px) */
    width: 10px;
    height: 10px;
    background-color: #ffffff;
    border-radius: 50%;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s ease;
}

.feature-item:hover .feature-dot {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

.feature-item h3 {
    font-family: 'Lexend Zetta', sans-serif;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 1px;
}

.feature-item p {
    font-family: 'Lexend Zetta', sans-serif;
    font-size: 12px;
    font-weight: 200;
    color: #a0a0a0;
    line-height: 1.7;
    max-width: 700px;
}

/* Call to action */
.upgrade-cta {
    padding: 100px 5% 120px 5%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 35px;
}

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

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

.buy-btn-large {
    display: inline-block;
    background: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
    padding: 20px 50px;
    font-family: 'Lexend Zetta', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    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: 768px) {
    .hero-title {
        font-size: 6vw;
    }
    .upgrade-features {
        padding: 50px 5%;
    }
    .feature-item {
        padding-left: 20px;
    }
}