/* ======================================================
   HUBSPOT HERO
====================================================== */

.hubspot-hero{

    position:relative;

    padding:180px 0 140px;

    overflow:hidden;

}

.hubspot-hero::before{

    content:"";

    position:absolute;

    width:700px;

    height:700px;

    left:-250px;

    top:-250px;

    border-radius:50%;

    background:radial-gradient(circle,
    rgba(255,122,89,.12),
    transparent 70%);

    filter:blur(120px);

}

.hubspot-hero::after{

    content:"";

    position:absolute;

    width:600px;

    height:600px;

    right:-220px;

    bottom:-220px;

    border-radius:50%;

    background:radial-gradient(circle,
    rgba(0,212,255,.10),
    transparent 70%);

    filter:blur(120px);

}
.hubspot-hero-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:90px;

    align-items:center;

    position:relative;

    z-index:2;

}
.hubspot-content h1{

    font-size:72px;

    line-height:1.05;

    margin:25px 0;

}

.hubspot-content p{

    max-width:650px;

    font-size:20px;

    line-height:1.9;

    color:var(--gray);

    margin-bottom:45px;

}

.hubspot-content .service-badge i{

    color:#FF7A59;

}
.hubspot-dashboard-wrapper{

    position:relative;

    height:720px;

    display:flex;

    justify-content:center;

    align-items:center;

}
.hubspot-dashboard{

    position:relative;

    z-index:5;

    width:430px;

    padding:35px;

    border-radius:32px;

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(30px);

    box-shadow:0 40px 100px rgba(0,0,0,.35);

}
.pipeline-flow{

    display:flex;

    flex-direction:column;

    gap:15px;

    margin:35px 0;

}

.pipeline-step{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:18px 22px;

    border-radius:18px;

    background:rgba(255,255,255,.04);

    border:1px solid rgba(255,255,255,.08);

}

.pipeline-step span{

    color:var(--gray);

}

.pipeline-step strong{

    font-size:24px;

}

.pipeline-step.success{

    background:rgba(255,122,89,.14);

    border-color:rgba(255,122,89,.35);

}

.pipeline-arrow{

    text-align:center;

    color:#FF7A59;

    font-size:18px;

}
.hubspot-metrics{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:18px;

}
.hubspot-tag{

    position:absolute;

    padding:14px 22px;

    border-radius:100px;

    background:rgba(18,25,40,.9);

    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(18px);

    box-shadow:0 15px 40px rgba(0,0,0,.25);

    font-weight:600;

    white-space:nowrap;

    z-index:9;

    transition:var(--transition);

}

.hubspot-tag:hover{

    transform:translateY(-8px);

    border-color:rgba(255,122,89,.35);

}
.tag-one{

    top:40px;

    left:20px;

}

.tag-two{

    top:80px;

    right:0;

}

.tag-three{

    top:50%;

    right:-30px;

    transform:translateY(-50%);

}

.tag-four{

    bottom:60px;

    right:20px;

}

.tag-five{

    bottom:20px;

    left:20px;

}

.tag-six{

    top:50%;

    left:-40px;

    transform:translateY(-50%);

}
/* ======================================================
   HUBSPOT SERVICES
====================================================== */

.hubspot-services{
    position:relative;
    overflow:hidden;
}

.hubspot-services-grid{

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    margin-top:70px;

}

.hubspot-service-card{
    padding: 20px;
    position:relative;
    overflow:hidden;
    transition:var(--transition);

}

.hubspot-service-card:hover{

    transform:translateY(-10px);

    border-color:rgba(255,122,89,.35);

    box-shadow:
    0 20px 60px rgba(255,122,89,.12);

}

.service-icon{

    width:72px;
    height:72px;

    display:flex;
    justify-content:center;
    align-items:center;

    margin-bottom:30px;

    border-radius:22px;

    background:linear-gradient(
    135deg,
    rgba(255,122,89,.20),
    rgba(255,122,89,.08));

    border:1px solid rgba(255,122,89,.20);

    transition:var(--transition);

}

