/* =======================================================
   NEXUS B2B GROWTH TOOLS
======================================================= */

.growth-hero{
    background:linear-gradient(135deg,#111827 0%,#1f2937 100%);
    color:#fff;
    padding:90px 0;
}

.growth-hero h1{
    font-size:3.2rem;
    font-weight:800;
    margin-bottom:25px;
    letter-spacing:-1px;
}

.growth-hero p{
    max-width:850px;
    margin:auto;
    color:#d1d5db;
    font-size:1.15rem;
    line-height:1.9;
}

.hero-badge{
    display:inline-flex;
    align-items:center;
    gap:10px;
    background:rgba(16,185,129,.12);
    color:#34d399;
    border:1px solid rgba(16,185,129,.35);
    padding:10px 18px;
    border-radius:50px;
    margin-bottom:30px;
    font-size:.9rem;
    font-weight:700;
}

.hero-badge i{
    color:#34d399;
}

.recommend-box{
    background:#fff;
    border-radius:16px;
    display:flex;
    align-items:flex-start;
    gap:25px;
    padding:35px;
    border:1px solid #e5e7eb;
    box-shadow:0 15px 40px rgba(0,0,0,.06);
}

.recommend-icon{
    width:70px;
    height:70px;
    border-radius:50%;
    background:#ecfdf5;
    color:#10b981;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:28px;
    flex-shrink:0;
}

.recommend-box h3{
    font-size:1.5rem;
    margin-bottom:12px;
    color:#111827;
}

.recommend-box p{
    color:#6b7280;
    line-height:1.8;
}

/* ===================================================
TOOLS GRID
=================================================== */

.tools-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:35px;

margin-top:50px;

}

/* ===================================================
   TOOL CARDS
=================================================== */

.tool-card{

background:#ffffff;

border:1px solid #e5e7eb;

border-radius:18px;

padding:35px;

display:flex;

flex-direction:column;

height:100%;

position:relative;

transition:all .35s ease;

box-shadow:0 8px 25px rgba(0,0,0,.05);

overflow:hidden;

}

.tool-card:hover{

transform:translateY(-10px);

box-shadow:0 25px 50px rgba(0,0,0,.12);

border-color:#10b981;

}

.tool-badge{

position:absolute;

top:18px;

right:18px;

background:#10b981;

color:#fff;

padding:6px 14px;

border-radius:50px;

font-size:.72rem;

font-weight:700;

letter-spacing:.5px;

text-transform:uppercase;

box-shadow:0 6px 16px rgba(16,185,129,.25);

}

.tool-card img{

width:170px;

height:70px;

object-fit:contain;

margin:15px auto 30px;

display:block;

transition:all .3s ease;

}

.tool-card:hover img{

transform:scale(1.06);

}

.tool-card h3{

text-align:center;

margin-bottom:20px;

font-size:1.65rem;

font-weight:800;

}

.tool-card h3 a{

color:#111827;

text-decoration:none;

}

.tool-card h3 a:hover{

color:#10b981;

}

.tool-card h4{

margin-top:25px;

margin-bottom:12px;

font-size:1rem;

font-weight:700;

color:#10b981;

}

.tool-card p{

color:#6b7280;

line-height:1.8;

font-size:.97rem;

margin-bottom:0;

}

.tool-card .btn{

margin-top:auto;

width:100%;

text-align:center;

padding:14px 20px;

border-radius:10px;

font-weight:700;

font-size:.95rem;

margin-top:35px;

transition:.3s;

}

.tool-card .btn:hover{

transform:translateY(-2px);

}

.tool-card a{

text-decoration:none;

}

.tool-card::before{

content:"";

position:absolute;

left:0;

top:0;

height:5px;

width:100%;

background:#10b981;

transform:scaleX(0);

transition:.35s;

transform-origin:left;

}

.tool-card:hover::before{

transform:scaleX(1);

}

/* ===================================================
   CTA SECTION
=================================================== */

.growth-cta{

background:linear-gradient(135deg,#111827 0%,#1f2937 100%);

padding:90px 20px;

text-align:center;

color:#ffffff;

margin-top:90px;

}

.growth-cta .container{

max-width:850px;

margin:auto;

}

.growth-cta h2{

font-size:2.7rem;

font-weight:800;

margin-bottom:25px;

line-height:1.2;

}

.growth-cta p{

font-size:1.15rem;

line-height:1.9;

color:#d1d5db;

margin-bottom:40px;

}

.growth-cta .btn{

padding:16px 36px;

font-size:1rem;

border-radius:10px;

font-weight:700;

box-shadow:0 15px 30px rgba(16,185,129,.25);

transition:.3s;

}

.growth-cta .btn:hover{

transform:translateY(-4px);

box-shadow:0 25px 40px rgba(16,185,129,.35);

}



/* ===================================================
   DISCLOSURE
=================================================== */

.disclosure-section{

padding-top:70px;

padding-bottom:70px;

}

.disclosure-box{

background:#ffffff;

border:1px solid #e5e7eb;

border-left:6px solid #10b981;

border-radius:15px;

padding:35px;

box-shadow:0 12px 35px rgba(0,0,0,.06);

}

.disclosure-box h3{

display:flex;

align-items:center;

gap:12px;

font-size:1.4rem;

margin-bottom:18px;

color:#111827;

}

.disclosure-box h3 i{

color:#10b981;

}

.disclosure-box p{

font-size:1rem;

line-height:1.9;

color:#6b7280;

}



/* ===================================================
   SECTION SPACING
=================================================== */

.content-section{

padding-top:90px;

padding-bottom:90px;

}

.container{

max-width:1200px;

margin:auto;

padding:0 20px;

}



/* ===================================================
   BUTTON IMPROVEMENTS
=================================================== */

.btn{

transition:all .3s ease;

}

.btn-primary:hover{

transform:translateY(-3px);

}



/* ===================================================
   TABLET
=================================================== */

@media (max-width:1100px){

.tools-grid{

grid-template-columns:repeat(2,1fr);

}

}



/* ===================================================
   MOBILE
=================================================== */

@media (max-width:768px){

.growth-hero{

padding:70px 20px;

}

.growth-hero h1{

font-size:2.2rem;

line-height:1.25;

}

.growth-hero p{

font-size:1rem;

}

.recommend-box{

flex-direction:column;

text-align:center;

padding:30px;

}

.recommend-icon{

margin:auto;

}

.tools-grid{

grid-template-columns:1fr;

gap:25px;

}

.tool-card{

padding:28px;

}

.tool-card img{

width:150px;

height:60px;

}

.tool-card h3{

font-size:1.45rem;

}

.growth-cta{

padding:70px 20px;

}

.growth-cta h2{

font-size:2rem;

}

.growth-cta p{

font-size:1rem;

}

.disclosure-box{

padding:25px;

}

}



/* ===================================================
   LARGE DESKTOP
=================================================== */

@media (min-width:1500px){

.container{

max-width:1350px;

}

.tools-grid{

gap:40px;

}

.tool-card{

padding:40px;

}

}