/* ====================================
   REFERENCES HERO
==================================== */

.references-hero{

    padding:180px 0 120px;

    background:#070707;

    overflow:hidden;
}

.references-hero-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:80px;

    align-items:center;
}

.references-title{

    font-size:92px;

    line-height:.95;

    margin:25px 0 30px;
}

.references-description{

    max-width:560px;

    color:#bdbdbd;

    font-size:20px;

    line-height:1.8;

    margin-bottom:40px;
}

.references-rating{

    display:flex;

    align-items:center;

    gap:35px;

    margin-bottom:40px;
}

.rating-item{

    display:flex;

    flex-direction:column;

    gap:8px;
}

.rating-number{

    font-family:'Bebas Neue', sans-serif;

    font-size:48px;

    color:var(--primary);

    line-height:1;
}

.rating-label{

    color:#bdbdbd;

    font-size:15px;
}

.rating-divider{

    width:1px;

    height:60px;

    background:rgba(255,255,255,.08);
}

.references-hero-image{

    position:relative;
}

.references-hero-image img{

    width:100%;

    display:block;

    border-radius:28px;
}

.references-hero-image::after{

    content:'';

    position:absolute;

    inset:0;

    background:
    linear-gradient(
    90deg,
    rgba(7,7,7,.20),
    rgba(7,7,7,.05)
    );

    border-radius:28px;

    pointer-events:none;
}

/* ====================================
   MOBILE
==================================== */

@media(max-width:991px){

    .references-hero{

        padding:150px 0 90px;
    }

    .references-hero-grid{

        grid-template-columns:1fr;

        gap:50px;
    }

    .references-title{

        font-size:64px;
    }

}

@media(max-width:767px){

    .references-title{

        font-size:48px;
    }

    .references-description{

        font-size:17px;
    }

    .references-rating{

        flex-direction:column;

        align-items:flex-start;

        gap:25px;
    }

    .rating-divider{

        display:none;
    }

}

/* ====================================
   REFERENCES STATS
==================================== */

.references-stats{

    padding:0 0 120px;

    background:#070707;
}

.references-stats-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;
}

.reference-stat-card{

    background:#0d0d0d;

    border:1px solid rgba(255,255,255,.05);

    border-radius:24px;

    padding:35px 20px;

    text-align:center;

    transition:.3s ease;
}

.reference-stat-card:hover{

    transform:translateY(-6px);

    border-color:rgba(212,168,95,.25);
}

.reference-stat-number{

    display:block;

    font-family:'Bebas Neue', sans-serif;

    font-size:72px;

    line-height:1;

    color:var(--primary);

    margin-bottom:10px;
}

.reference-stat-label{

    color:#bdbdbd;

    font-size:16px;
}

@media(max-width:991px){

    .references-stats-grid{

        grid-template-columns:repeat(2,minmax(0,1fr));

        gap:20px;
    }

    .reference-stat-card{

        width:100%;
    }

}

@media(max-width:767px){

    .references-stats{

        padding:0 0 80px;
    }

    .reference-stat-number{

        font-size:56px;
    }

}

/* ====================================
   REFERENCES BENEFITS
==================================== */

.references-benefits{

    padding:120px 0;

    background:#090909;
}

.references-benefits-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;

    margin-top:60px;
}

.benefit-card{

    background:#111111;

    border:1px solid rgba(255,255,255,.05);

    border-radius:24px;

    padding:35px;

    transition:.3s ease;
}

.benefit-card:hover{

    transform:translateY(-8px);

    border-color:rgba(212,168,95,.25);
}

.benefit-icon{

    width:56px;
    height:56px;

    display:flex;

    align-items:center;
    justify-content:center;

    margin:0 auto 22px;

    color:var(--primary);

    background:rgba(212,168,95,.08);

    border:1px solid rgba(212,168,95,.12);

    border-radius:16px;
}

.benefit-icon svg{

    width:28px;
    height:28px;
}

.benefit-card h3{

    font-size:22px;

    margin-bottom:15px;

    text-align:center;
}

.benefit-card p{

    color:#bdbdbd;

    line-height:1.8;

    text-align:center;
}

