/* ===== Hero Section ===== */

.hero-main-row {
    margin: 0;
}

/* Heading */
.hero-heading {
    font-size: 2.4em;
    margin-bottom: 1.2rem;
    line-height: 1.15;
}

/* Free PMS Pill */
.hero-free-pill {
    display: inline-block;
    background: linear-gradient(135deg, #1e9e99, #267a77);
    color: #fff;
    font-weight: 700;
    font-size: 1.15rem;
    padding: 0.6rem 1.5rem;
    border-radius: 30px;
    margin-bottom: 1.5rem;
}

/* Stat Boxes */
.hero-stats {
    display: flex;
    gap: 1rem;
}

.hero-stat-box {
    background: linear-gradient(135deg, #31c8c2, #1e9e99);
    color: #fff;
    border-radius: 12px;
    padding: 1.1rem 1.8rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    min-width: 130px;
}

.hero-stat-value {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.1;
}

.hero-stat-label {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    opacity: 0.9;
}

.hero-stat-footnote {
    font-size: 0.8rem;
    color: #777;
    font-style: italic;
    margin-top: 0.5rem;
    margin-bottom: 0;
}

/* Center Column: Channel Manager Image */
.hero-center-col {
    text-align: center;
}

.hero-cm-image {
    max-width: 100%;
    height: auto;
    max-height: 340px;
    object-fit: contain;
}

/* Right Column: Bullets */
.hero-bullets-col {
    display: flex;
    align-items: center;
}

.hero-bullets {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hero-bullets li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a1a2e;
}

.hero-bullets li:last-child {
    margin-bottom: 0;
}

.hero-bullets li i {
    color: #31c8c2;
    font-size: 1.3rem;
    margin-right: 0.75rem;
    flex-shrink: 0;
}

/* Bottom CTA Bar */
.hero-bottom-bar {
    background: linear-gradient(135deg, #1e9e99, #1a7a76);
    padding: 0.85rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.hero-bottom-bar-text {
    color: #fff;
    font-size: 1.05rem;
    font-weight: 500;
    font-style: italic;
}

.hero-bottom-bar-btn {
    display: inline-block;
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
    border-radius: 6px;
    padding: 0.4rem 1.5rem;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}

.hero-bottom-bar-btn:visited,
.hero-bottom-bar-btn:link {
    color: #fff;
}

.hero-bottom-bar-btn:hover {
    background: #fff;
    color: #1e9e99;
    text-decoration: none;
}

/* ===== Responsive ===== */

/* Tablet: stack left on top, center + right side by side */
@media (max-width: 991px) {
    .hero-value-prop {
        text-align: center;
        margin-bottom: 2rem;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-center-col {
        margin-bottom: 1.5rem;
    }

    .hero-bullets-col {
        justify-content: center;
    }
}

/* Mobile: single column */
@media (max-width: 767px) {
    .hero-heading {
        font-size: 1.8em;
        padding-top: 2.5rem;
    }

    .hero-free-pill {
        font-size: 1rem;
        padding: 0.5rem 1.2rem;
    }

    .hero-stat-box {
        padding: 0.9rem 1.2rem;
        min-width: 110px;
    }

    .hero-stat-value {
        font-size: 1.8rem;
    }

    .hero-cm-image {
        max-height: 260px;
        margin-bottom: 1rem;
    }

    .hero-bullets {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0 1.5rem;
        margin-bottom: 1.5rem;
    }

    .hero-bullets li {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }

    .hero-bottom-bar {
        padding: 0.75rem 1rem;
        gap: 0.75rem;
        text-align: center;
    }

    .hero-bottom-bar-text {
        font-size: 0.9rem;
    }
}
