.hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(
        120deg,
        #f8fbff 0%,
        #eef4ff 40%,
        #f8fbff 100%
    );
}

.hero::before {
    content: "";
    position: absolute;
    width: 130%;
    height: 130%;
    background: radial-gradient(circle at 30% 30%, rgba(59,130,246,0.25), transparent 60%);
    animation: lightMove 8s infinite alternate ease-in-out;
    z-index: 0;
}

@keyframes lightMove {
    0% { transform: translate(-5%, -5%); }
    100% { transform: translate(5%, 5%); }
}

#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-inner {
    position: relative;
    z-index: 2;
    padding: 30px 20px 20px 20px;
}

.hero-text {
    width: 230px;
}

.hero-text h1 {
    font-size: 24px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 14px;
}

.hero-text p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 18px;
}

.hero-text .btn-primary {
    margin-bottom: 25px;
}

.hero-image {
    position: absolute;
    top: -70px;
    right: -120px;
}

.hero-image img {
    width: 340px;
}

/* VALUE STRIP */

.value-strip {
    background: #ffffff;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 25px;
}

.value-item {
    max-width: 300px;
}

/* SECTIONS */

.section {
    padding: 40px 20px;
    background: #F7F9FC;
    text-align: center; /* added */
}

.section.alt {
    background: #ffffff;
}

.section h2 {
    text-align: center; /* added */
    margin-bottom: 28px; /* added spacing */
}

/* CARDS */

.cards {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.card {
    background: #ffffff;
    border-radius: 18px;
    padding: 18px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.05);
    transition: .3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.card img {
    width: 64px;
}
