/*h1 общий*/
.hero h1 {
    font-size: 4.5rem;
    line-height: 1.2;
    text-shadow: 0 0 25px #6f00ff, 0 0 50px #00f7ff;
}

@media (max-width: 700px) {
    .hero h1 {
        font-size: 3rem;
    }
}

.hero h1 span {
    color: #00f7ff;
    animation: glowText 3s ease-in-out infinite alternate;
}

h2.exshare {
    font-size: 3rem;
    color: #fff;
    text-shadow: 0 0 25px rgba(111, 0, 255, 0.5);
    text-align: center;
    margin-bottom: 2rem;
    line-height: 46px;
}

h2.exshare span {
    color: #00f7ff;
}

.exshare-header-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 15px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.block-container {
    margin: 0 auto;
    padding: 3rem 40px;
    max-width: 1200px;
    @media (max-width: 700px) {
        padding: 1.5rem 15px;
    }
}

.block-subtitle {
    font-size: 1.25rem;
    color: #b8b8ff;
    line-height: 1.6;
    place-self: center;
    padding-bottom: 2.5rem;

    @media (max-width: 700px) {
        padding-bottom: 1.5rem;
    }
}

.hero p {
    margin: 25px auto;
    font-size: 1.3rem;
    color: #cfcfff;
    max-width: 700px;

    @media (max-width: 700px) {
        font-size: 1rem;
    }
}

.advantages-list {
    place-self: center;
}

.advantages-list p {
    margin: 30px auto;
    max-width: 700px;
    text-align: left;
}

.advantages-list ul {
    list-style: none;
    padding: 0;
    font-size: 1.15rem;
    color: #cfcfff;
    line-height: 1.7;
}

.advantages-list ul li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 32px;
    text-align: left;

    @media (max-width: 700px) {
        font-size: 1rem;
        line-height: 20px;
    }
}

.advantages-list ul li span {
    position: absolute;
    left: 0;
    color: #00f7ff;
    font-size: 1.4rem;
    line-height: 1;
}

.shine-btn {
    border-radius: 35px;
    padding: 14px 36px;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 1px;
    text-decoration: none;
    transition: 0.3s;
    background: linear-gradient(90deg, #6f00ff, #00f7ff, #6f00ff);
    background-size: 300% 300%;
    color: #fff;
    animation: gradientFlow 5s ease infinite;
    cursor: pointer;
    min-width: 150px;

    @media (max-width: 700px) {
        font-size: 1rem;
        line-height: 20px;
    }
}

.simple-btn {
    border-radius: 35px;
    padding: 14px 36px;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: 0.3s;
    min-width: 150px;

    @media (max-width: 700px) {
        font-size: 1rem;
        line-height: 20px;
    }

    border: 2px solid #00f7ff;
    color: #00f7ff;
}

.simple-btn:hover, .shine-btn:hover {
    transform: scale(1.07);
    box-shadow: 0 0 25px #00f7ff;
}

@keyframes gradientFlow {
    0% {
        background-position: 0 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0 50%;
    }
}

.included-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 50px rgba(0, 247, 255, 0.4), 0 0 30px rgba(111, 0, 255, 0.3);
    border-color: #00f7ff;
}
.included-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
    margin: 0 auto;
    align-items: stretch;
}
@media (max-width: 768px) {
    .included-grid {
        grid-template-columns: 1fr;
    }
    .included-card > div:first-child {
        height: auto;
        min-height: 90px;
        padding: 20px 25px;
    }
}

.text-after {
    font-size: 1rem;
    color: #b8b8ff;
    max-width: 800px;
    margin: 20px auto 0;
    line-height: 1.6;
    font-weight: 500;
    place-self: center;
    @media (max-width: 768px) {
        font-size: 1rem;
    }
}
