.hero-section.growingTools {
    line-height: 25.6px; /* 16px × 1.6 */
}

    .hero-section.growingTools h1 {
        line-height: 67.2px; /* 56px × 1.2 */
    }

    .hero-section.growingTools h2 {
        line-height: 48px; /* 40px × 1.2 */
    }

    .hero-section.growingTools h3 {
        line-height: 38.4px; /* 32px × 1.2 */
    }

    .hero-section.growingTools h4 {
        line-height: 28.8px; /* 24px × 1.2 */
    }
    .hero-section.growingTools p,
    .mainContent.growingTools p {
        line-height: 25.6px; /* default 16px font-size */
    }

        .mainContent.growingTools p[style*="19.2px"] {
            line-height: 30.72px; /* for those bigger paragraphs */
        }
.growingTools p {
    font-size: 16px;
    line-height: 25.6px;
}

    /* Larger "lead" paragraphs */
    .growingTools p.lead {
        font-size: 19.2px;
        line-height: 30.72px;
    }

.hero-section.growingTools {
    font-family: 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px; /* 2rem */
    font-size: 16px; /* original clamp resolves to 16px for you */
}

    .hero-section.growingTools::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(45, 55, 62, 0.9);
        z-index: 1;
        mix-blend-mode: multiply;
    }

    .hero-section.growingTools::after {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        overflow: hidden;
        background-image: url('/File.aspx?id=1113');
        background-size: cover;
        background-position: center;
    }

    .hero-section.growingTools .hero-content {
        max-width: 1200px;
        text-align: center;
        position: relative;
        z-index: 2;
        margin: 128px 0; /* 8rem */
    }

        .hero-section.growingTools .hero-content img {
            width: 740px;
            max-width: 100%;
        }

    .hero-section.growingTools .hero-icon {
        width: 80px;
        height: 80px;
        margin: 0 auto 32px; /* 2rem */
        background: rgba(255, 255, 255, 0.1);
        border-radius: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        animation: pulse 2s ease-in-out infinite;
    }

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.hero-section.growingTools .hero-title {
    font-size: 56px; /* 3.5rem */
    font-weight: 300;
    color: white;
    margin-bottom: 24px; /* 1.5rem */
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.hero-section.growingTools .hero-subtitle {
    font-size: 22.4px; /* 1.4rem */
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 48px; /* 3rem */
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-section.growingTools .hero-cta {
   
    display: inline-flex;
    align-items: center;
    gap: 8px; /* 0.5rem */
    background: rgba(255, 255, 255, 0.95);
    color: #ff3758;
    padding: 16px 32px; /* 1rem 2rem */
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 17.6px; /* 1.1rem */
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
}

    .hero-section.growingTools .hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
    background: white;
}


/* Main content wrapper for Growing Tools */
.mainContent.growingTools {
    background: white;
    position: relative;
    z-index: 3;
    margin-top: -50px;
    border-radius: 30px 30px 0 0;
    padding: 64px 32px; /* 4rem 2rem */
}

    .mainContent.growingTools .content-section {
        max-width: 1200px;
        margin: 0 auto;
    }

    /* Features grid */
    .mainContent.growingTools .features-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 32px; /* 2rem */
    }

    .mainContent.growingTools .feature-card {
        background: white;
        padding: 32px; /* 2rem */
        border-radius: 20px;
        border: 1px solid #dfdfe6;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }

        .mainContent.growingTools .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: #ff3758;
        }

        .mainContent.growingTools .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(255, 55, 88, 0.15);
            border-color: #ff3758;
        }

    .mainContent.growingTools .feature-icon {
        width: 60px;
        height: 60px;
        background: #ff3758;
        border-radius: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 24px; /* 1.5rem */
    }

        .mainContent.growingTools .feature-icon i {
            font-size: 24px;
            color: white;
        }

    .mainContent.growingTools .feature-title {
        font-size: 20.8px; /* 1.3rem */
        font-weight: 300;
        color: #2f312e;
        margin-bottom: 16px; /* 1rem */
        text-align: center;
    }

    .mainContent.growingTools .feature-description {
        color: #2f312e;
        font-weight: 300;
        line-height: 1.6;
        text-align: center;
    }

    /* Section titles */
    .mainContent.growingTools .section-title {
        font-size: 40px; /* 2.5rem */
        font-weight: 300;
        text-align: center;
        margin-bottom: 32px; /* 2rem */
        color: #2f312e;
    }

    /* Timeline */
    .mainContent.growingTools .timeline {
        position: relative;
        margin: 64px 0; /* 4rem */
    }

        .mainContent.growingTools .timeline::before {
            content: '';
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 2px;
            background: #ff3758;
            transform: translateX(-50%);
        }

    .mainContent.growingTools .timeline-item {
        display: flex;
        align-items: center;
        margin-bottom: 48px; /* 3rem */
        position: relative;
    }

        .mainContent.growingTools .timeline-item:nth-child(even) {
            flex-direction: row-reverse;
        }

    .mainContent.growingTools .timeline-content {
        flex: 1;
        background: white;
        padding: 32px; /* 2rem */
        border-radius: 15px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
        margin: 0 32px; /* 2rem */
        border: 1px solid #dfdfe6;
    }

    .mainContent.growingTools .timeline-icon {
        width: 50px;
        height: 50px;
        background: #ff3758;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        z-index: 2;
    }

    /* Stats section */
    .mainContent.growingTools .stats-section {
        background: #efeff2;
        padding: 64px 32px; /* 4rem 2rem */
        margin: 64px 0; /* 4rem */
        border-radius: 25px;
        color: #2f312e;
        text-align: center;
    }

    .mainContent.growingTools .stats-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 32px; /* 2rem */
        max-width: 800px;
        margin: 0 auto;
    }

    .mainContent.growingTools .stat-item {
        padding: 24px; /* 1.5rem */
    }

    .mainContent.growingTools .stat-number {
        font-size: 48px; /* 3rem */
        font-weight: 700;
        margin-bottom: 8px; /* 0.5rem */
        display: block;
        color: #ff3758;
    }

    .mainContent.growingTools .stat-label {
        font-size: 17.6px; /* 1.1rem */
        font-weight: 300;
        color: #2f312e;
    }

    /* Coaching grid */
    .mainContent.growingTools .coaching-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 32px; /* 2rem */
        margin-top: 32px; /* 2rem */
    }

    /* CTA sections & buttons */
    .mainContent.growingTools .cta-section {
        text-align: center;
        padding: 64px 32px; /* 4rem 2rem */
        background: white;
        border-radius: 25px;
        margin: 64px 0; /* 4rem */
    }

    .mainContent.growingTools .cta-buttons {
        display: flex;
        gap: 16px; /* 1rem */
        justify-content: center;
        flex-wrap: wrap;
        margin-top: 32px; /* 2rem */
    }

    .mainContent.growingTools .btn-primary {
        font-size: 17.6px; /* 1.1rem */
        background: #ff3758;
        color: white;
        padding: 16px 32px; /* 1rem 2rem */
        border-radius: 50px;
        text-decoration: none;
        font-weight: 300;
        transition: all 0.3s ease;
        box-shadow: 0 8px 25px rgba(255, 55, 88, 0.3);
    }

        .mainContent.growingTools .btn-primary svg{
            float: left;
            margin-top:0!important;
        }

        .mainContent.growingTools .btn-secondary {
            background: transparent;
            color: #ff3758;
            padding: 16px 32px;
            font-size: 17.6px; /* 1.1rem */
            border-radius: 50px;
            text-decoration: none;
            font-weight: 300;
            border: 2px solid #ff3758;
            transition: all 0.3s ease;
        }

    .mainContent.growingTools .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 35px rgba(255, 55, 88, 0.4);
        background: #e8304a;
    }

    .mainContent.growingTools .btn-secondary:hover {
        background: #ff3758;
        color: white;
        transform: translateY(-2px);
    }

/* Responsive tweaks */
@media (max-width: 768px) {
    .mainContent.growingTools .hero-title {
        font-size: 40px; /* 2.5rem */
    }

    .mainContent.growingTools .hero-subtitle {
        font-size: 19.2px; /* 1.2rem */
    }

    .mainContent.growingTools .timeline::before {
        left: 30px;
    }

    .mainContent.growingTools .timeline-item {
        flex-direction: column;
        align-items: flex-start;
        padding-left: 80px;
    }

        .mainContent.growingTools .timeline-item:nth-child(even) {
            flex-direction: column;
            align-items: flex-start;
        }

    .mainContent.growingTools .timeline-icon {
        position: absolute;
        left: 5px;
    }

    .mainContent.growingTools .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .mainContent.growingTools .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .mainContent.growingTools .coaching-grid {
        grid-template-columns: 1fr;
    }
}
