/* --- Selvio Hero Section --- */
.selvio-hero {
    padding: 5rem 1rem;
}

.selvio-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.selvio-hero .content h1 {
    font-size: 3.25rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.selvio-hero .content p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 2.5rem;
}

.selvio-hero .store-buttons {
    display: flex;
    gap: 1rem;
}

.selvio-hero .store-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.selvio-hero .store-button img {
    height: 50px;
    width: auto;
}

.selvio-hero .store-button span {
    font-weight: 600;
    color: #333;
}

.selvio-hero .image-container img {
    width: 100%;
    max-width: 500px;
    border-radius: 16px;
}

/* --- Features Section --- */
.selvio-features {
    padding: 6rem 1rem;
    background-color: #f8f9fa;
}

.selvio-features .container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 5rem;
}

.selvio-features .feature-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.selvio-features .feature-item.reversed .image-container {
    order: 2;
}

.selvio-features .image-container img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.selvio-features .content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.selvio-features .content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #444;
}

/* --- Mailing List Section --- */
.mailing-list {
    padding: 5rem 1rem;
    background-color: #fff;
}

.mailing-list .container {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.mailing-list h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.mailing-list p {
    color: #666;
    margin-bottom: 2rem;
}

.mailing-list form {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.mailing-list input[type=email] {
    width: 100%;
    max-width: 350px;
    padding: 0.75rem;
    border: 1px solid #ccc;
    border-radius: 6px;
}

.mailing-list button {
    padding: 0.75rem 1.5rem;
    border: none;
    background-color: #31a668;
    color: #fff;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
}

#form-status {
    min-height: 1.5rem;
    font-weight: 500;
}


/* --- Pricing Section --- */
.selvio-pricing {
    padding: 6rem 1rem;
    background-color: #f8f9fa;
}

.selvio-pricing .container {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.selvio-pricing h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
}

.pricing-table {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.plan {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.plan h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.plan .price {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.plan ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.plan li {
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.plan li:before {
    content: "✔";
    color: #31a668;
    position: absolute;
    left: 0;
}

.post-pricing-cta p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.post-pricing-cta .store-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.post-pricing-cta .store-buttons img {
    height: 50px;
}


/* --- Responsive Adjustments --- */
@media (max-width: 992px) {
    .selvio-hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .selvio-hero .store-buttons {
        justify-content: center;
    }

    .selvio-hero .image-container {
        order: -1;
        margin-bottom: 2rem;
    }

    .selvio-features .feature-item {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .selvio-features .feature-item.reversed .image-container {
        order: -1;
    }

    .selvio-features .image-container {
        margin-bottom: 2rem;
    }

    .pricing-table {
        grid-template-columns: 1fr;
    }
}