@media(max-width:991px){

    .references-benefits-grid{

        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:767px){

    .references-benefits{

        padding:80px 0;
    }

    .references-benefits-grid{

        grid-template-columns:1fr;
    }

}

/* ====================================
   REFERENCES REVIEWS
==================================== */

.references-reviews{

    padding:120px 0;

    background:#070707;
}

.references-reviews-grid{

    column-count:3;

    column-gap:25px;

    margin-top:60px;
}

.reference-review-card{

    display:inline-block;

    width:100%;

    margin-bottom:25px;

    break-inside:avoid;

    -webkit-column-break-inside:avoid;

    page-break-inside:avoid;
}

@media(max-width:991px){

    .references-reviews-grid{

        column-count:2;
    }

}

@media(max-width:767px){

    .references-reviews-grid{

        column-count:1;
    }

}

.reference-review-card{

    height:100%;
}

.reference-review-card{

    background:#111111;

    border:1px solid rgba(255,255,255,.05);

    border-radius:24px;

    padding:35px;

    transition:.3s ease;
}

.reference-review-card:hover{

    transform:translateY(-8px);

    border-color:rgba(212,168,95,.25);
}

.reference-review-header{

    display:flex;

    align-items:center;

    gap:15px;

    margin-bottom:20px;
}

.reference-avatar{

    width:60px;
    height:60px;

    border-radius:50%;

    background:
    linear-gradient(
        135deg,
        rgba(212,168,95,1),
        rgba(188,145,74,1)
    );

    color:#000;

    display:flex;

    align-items:center;
    justify-content:center;

    font-size:14px;

    font-weight:800;

    letter-spacing:.5px;

    flex-shrink:0;

    box-shadow:
    0 8px 20px rgba(212,168,95,.18);
}

.reference-review-header h4{

    margin-bottom:5px;

    font-size:17px;

    font-weight:700;
}

.reference-review-header span{

    color:var(--primary);
}

.reference-review-card p{

    color:#bdbdbd;

    line-height:1.9;
}

@media(max-width:991px){

    .references-reviews-grid{

        grid-template-columns:1fr;
    }

}

/* ====================================
   GOOGLE BADGE
==================================== */

.references-google{

    padding:120px 0;

    background:#090909;
}

.google-badge{

    max-width:900px;

    margin:0 auto;

    text-align:center;

    background:
    radial-gradient(
        circle at top,
        rgba(212,168,95,.16),
        rgba(212,168,95,.04) 60%,
        rgba(17,17,17,1) 100%
    );

    border:1px solid rgba(212,168,95,.15);

    border-radius:32px;

    padding:80px 50px;

    overflow:hidden;

    position:relative;
}

.google-logo{

    margin-bottom:25px;
}

.google-logo img{

    height:42px;

    width:auto;

    display:block;

    margin:0 auto;
}

.google-badge h2{

    font-size:96px;

    margin-bottom:20px;

    color:var(--primary);

    line-height:1;
}

.google-badge p{

    max-width:500px;

    margin:0 auto 35px;

    color:#c7c7c7;

    font-size:18px;

    line-height:1.8;
}

@media(max-width:767px){

    .references-google{

        padding:80px 0;
    }

    .google-badge{

        padding:50px 25px;
    }

    .google-badge h2{

        font-size:62px;
    }

}

/* ====================================
   REFERENCES CTA
==================================== */

.references-cta{

    padding:120px 0;

    background:#070707;
}

.references-cta-box{

    max-width:1000px;

    margin:0 auto;

    text-align:center;

    position:relative;

    overflow:hidden;

    background:
    radial-gradient(
        circle at top,
        rgba(212,168,95,.18),
        rgba(212,168,95,.05) 40%,
        rgba(17,17,17,1) 100%
    );

    border:1px solid rgba(212,168,95,.15);

    border-radius:32px;

    padding:80px 50px;
}

.references-cta-box{

    max-width:1000px;

    margin:0 auto;

    text-align:center;

    position:relative;

    overflow:hidden;

    background:
    radial-gradient(
        circle at top,
        rgba(212,168,95,.18),
        rgba(212,168,95,.05) 40%,
        rgba(17,17,17,1) 100%
    );

    border:1px solid rgba(212,168,95,.15);

    border-radius:32px;

    padding:80px 50px;
}

.references-cta-box::before{

    content:'';

    position:absolute;

    top:-150px;
    left:50%;

    transform:translateX(-50%);

    width:500px;
    height:500px;

    border-radius:50%;

    background:rgba(212,168,95,.08);

    filter:blur(120px);

    pointer-events:none;
}

.references-cta-box h2{

    font-size:72px;

    line-height:1.05;

    margin:25px 0;

    position:relative;

    z-index:2;
}

.references-cta-box p,
.references-cta-buttons{

    position:relative;

    z-index:2;
}

.references-cta-box p{

    max-width:650px;

    margin:0 auto 40px;

    color:#bdbdbd;

    font-size:18px;

    line-height:1.8;
}

.references-cta-buttons{

    display:flex;

    justify-content:center;

    gap:20px;
}

@media(max-width:767px){

    .references-cta{

        padding:80px 0;
    }

    .references-cta-box{

        padding:50px 25px;
    }

    .references-cta-box h2{

        font-size:42px;
    }

    .references-cta-buttons{

        flex-direction:column;
    }

}