.grow-section {
    width: 100vw;
    /* FORCE full browser width */
    margin-left: calc(50% - 50vw);
    /* BREAK out of parent container */
    background: #27334a;
    color: white;
    padding: 100px 0;
    text-align: center;
    position: relative;
}


/* optional bottom gradient like screenshot */
.grow-section::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    background: linear-gradient(to bottom,
            rgba(17, 33, 61, 0) 0%,
            rgba(17, 33, 61, 0.85) 100%);
}

.grow-section .container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.grow-section h2 {
    font-size: 38px;
    font-weight: 700;
}

.grow-section .subtitle {
    margin: 10px auto 40px;
    max-width: 750px;
    font-size: 18px;
    opacity: 0.9;
    line-height: 1.6;
}

/* Button container (same pattern as stats-grid but simpler) */
.grow-action {
    margin-top: 20px;
}

/* Button styled like your theme */
.grow-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    background: #ffb628;
    /* yellow */
    color: #000;
    /* black text */
    font-size: 16px;
    font-weight: 600;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    text-decoration: none;
    transition: transform 0.3s ease;
}

.grow-btn svg {
    stroke: #000;
    /* outline color of the icon */
    fill: none;
    /* ensures no fill */
}

.grow-btn:hover {
    transform: translateY(-3px);
    /* lift only */
    background-color: #ffb628 !important;
    color: #000 !important;
}

.grow-btn:hover svg {
    stroke: #000;
    /* keep outline black on hover */
}


@media(max-width: 768px) {
    .grow-section h2 {
        font-size: 32px;
    }

    .grow-section .subtitle {
        font-size: 16px;
    }

    .grow-btn {
        padding: 12px 24px;
    }
}