.service-icon i{

    font-size:30px;
    /* color:#FF7A59; */

}

.hubspot-service-card:hover .service-icon{

    transform:rotate(-8deg) scale(1.08);

}

.hubspot-service-card h3{

    margin-bottom:18px;
    font-size:28px;

}

.hubspot-service-card p{

    color:var(--gray);
    line-height:1.8;
    margin-bottom:30px;

}

.service-link{

    display:inline-flex;
    align-items:center;
    gap:10px;

    color:#FF7A59;

    font-weight:600;

    transition:var(--transition);

}

.service-link i{

    transition:.3s;

}

.hubspot-service-card:hover .service-link i{

    transform:translateX(6px);

}
.featured{

    transform:translateY(-20px);

    border:1px solid rgba(255,122,89,.25);

    background:
    linear-gradient(
    180deg,
    rgba(255,122,89,.08),
    rgba(255,255,255,.04));

}

.featured:hover{

    transform:translateY(-30px);

}

.featured-badge{

    position:absolute;

    top:22px;
    right:22px;

    padding:8px 14px;

    border-radius:50px;

    background:#FF7A59;

    color:#fff;

    font-size:12px;

    font-weight:700;

    letter-spacing:.5px;

}
.hubspot-service-card::before{

    content:"";

    position:absolute;

    width:180px;
    height:180px;

    top:-80px;
    right:-80px;

    border-radius:50%;

    background:radial-gradient(circle,
    rgba(255,122,89,.12),
    transparent 70%);

    opacity:0;

    transition:.4s;

}

.hubspot-service-card:hover::before{

    opacity:1;

}

.hs-cms .service-icon{
    color:#FF7A59;
}

.hs-crm .service-icon{
    color:#3B82F6;
}

.hs-automation .service-icon{
    color:#8B5CF6;
}

.hs-landing .service-icon{
    color:#22C55E;
}

.hs-hubdb .service-icon{
    color:#06B6D4;
}

.hs-modules .service-icon{
    color:#F59E0B;
}
/* ===========================================
   HUBSPOT ADVANTAGES
=========================================== */

.hubspot-advantages{

    position:relative;

}

.advantages-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

    margin-top:70px;

}

.advantage-card{

    position:relative;

    text-align:center;

    transition:var(--transition);
    padding: 20px;
}

.advantage-card:hover{

    transform:translateY(-10px);

}

.advantage-number{

    width:72px;

    height:72px;

    margin:auto auto 30px;

    border-radius:20px;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:24px;

    font-weight:700;

    color:#FF7A59;

    background:rgba(255,122,89,.08);

    border:1px solid rgba(255,122,89,.20);

}

.advantage-card h3{

    margin-bottom:18px;

}

.advantage-card p{

    color:var(--gray);

    line-height:1.8;

}
/*==================================================
 HUBSPOT CTA
==================================================*/

.hubspot-cta-section{

    position:relative;

}

.hubspot-cta{

    display:grid;

    grid-template-columns:1.1fr .9fr;

    gap:80px;

    align-items:center;

    overflow:hidden;
    padding: 30px;

}

.hubspot-cta-features{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:18px;

    margin:40px 0;

}

.hubspot-cta-features div{

    display:flex;

    align-items:center;

    gap:12px;

}

.hubspot-cta-features i{

    color:#FF7A59;

}

.hubspot-cta-visual{

    position:relative;

    display:flex;

    justify-content:center;

    align-items:center;

    min-height:420px;

}

.cta-circle{

    width:320px;

    height:320px;

    border-radius:50%;

    position:absolute;

    background:radial-gradient(circle,
    rgba(255,122,89,.18),
    transparent 70%);

}

.cta-dashboard{

    width:320px;

    position:relative;

    z-index:2;
    padding: 20px;

}

.dashboard-row{

    display:flex;

    justify-content:space-between;

    padding:18px 0;

    border-bottom:1px solid rgba(255,255,255,.08);

}

.dashboard-row:last-child{

    border-bottom:none;

}

.dashboard-row strong{

    color:#4ADE80;

}



