*{
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        /* font-family: 'Inter', sans-serif; */
    }
.hero{
    min-height:100vh;
    position:relative;
    display:flex;
    align-items:center;
    padding:80px 8%;
    background:#050505;
    overflow:hidden;
    margin-top: 38px;
}
.container{
    width:100%;
    max-width:1300px;
    margin:auto;
    display:grid;
    grid-template-columns:1.2fr 0.8fr;
    gap:80px;
    align-items:center;
}
.badge{
    display:inline-flex;
    align-items:center;
    gap:8px;
    border:1px solid rgba(255,106,0,.4);
    color:#ff6a00;
    padding:8px 18px;
    border-radius:50px;
    font-size:11px;
    font-weight:500;
    letter-spacing:1px;
    margin-bottom:25px;
}
.hero-content h1{
    font-size:50px;
    line-height:1.1;
    font-weight:800;
    margin-bottom:25px;
    color:#fff;
}
.orange{
    color:#ff5a1f;
}
.outline{
    color:transparent;
    -webkit-text-stroke:2px #fff;
}
.hero-content p{
    max-width:620px;
    color:rgba(255,255,255,.55);
    line-height:1.8;
    font-size:16px;
    margin-bottom:35px;
    text-align:justify;
}
.buttons{
    display:flex;
    gap:16px;
    flex-wrap:wrap;
}
.btn-primary{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:16px 34px;
    background:#ff5a1f;
    color:#fff;
    text-decoration:none;
    border-radius:50px;
    font-weight:600;
    transition:.3s ease;
    box-shadow:0 0 25px rgba(255,90,31,.4);
}
.btn-primary:hover{
    transform:translateY(-3px);
}
.btn-secondary{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:16px 34px;
    color:#fff;
    text-decoration:none;
    border:1px solid rgba(255,255,255,.15);
    border-radius:50px;
    transition:.3s ease;
}
.btn-secondary:hover{
    border-color:#ff5a1f;
}
.stats{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
}
.hero-card{
    background:rgba(255,255,255,0.05);
    backdrop-filter:blur(12px);
    -webkit-backdrop-filter:blur(12px);
    border:1px solid rgba(255,255,255,0.08);
    border-radius:20px;
    padding:28px;
    transition:.3s ease;
}
.hero-card:hover{
    transform:translateY(-5px);
    border-color:rgba(255,90,31,.3);
}
.hero-card h3{
    font-size:24px;
    font-weight:800;
    color:#fff;
}
.hero-card h3 span{
    color:#ff5a1f;
}
.hero-card p{
    margin-top:8px;
    color:#9a9a9a;
    font-size:14px;
    line-height:1.5;
}
.line{
    width:75%;
    height:2px;
    background:#ff5a1f;
    margin-top:18px;
}
.bg-glow{
    position:absolute;
    width:500px;
    height:500px;
    border-radius:50%;
    filter:blur(180px);
    opacity:.18;
    pointer-events:none;
}

.bg-glow.left{
    background:#ff5a1f;
    left:-220px;
    top:120px;
}

.bg-glow.right{
    background:#ff5a1f;
    right:-200px;
    top:-50px;
}
@media(max-width:1200px){

    .hero-content h1{
        font-size:64px;
    }
    .container{
        gap:60px;
    }
}
@media(max-width:991px){
    .hero{
        padding:70px 5%;
    }
    .container{
        grid-template-columns:1fr;
        gap:50px;
    }
    .hero-content{
        text-align:center;
    }
    .hero-content p{
        margin-left:auto;
        margin-right:auto;
    }
    .buttons{
        justify-content:center;
    }
    .hero-content h1{
        font-size:56px;
    }
    .stats{
        max-width:700px;
        margin:auto;
    }
}
@media(max-width:768px){
    .hero{
        min-height:auto;
        padding:60px 20px;
    }
    .hero-content h1{
        font-size:42px;
        line-height:1;
    }
    .hero-content p{
        font-size:15px;
        line-height:1.7;
    }
    .stats{
        grid-template-columns:repeat(2,1fr);
        gap:15px;
    }
    .card{
        padding:20px;
    }
    .card h3{
        font-size:28px;
    }
    .card p{
        font-size:12px;
    }
    .btn-primary,
    .btn-secondary{
        padding:14px 24px;
        font-size:14px;
    }
}
@media(max-width:480px){
    .hero{
        padding:50px 15px;
    }
    .badge{
        font-size:9px;
        padding:7px 14px;
    }
    .hero-content h1{
        font-size:34px;
    }
    .hero-content p{
        font-size:14px;
    }
    .buttons{
        flex-direction:column;
        width:100%;
    }
    .btn-primary,
    .btn-secondary{
        width:100%;
    }
    .stats{
        grid-template-columns:1fr 1fr;
        gap:12px;
    }
    .card{
        padding:15px;
        border-radius:14px;
    }
    .card h3{
        font-size:22px;
    }
    .card p{
        font-size:11px;
    }
    .line{
        width:100%;
    }
}
.ugc-marquee-section{
    background:#050505;
    padding:0px 0;
    overflow:hidden;
}
.top-marquee,
.bottom-marquee{
    width:100%;
    overflow:hidden;
}
.top-marquee{
    margin-bottom:80px;
}
.top-track,
.bottom-track{
    display:flex;
    width:max-content;
    white-space:nowrap;
}
.top-track{
    animation:topScroll 85s linear infinite;
}
.top-track span{
    display:inline-block;
    color:rgba(255,255,255,0.30);
    font-size:11px;
    font-weight:500;
    letter-spacing:1px;
}
.bottom-marquee{
    background:#ff5a1f;
    padding:14px 0;
}
.bottom-track{
    animation:bottomScroll 75s linear infinite;
}
.bottom-track span{
    display:inline-block;
    color:rgba(255, 255, 255, .85);
    font-size:11px;
    font-weight:700;
    letter-spacing:1.5px;
    text-transform:uppercase;
}
.dot{
    color:#000 !important;
    display:inline-block;
}
.star{
    color:#ff2d2d !important;
    display:inline-block;
}
@keyframes topScroll{
    0%{
        transform:translateX(0);
    }
    100%{
        transform:translateX(-50%);
    }
}
@keyframes bottomScroll{
    0%{
        transform:translateX(-50%);
    }
    100%{
        transform:translateX(0);
    }
}
.top-marquee:hover .top-track,
.bottom-marquee:hover .bottom-track{
    animation-play-state:paused;
}
@media(max-width:991px){
    .top-marquee{
        margin-bottom:60px;
    }
    .top-track span{
        font-size:13px;
    }
    .bottom-track span{
        font-size:12px;
    }
}
@media(max-width:768px){
    .ugc-marquee-section{
        padding:25px 0;
    }
    .top-marquee{
        margin-bottom:45px;
    }
    .top-track span{
        font-size:12px;
    }
    .bottom-track span{
        font-size:11px;
        letter-spacing:1px;
    }
}
@media(max-width:480px){
    .top-track span{
        font-size:11px;
    }
    .bottom-track span{
        font-size:10px;
    }
    .top-marquee{
        margin-bottom:35px;
    }
}
 
.work-section{
    width:100%;
    background:#f7f6f4;
    padding:clamp(60px, 7vw, 0px) clamp(16px, 6vw, 8%);
    text-align:center;
    overflow:hidden;
    margin-top: -93px;
}
 
.work-header{
    width:100%;
    max-width:760px;
    margin:0 auto;
}

.work-header .small-title{
    display:inline-block;
    color:#ff5a1f;
    font-size:clamp(11px, 1vw, 13px);
    font-weight:700;
    letter-spacing:1.5px;
    line-height:1.2;
}

.work-header h2{
    margin:12px 0 14px;
    color:#111;
    font-size:clamp(32px, 4.2vw, 52px);
    font-weight:800;
    line-height:1.08;
    letter-spacing:-1.8px;
}

.work-header h2 span{
    color:#ff5a1f;
}

.work-header p{
    width:100%;
    max-width:650px;
    margin:0 auto;
    color:#666;
    font-size:clamp(14px, 1.3vw, 16px);
    line-height:1.65;
    text-align: justify;
}
 
.filters{
    display:flex;
    align-items:center;
    justify-content:center;
    flex-wrap:wrap;
    gap:10px;
    width:100%;
    margin:clamp(28px, 4vw, 44px) 0;
}

.filters button{
    min-height:42px;
    padding:10px 18px;

    border:1px solid #ddd;
    border-radius:999px;
    background:#fff;

    color:#222;
    font-family:inherit;
    font-size:13px;
    font-weight:600;
    line-height:1;

    cursor:pointer;
    white-space:nowrap;

    transition:
        background .3s ease,
        color .3s ease,
        border-color .3s ease,
        transform .3s ease,
        box-shadow .3s ease;
}

.filters button:hover{
    border-color:#ff5a1f;
    color:#ff5a1f;
    transform:translateY(-2px);
    box-shadow:0 7px 20px rgba(255,90,31,.10);
}

.filters button.active{
    background:#ff5a1f;
    color:#fff;
    border-color:#ff5a1f;
    box-shadow:0 7px 18px rgba(255,90,31,.18);
}
 
.grid{
    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:clamp(14px, 1.8vw, 22px);
    width:100%;
}
 
.video-card{
    min-width:0;
    width:100%;
    overflow:hidden;

    display:flex;
    flex-direction:column;

    background:#fff;
    border:1px solid rgba(0,0,0,.06);
    border-radius:18px;

    box-shadow:0 10px 25px rgba(0,0,0,.07);

    transition:
        transform .4s cubic-bezier(.2,.8,.2,1),
        box-shadow .4s ease;
}

.video-card:hover{
    transform:translateY(-7px);
    box-shadow:0 20px 50px rgba(0,0,0,.14);
}
 
.video-thumb{
    position:relative;
    width:100%;
 
    aspect-ratio:9 / 16;

    background:#000;
    overflow:hidden;
}

.video-thumb iframe{
    position:absolute;
    inset:0;

    width:100%;
    height:100%;

    border:0;
}
 
.video-thumb::after{
    content:"";
    position:absolute;
    inset:0;

    background:
        linear-gradient(
            180deg,
            transparent 55%,
            rgba(0,0,0,.18)
        );

    pointer-events:none;
}
 
.vcard.hidden{
    display:none !important;
}
 
.video-info{
    display:flex;
    flex-direction:column;
    align-items:flex-start;

    padding:15px 16px 18px;
    text-align:left;
}

.video-info h3{
    width:100%;
    margin:0 0 9px;

    color:#111;
    font-size:12px;
    font-weight:700;
    line-height:1.4;

    display:-webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;
    overflow:hidden;
}
 
.result{
    display:inline-flex;
    align-items:center;
    gap:6px;

    padding:6px 10px;

    border-radius:8px;
    background:#edf7f2;

    color:#1a7a4a;
    font-size:11px;
    font-weight:700;
    line-height:1;

    white-space:nowrap;
}

.result::before{
    content:"↑";
    font-size:11px;
    line-height:1;
}
 
.work-tags{
    display:flex;
    align-items:center;
    flex-wrap:wrap;
    gap:7px;

    width:100%;
    margin:0 13px 24px;
    padding:0;

    text-align:left;
}

.work-tag{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    min-height:26px;
    padding:5px 11px;

    border:1px solid #ff5a1f;
    border-radius:999px;

    background:#ff5a1f;
    color:#000;

    font-size:10px;
    font-weight:600;
    line-height:1;
    letter-spacing:.5px;
    text-transform:uppercase;

    white-space:nowrap;

    transition:
        background .25s ease,
        color .25s ease,
        border-color .25s ease,
        transform .25s ease,
        box-shadow .25s ease;
}

.work-tag:hover{
    border-color:#000;
    background:#000;
    color:#ff5a1f;

    transform:translateY(-2px);

    box-shadow:
        0 5px 14px rgba(255,140,0,.12);
}
 
@media (max-width:1200px){

    .work-section{
        padding-left:5%;
        padding-right:5%;
    }

    .grid{
        grid-template-columns:repeat(3,minmax(0,1fr));
    }
}
 
@media (max-width:900px){

    .work-section{
        padding-top:70px;
        padding-bottom:70px;
    }

    .work-header h2{
        letter-spacing:-1.2px;
    }

    .grid{
        grid-template-columns:repeat(2,minmax(0,1fr));
        gap:18px;
    }

    .video-card{
        border-radius:16px;
    }

    .video-info{
        padding:14px 14px 17px;
    }

    .video-info h3{
        font-size:13px;
    }
}
 
@media (max-width:600px){

    .work-section{
        padding:60px 18px;
    }

    .work-header h2{
        font-size:34px;
        line-height:1.1;
        letter-spacing:-1.2px;
    }

    .work-header p{
        font-size:14px;
        line-height:1.6;
    }

    .filters{
        justify-content:flex-start;
        gap:8px;

        margin:30px 0;
        overflow-x:auto;
        flex-wrap:nowrap;

        padding:3px 2px 8px;

        scrollbar-width:none;
        -webkit-overflow-scrolling:touch;
    }

    .filters::-webkit-scrollbar{
        display:none;
    }

    .filters button{
        flex:0 0 auto;
        min-height:40px;
        padding:9px 15px;
        font-size:12px;
    }

    .grid{
        grid-template-columns:repeat(2,minmax(0,1fr));
        gap:12px;
    }

    .video-card{
        border-radius:14px;
    }

    .video-info{
        padding:11px 11px 14px;
    }

    .video-info h3{
        font-size:11px;
        margin-bottom:7px;
    }

    .result{
        padding:5px 8px;
        font-size:9px;
    }

    .result::before{
        font-size:9px;
    }

    .work-tags{
        gap:5px;
        margin-bottom:18px;
    }

    .work-tag{
        min-height:24px;
        padding:5px 8px;
        font-size:8px;
    }
}
 
@media (max-width:380px){

    .work-section{
        padding-left:14px;
        padding-right:14px;
    }

    .work-header h2{
        font-size:30px;
    }

    .grid{
        grid-template-columns:1fr;
        gap:16px;
    }

    .video-card{
        max-width:100%;
        border-radius:16px;
    }

    .video-info{
        padding:14px 15px 17px;
    }

    .video-info h3{
        font-size:13px;
    }

    .result{
        font-size:10px;
    }

    .work-tag{
        font-size:9px;
    }
}
 
@media (hover:none){

    .video-card:hover{
        transform:none;
        box-shadow:0 10px 25px rgba(0,0,0,.07);
    }

    .filters button:hover{
        transform:none;
        box-shadow:none;
    }

    .work-tag:hover{
        transform:none;
        box-shadow:none;
    }
}

/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion:reduce){

    .video-card,
    .filters button,
    .work-tag{
        transition:none;
    }
}
 
.vp-section {
    width: 100%;
    background: #f7f6f2;
    padding: clamp(75px, 8vw, 29px) 24px;
    overflow: hidden;
}

.vp-container {
    width: min(1140px, 100%);
    margin: 0 auto;
}
 
.vp-header {
    max-width: 720px;
    margin-bottom: clamp(42px, 5vw, 60px);
}
 
.vp-eyebrow {
    display: flex;
    align-items: center;
    gap: 9px;

    margin-bottom: 18px;

    color: #ff5728;
 
    font-size: 11px;
    font-weight: 800;

    letter-spacing: .12em;
    line-height: 1;
}

.vp-eyebrow span {
    width: 18px;
    height: 2px;

    display: block;

    background: #ff5728;
    border-radius: 10px;
}

 

.vp-header h2 {
    margin: 0 0 17px;

    color: #111418;
 
    font-size: clamp(38px, 4.6vw, 56px);
    font-weight: 800;

    letter-spacing: -.045em;
    line-height: 1.05;
}


/* DESCRIPTION */

.vp-header > p {
    max-width: 650px;

    margin: 0;

    color: #626b73;

    /* font-family: Arial, Helvetica, sans-serif; */
    font-size: 15px;
    font-weight: 400;

    line-height: 1.7;
}


/* =========================================================
   CARDS
========================================================= */

.vp-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    width: 100%;
}


/* =========================================================
   SINGLE CARD
========================================================= */

.vp-card {
    position: relative;

    display: grid;

    grid-template-columns: 62px minmax(0, 1fr) 48px;

    align-items: center;

    min-height: 205px;

    padding: 30px 32px;

    background: #ffffff;

    border: 1px solid rgba(17, 20, 24, .09);
    border-radius: 18px;

    box-shadow:
        0 5px 18px rgba(17, 20, 24, .025);

    transition:
        transform .4s cubic-bezier(.2,.8,.2,1),
        box-shadow .4s ease,
        border-color .35s ease;
}


/* CARD HOVER */

.vp-card:hover {
    transform: translateY(-5px);

    border-color: rgba(255, 87, 40, .25);

    box-shadow:
        0 18px 45px rgba(17, 20, 24, .08),
        0 4px 12px rgba(255, 87, 40, .035);
}


/* =========================================================
   NUMBER
========================================================= */

.vp-card-number {
    align-self: start;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 38px;
    height: 27px;

    margin-top: 2px;

    border-radius: 7px;

    background: #f1f0ec;

    color: #747b81;

    /* font-family: Arial, Helvetica, sans-serif; */
    font-size: 10px;
    font-weight: 800;

    letter-spacing: .08em;

    transition:
        background .35s ease,
        color .35s ease,
        transform .35s ease;
}


/* NUMBER HOVER */

.vp-card:hover .vp-card-number {
    background: #ff5728;
    color: #fff;

    transform: translateY(-2px);
}


/* =========================================================
   CARD CONTENT
========================================================= */

.vp-card-content {
    padding: 0 35px 0 10px;
}


/* CARD TITLE */

.vp-card-content h3 {
    margin: 0 0 10px;

    color: #111418;

    /* font-family: Arial, Helvetica, sans-serif; */
    font-size: 20px;
    font-weight: 750;

    letter-spacing: -.025em;
    line-height: 1.3;

    transition:
        color .3s ease,
        transform .35s ease;
}


/* TITLE HOVER */

.vp-card:hover .vp-card-content h3 {
    color: #ff5728;
    transform: translateX(3px);
}


/* CARD TEXT */

.vp-card-content p {
    max-width: 700px;

    margin: 0;

    color: #69727a;

    /* font-family: Arial, Helvetica, sans-serif; */
    font-size: 13.5px;
    font-weight: 400;

    line-height: 1.7;
    text-align:justify;
}


/* =========================================================
   ARROW
========================================================= */

.vp-card-arrow {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    justify-self: end;

    border: 1px solid rgba(17, 20, 24, .1);
    border-radius: 50%;

    color: #20252a;

    font-size: 17px;
    line-height: 1;

    transition:
        background .35s ease,
        color .35s ease,
        border-color .35s ease,
        transform .45s cubic-bezier(.2,.8,.2,1);
}


/* ARROW HOVER */

.vp-card:hover .vp-card-arrow {
    background: #ff5728;
    border-color: #ff5728;

    color: #fff;

    transform: rotate(45deg);
}


/* =========================================================
   TOP ACCENT LINE
========================================================= */

.vp-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 32px;

    width: 0;
    height: 2px;

    background: #ff5728;

    border-radius: 10px;

    transition:
        width .45s cubic-bezier(.2,.8,.2,1);
}


.vp-card:hover::before {
    width: 45px;
}


@media (max-width: 800px) {

    .vp-section {
        padding: 70px 20px;
    }

    .vp-header {
        max-width: 650px;
    }

    /*
       IMPORTANT:
       Outer cards remain 2 columns.
    */

    .vp-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    /* Card's INTERNAL layout */

    .vp-card {
        grid-template-columns: 45px minmax(0, 1fr);

        min-height: 220px;
        padding: 24px 20px;

        border-radius: 16px;
    }

    .vp-card-content {
        padding: 0 5px 0 8px;
    }

    .vp-card-content h3 {
        padding-right: 35px;

        font-size: 18px;
        line-height: 1.3;
    }

    .vp-card-content p {
        font-size: 12.5px;
        line-height: 1.65;
    }

    .vp-card-number {
        width: 34px;
        height: 25px;

        font-size: 9px;
    }

    .vp-card-arrow {
        position: absolute;

        top: 18px;
        right: 18px;

        width: 34px;
        height: 34px;

        font-size: 14px;
    }
}


/* =========================================================
   MOBILE
   1 CARD PER ROW
--------------------------------------------------------- */

@media (max-width: 600px) {

    .vp-section {
        padding: 58px 16px;
    }

    .vp-header {
        margin-bottom: 35px;
    }

    .vp-eyebrow {
        margin-bottom: 15px;
        font-size: 10px;
    }

    .vp-header h2 {
        margin-bottom: 15px;

        font-size: clamp(32px, 9.5vw, 44px);
        line-height: 1.08;
    }

    .vp-header > p {
        font-size: 14px;
        line-height: 1.65;
    }


    /* OUTER GRID
       Mobile = one card per row
    */

    .vp-cards {
        grid-template-columns: 1fr;
        gap: 12px;
    }


    /* CARD */

    .vp-card {
        width: 100%;

        grid-template-columns: 42px minmax(0, 1fr);

        min-height: auto;

        padding: 22px 18px;

        border-radius: 16px;
    }


    /* NUMBER */

    .vp-card-number {
        width: 34px;
        height: 25px;

        font-size: 9px;
    }


    /* CONTENT */

    .vp-card-content {
        min-width: 0;

        padding: 0 5px 0 7px;
    }

    .vp-card-content h3 {
        margin-bottom: 9px;
        padding-right: 32px;

        font-size: 17px;
        line-height: 1.3;
    }

    .vp-card-content p {
        font-size: 12.5px;
        line-height: 1.65;
    }


    /* ARROW */

    .vp-card-arrow {
        position: absolute;

        top: 19px;
        right: 16px;

        width: 34px;
        height: 34px;

        font-size: 14px;
    }


    /* ORANGE TOP LINE */

    .vp-card::before {
        left: 18px;
    }

    .vp-card:hover::before {
        width: 35px;
    }
}


/* =========================================================
   SMALL MOBILE
--------------------------------------------------------- */

@media (max-width: 380px) {

    .vp-section {
        padding: 50px 14px;
    }

    .vp-header h2 {
        font-size: 31px;
    }

    .vp-header > p {
        font-size: 13px;
    }


    .vp-cards {
        grid-template-columns: 1fr;
        gap: 11px;
    }


    .vp-card {
        grid-template-columns: 38px minmax(0, 1fr);

        padding: 19px 15px;

        border-radius: 15px;
    }


    .vp-card-number {
        width: 31px;
        height: 23px;

        font-size: 8px;
    }


    .vp-card-content {
        padding-left: 6px;
    }

    .vp-card-content h3 {
        font-size: 16px;
    }

    .vp-card-content p {
        font-size: 12px;
    }


    .vp-card-arrow {
        top: 15px;
        right: 13px;

        width: 31px;
        height: 31px;
    }
}


/* =========================================================
   TOUCH DEVICES
--------------------------------------------------------- */

@media (hover: none) {

    .vp-card:hover {
        transform: none;

        box-shadow:
            0 5px 18px rgba(17, 20, 24, .025);
    }

    .vp-card:hover .vp-card-content h3 {
        color: #111418;
        transform: none;
    }

    .vp-card:hover .vp-card-number {
        transform: none;
    }

    .vp-card:hover .vp-card-arrow {
        transform: none;

        background: transparent;

        border-color: rgba(17, 20, 24, .1);

        color: #20252a;
    }

}


/* =========================================================
   ACCESSIBILITY
--------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {

    .vp-section *,
    .vp-section *::before,
    .vp-section *::after {
        transition: none !important;
    }

}

 
 .logo-gridp {
        display: flex;
        flex-direction: column;
        gap: 25px;
        padding: 12px 0;
        overflow: hidden;
    }
    .logo-row-wrapper {
        overflow: hidden;
        width: 100%;
    }
    .logo-rowp {
        display: flex;
        align-items: center;
        width: max-content;
        gap: 25px;
        white-space: nowrap;
        padding: 14px;
    }
    .logo-rowp-1 {
        animation: logoLeft 35s linear infinite;
    }
    .logo-rowp-2 {
        animation: logoRight 35s linear infinite;
    }
    .logo-row-wrapper:hover .logo-rowp {
        animation-play-state: paused;
    }
    .logo-rowp img {
        height: 89px;
        width: 201px;
        padding: 13px;
        background: #fff;
        border-radius: 14px;
        object-fit: contain;
        box-shadow: 0 8px 25px rgba(0, 0, 0, .12);
        transition: .35s ease;
    }
    .logo-rowp img:hover {
        transform: translateY(-6px);
        box-shadow:
            0 15px 35px rgba(255, 90, 31, .25);
    }
    @keyframes logoLeft {
        from {
            transform: translateX(0);
        }
        to {
            transform: translateX(-50%);
        }
    }
    @keyframes logoRight {
        from {
            transform: translateX(-50%);
        }
        to {
            transform: translateX(0);
        }
    }
    .trusted-section {
        padding: 25px 0;
        background: #fff;
    }
    .trusted-container {
        width: 100%;
        max-width: 1349px;
        margin: auto;
    }
    .section-title {
        text-align: center;
        margin-bottom: 50px;
    }
    .section-title h2 {
        font-size: 31px;
        font-weight: 700;
    }
    .section-title p {
        color: #666;
        margin-top: 10px;
        font-size: 14px;
    }
    @media(max-width:768px) {
        .section-title h2 {
            font-size: 28px;
        }
        .brand-card {
            width: 150px;
            height: 65px;
            font-size: 18px;
        }
    }

    /* =========================================
   END-TO-END PRODUCTION SECTION
   Prefix: eh-
   ========================================= */

.eh-section {
  --eh-bg: #f7f5f1;
  --eh-card-bg: #ffffff;
  --eh-text: #0d1724;
  --eh-muted: #65707c;
  --eh-border: #e3dfd8;
  --eh-orange: #ff6548;
  --eh-orange-light: #fff0eb;

  width: 100%;
  padding: 20px 24px;
  background: var(--eh-bg);
  color: var(--eh-text);
  overflow: hidden;
}

.eh-section *,
.eh-section *::before,
.eh-section *::after {
  box-sizing: border-box;
}

.eh-container {
  width: 100%;
  max-width: 1213px;
  margin: 0 auto;
}


/* =========================================
   HEADER
   ========================================= */

.eh-header {
  margin-bottom: 34px;
}

.eh-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  margin-bottom: 13px;

  color: var(--eh-orange);
  /* font-family: Arial, Helvetica, sans-serif; */
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 1.35px;
}

.eh-eyebrow i {
  display: block;
  width: 10px;
  height: 1px;
  background: var(--eh-orange);
}

.eh-header h2 {
  margin: 0;

  color: var(--eh-text);
  /* font-family: Arial, Helvetica, sans-serif; */
  font-size: clamp(30px, 4vw, 38px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -1.4px;
}

.eh-header p {
  max-width: 590px;
  margin: 11px 0 0;

  color: var(--eh-muted);
  /* font-family: Arial, Helvetica, sans-serif; */
  font-size: 13px;
  font-weight: 400;
  line-height: 1.55;
}


/* =========================================
   GRID
   ========================================= */

.eh-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px 10px;
}


/* =========================================
   CARD
   ========================================= */

.eh-card {
  position: relative;

  display: flex;
  align-items: center;
  gap: 12px;

  min-height: 52px;
  padding: 9px 15px 9px 12px;

  background: var(--eh-card-bg);
  border: 1px solid var(--eh-border);
  border-radius: 8px;

  color: var(--eh-text);
  /* font-family: Arial, Helvetica, sans-serif; */
  font-size: 17px;
  font-weight: 500;
  line-height: 1.3;

  cursor: default;

  transition:
    transform 220ms cubic-bezier(.2, .8, .2, 1),
    border-color 220ms ease,
    box-shadow 220ms ease,
    background-color 220ms ease;
}


/* Orange side accent */

.eh-card::after {
  content: "";

  position: absolute;
  left: 0;
  top: 13px;
  bottom: 13px;

  width: 2px;

  background: var(--eh-orange);
  border-radius: 0 3px 3px 0;

  transform: scaleY(0);
  transform-origin: center;

  transition: transform 220ms ease;
}


/* =========================================
   CHECK ICON
   ========================================= */

.eh-check {
  flex: 0 0 19px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 19px;
  height: 19px;

  border-radius: 50%;

  background: var(--eh-orange-light);
  color: var(--eh-orange);

  font-size: 11px;
  font-weight: 700;

  transition:
    background-color 220ms ease,
    color 220ms ease,
    transform 220ms ease;
}


/* =========================================
   HOVER EFFECT
   ========================================= */

.eh-card:hover {
  background: #ffffff;
  border-color: rgba(255, 101, 72, 0.35);

  transform: translateY(-3px);

  box-shadow:
    0 10px 25px rgba(13, 23, 36, 0.07),
    0 2px 6px rgba(13, 23, 36, 0.035);
}

.eh-card:hover::after {
  transform: scaleY(1);
}

.eh-card:hover .eh-check {
  background: var(--eh-orange);
  color: #ffffff;
  transform: scale(1.08);
}


/* =========================================
   TABLET
   ========================================= */

@media (max-width: 700px) {

  .eh-section {
    padding: 65px 20px;
  }

  .eh-container {
    max-width: 600px;
  }

  .eh-header {
    margin-bottom: 28px;
  }

  .eh-grid {
    gap: 8px;
  }
}


/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 520px) {

  .eh-section {
    padding: 55px 16px;
  }

  .eh-header h2 {
    font-size: 30px;
    letter-spacing: -1px;
  }

  .eh-header p {
    font-size: 12px;
    line-height: 1.6;
  }

  .eh-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .eh-card {
    min-height: 54px;
    font-size: 12px;
  }
}


/* =========================================
   SMALL MOBILE
   ========================================= */

@media (max-width: 360px) {

  .eh-section {
    padding: 45px 14px;
  }

  .eh-header h2 {
    font-size: 27px;
  }

  .eh-card {
    min-height: 52px;
    padding: 8px 12px 8px 10px;
  }
}


/* =========================================
   ACCESSIBILITY
   ========================================= */

@media (prefers-reduced-motion: reduce) {

  .eh-card,
  .eh-card::after,
  .eh-check {
    transition: none;
  }

  .eh-card:hover {
    transform: none;
  }
}
 
.nxp-process {
    --nxp-orange: #ff5a1f;
    --nxp-black: #111;
    --nxp-muted: #737373;
    --nxp-line: #dededb;
    --nxp-bg: #f7f6f4;

    width: 100%;
    padding: 25px 30px;

    background: var(--nxp-bg);

    overflow: hidden;
    isolation: isolate;
}

.nxp-process *,
.nxp-process *::before,
.nxp-process *::after {
    box-sizing: border-box;
}


/* =========================================================
   HEADER
========================================================= */

.nxp-process__header {
    width: min(720px, 100%);
    margin: 0 auto;

    text-align: center;
}

.nxp-process__eyebrow {
    display: inline-block;

    color: var(--nxp-orange);

    /* font-family: Arial, sans-serif; */
    font-size: 11px;
    font-weight: 700;

    letter-spacing: 2px;
    text-transform: uppercase;
}

.nxp-process__title {
    margin: 15px 0;

    color: var(--nxp-black);

    /* font-family: Arial, sans-serif; */
    font-size: clamp(38px, 5vw, 56px);
    font-weight: 800;

    line-height: 1.05;
    letter-spacing: -2px;
}

.nxp-process__title span {
    color: var(--nxp-orange);
}

.nxp-process__intro {
    max-width: 650px;

    margin: 0 auto;

    color: var(--nxp-muted);

    /* font-family: Arial, sans-serif; */
    font-size: 14px;

    line-height: 1.7;
}


/* =========================================================
   3 × 2 GRID
========================================================= */

.nxp-process__grid {
    width: min(1150px, 100%);

    margin: 75px auto 0;

    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    column-gap: 30px;
    row-gap: 70px;
}


/* =========================================================
   STEP
========================================================= */

.nxp-process__step {
    position: relative;

    min-width: 0;

    text-align: center;

    padding: 0 12px;

    transition:
        transform .35s ease;
}

.nxp-process__step:hover {
    transform: translateY(-4px);
}


/* =========================================================
   STEP LABEL
========================================================= */

.nxp-process__top {
    margin-bottom: 15px;

    display: flex;
    justify-content: center;
}

.nxp-process__label {
    padding: 5px 12px;

    background: #fff0e9;

    border-radius: 30px;

    color: var(--nxp-orange);

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 1px;
}


/* =========================================================
   INDEX
========================================================= */

.nxp-process__index {
    display: none;
}


/* =========================================================
   NUMBER CIRCLE
========================================================= */

.nxp-process__icon {
    position: relative;
    z-index: 3;

    width: 76px;
    height: 76px;

    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid #dededb;

    border-radius: 50%;

    background: #fff;

    color: #c1c1c1;

    /* font-family: Arial, sans-serif; */
    font-size: 18px;
    font-weight: 700;

    transition:
        .35s ease;
}


/* =========================================================
   CONNECTOR LINES
========================================================= */

/* 01 → 02 */

.nxp-process__step:nth-child(1)::after,

/* 02 → 03 */

.nxp-process__step:nth-child(2)::after,

/* 04 → 05 */

.nxp-process__step:nth-child(4)::after,

/* 05 → 06 */

.nxp-process__step:nth-child(5)::after {

    content: "";

    position: absolute;

    top: 53px;

    left: calc(50% + 38px);

    width: calc(100% - 76px + 30px);

    height: 1px;

    background: var(--nxp-line);

    z-index: 1;
}


/* =========================================================
   HOVER
========================================================= */

.nxp-process__step:hover .nxp-process__icon {
    background: var(--nxp-orange);

    border-color: var(--nxp-orange);

    color: #fff;

    transform: scale(1.08);

    box-shadow:
        0 10px 25px rgba(255,90,31,.18);
}

.nxp-process__step:hover h3 {
    color: var(--nxp-orange);
}


/* =========================================================
   TITLE
========================================================= */

.nxp-process__step h3 {
    margin: 23px 0 10px;

    color: var(--nxp-black);

    /* font-family: Arial, sans-serif; */
    font-size: 17px;
    font-weight: 700;

    line-height: 1.3;

    transition:
        color .3s ease;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.nxp-process__step p {
    max-width: 290px;

    margin: 0 auto;

    color: var(--nxp-muted);

    /* font-family: Arial, sans-serif; */
    font-size: 12.5px;

    line-height: 1.75;
    text-align: justify;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .nxp-process {
        padding: 75px 20px;
    }

    .nxp-process__grid {
        grid-template-columns: repeat(2, 1fr);

        gap: 55px 20px;

        margin-top: 60px;
    }

    /* hide desktop connectors */

    .nxp-process__step::after {
        display: none;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .nxp-process {
        padding: 60px 16px;
    }

    .nxp-process__title {
        font-size: 34px;

        line-height: 1.08;
        letter-spacing: -1px;
    }

    .nxp-process__intro {
        font-size: 13px;
    }


    .nxp-process__grid {
        grid-template-columns: 1fr;

        gap: 30px;

        margin-top: 45px;
    }


    /* MOBILE STEP */

    .nxp-process__step {
        display: grid;

        grid-template-columns: 52px 1fr;

        column-gap: 14px;

        text-align: left;

        padding: 0;
    }


    /* hide desktop badge */

    .nxp-process__top {
        grid-column: 1;
        grid-row: 1 / 3;

        margin: 0;
    }

    .nxp-process__label {
        display: none;
    }


    /* mobile number */

    .nxp-process__index {
        width: 46px;
        height: 46px;

        display: flex;
        align-items: center;
        justify-content: center;

        background: #fff0e9;

        border-radius: 50%;

        color: var(--nxp-orange);

        font-size: 10px;
        font-weight: 800;
    }


    /* hide big circle */

    .nxp-process__icon {
        display: none;
    }


    .nxp-process__step h3 {
        grid-column: 2;

        margin: 2px 0 7px;

        font-size: 16px;
    }

    .nxp-process__step p {
        grid-column: 2;

        max-width: none;

        margin: 0;

        font-size: 12px;

        line-height: 1.65;
    }


    /* no horizontal lines */

    .nxp-process__step::after {
        display: none !important;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 380px) {

    .nxp-process {
        padding: 50px 14px;
    }

    .nxp-process__title {
        font-size: 31px;
    }

    .nxp-process__grid {
        gap: 27px;
    }

    .nxp-process__step {
        grid-template-columns: 46px 1fr;
        column-gap: 12px;
    }

    .nxp-process__index {
        width: 42px;
        height: 42px;
    }

    .nxp-process__step h3 {
        font-size: 15px;
    }

    .nxp-process__step p {
        font-size: 11.5px;
    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .nxp-process *,
    .nxp-process *::before,
    .nxp-process *::after {
        transition: none !important;
    }

}


/* ./* =========================
   PROCESS SECTION
========================= */

/* =========================
   STEP HIGHLIGHT
========================= */

.ep-step-highlight {
    margin-top: 18px;
    min-height: 48px;
    padding: 10px 14px;

    display: flex;
    align-items: center;
    gap: 10px;

    background: #fff0e9;
    border: 1px solid transparent;
    border-radius: 6px;

    color: #222;
    font-size: 11px;
    line-height: 1.4;
    font-weight: 500;

    text-align: left;

    transition:
        background-color 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


/* =========================
   HIGHLIGHT HOVER
========================= */

.ep-step-highlight:hover {
    background: #ffe5d9;
    border-color: rgba(241, 90, 36, 0.25);

    transform: translateY(-3px);

    box-shadow: 0 8px 20px rgba(241, 90, 36, 0.10);
}


/* =========================
   HIGHLIGHT ICON
========================= */

.ep-highlight-icon {
    width: 25px;
    min-width: 25px;
    height: 25px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #f15a24;
    font-size: 18px;

    transition: transform 0.3s ease;
}


.ep-step-highlight:hover .ep-highlight-icon {
    transform: scale(1.12);
}


/* =========================
   TABLET
========================= */

@media (max-width: 991px) {

    .ep-step-highlight {
        min-height: 50px;
        padding: 10px 12px;

        font-size: 10.5px;
        gap: 8px;
    }

    .ep-highlight-icon {
        width: 23px;
        min-width: 23px;
        height: 23px;

        font-size: 16px;
    }
}


/* =========================
   MOBILE
========================= */

@media (max-width: 767px) {

    .ep-step-highlight {
        width: 100%;
        min-height: auto;

        padding: 11px 12px;

        font-size: 11px;
        line-height: 1.5;

        gap: 9px;
    }

    .ep-step-highlight:hover {
        transform: none;
        box-shadow: 0 5px 15px rgba(241, 90, 36, 0.08);
    }

    .ep-highlight-icon {
        flex-shrink: 0;
    }
}


/* =========================
   SMALL MOBILE
========================= */

@media (max-width: 480px) {

    .ep-step-highlight {
        padding: 10px;
        font-size: 10.5px;
    }

    .ep-highlight-icon {
        width: 22px;
        min-width: 22px;
        height: 22px;

        font-size: 15px;
    }
}



/* =====================================================
   BUILT FOR BRANDS SECTION
   Prefix: bs-
   Fully isolated CSS
   ===================================================== */

.bs-section {
  --bs-orange: #ff541f;
  --bs-orange-dark: #dd4618;
  --bs-card: #df4819;
  --bs-white: #ffffff;
  --bs-black: #071018;

  width: 100%;
  padding: 82px 24px;

  background: var(--bs-orange);
  color: var(--bs-white);

  overflow: hidden;
}

.bs-section *,
.bs-section *::before,
.bs-section *::after {
  box-sizing: border-box;
}


/* =====================================================
   CONTAINER
   ===================================================== */

.bs-container {
  width: 100%;
  max-width: 900px;

  margin: 0 auto;

  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);

  align-items: center;

  gap: 70px;
}


/* =====================================================
   LEFT CONTENT
   ===================================================== */

.bs-content {
  max-width: 440px;

  animation: bsFadeUp 700ms cubic-bezier(.2,.8,.2,1) both;
}


/* =====================================================
   EYEBROW
   ===================================================== */

.bs-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  margin-bottom: 15px;

  color: rgba(255, 255, 255, .95);

  /* font-family: Arial, Helvetica, sans-serif; */
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.3px;
  line-height: 1;
}

.bs-eyebrow i {
  display: block;

  width: 11px;
  height: 1px;

  background: rgba(255, 255, 255, .9);
}


/* =====================================================
   HEADING
   ===================================================== */

.bs-content h2 {
  margin: 0;

  color: var(--bs-white);

  /* font-family: Arial, Helvetica, sans-serif; */
  font-size: clamp(31px, 4vw, 38px);
  font-weight: 700;
  line-height: 1.05;

  letter-spacing: -1.5px;
}


/* =====================================================
   DESCRIPTION
   ===================================================== */

.bs-content > p {
  max-width: 410px;

  margin: 17px 0 0;

  color: rgba(255, 255, 255, .94);

  /* font-family: Arial, Helvetica, sans-serif; */
  font-size: 13px;
  font-weight: 400;
  line-height: 1.6;
  text-align: justify;
}


/* =====================================================
   BUTTON
   ===================================================== */

.bs-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;

  margin-top: 27px;
  padding: 14px 21px;

  border-radius: 999px;

  background: var(--bs-black);
  color: #ffffff;

  text-decoration: none;

  /* font-family: Arial, Helvetica, sans-serif; */
  font-size: 11px;
  font-weight: 700;
  line-height: 1;

  box-shadow: 0 7px 18px rgba(0, 0, 0, .12);

  transition:
    transform 220ms cubic-bezier(.2,.8,.2,1),
    background-color 220ms ease,
    box-shadow 220ms ease;
}

.bs-button strong {
  display: inline-block;

  font-size: 15px;
  font-weight: 400;
  line-height: 1;

  transition:
    transform 220ms ease;
}

.bs-button:hover {
  background: #ffffff;
  color: var(--bs-black);

  transform: translateY(-3px);

  box-shadow:
    0 12px 26px rgba(0, 0, 0, .18);
}

.bs-button:hover strong {
  transform: translateX(4px);
}


/* =====================================================
   CARDS GRID
   ===================================================== */

.bs-cards {
  display: grid;

  grid-template-columns: repeat(2, minmax(0, 1fr));

  gap: 13px;
}


/* =====================================================
   CARD
   ===================================================== */

.bs-card {
  position: relative;

  min-height: 143px;

  padding: 19px 18px 17px;

  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 12px;

  background: var(--bs-card);

  overflow: hidden;

  opacity: 0;

  animation:
    bsCardIn 650ms cubic-bezier(.2,.8,.2,1) forwards;

  transition:
    transform 250ms cubic-bezier(.2,.8,.2,1),
    background-color 250ms ease,
    box-shadow 250ms ease,
    border-color 250ms ease;
}


/* Individual stagger */

.bs-card:nth-child(1) {
  animation-delay: 120ms;
}

.bs-card:nth-child(2) {
  animation-delay: 210ms;
}

.bs-card:nth-child(3) {
  animation-delay: 300ms;
}

.bs-card:nth-child(4) {
  animation-delay: 390ms;
}


/* =====================================================
   CARD SHINE
   ===================================================== */

.bs-card::before {
  content: "";

  position: absolute;

  top: -100%;
  left: -80%;

  width: 55%;
  height: 300%;

  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, .09),
    transparent
  );

  transform: rotate(22deg);

  transition:
    left 600ms ease;
}

.bs-card:hover::before {
  left: 130%;
}


/* =====================================================
   CARD HOVER
   ===================================================== */

.bs-card:hover {
  background: var(--bs-orange-dark);

  border-color: rgba(255, 255, 255, .15);

  transform: translateY(-6px) scale(1.015);

  box-shadow:
    0 18px 35px rgba(116, 31, 4, .22),
    0 5px 12px rgba(116, 31, 4, .12);
}


/* =====================================================
   CHECK ICON
   ===================================================== */

.bs-check {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 21px;
  height: 21px;

  margin-bottom: 16px;

  border-radius: 50%;

  background: rgba(255, 255, 255, .94);
  color: var(--bs-orange);

  /* font-family: Arial, Helvetica, sans-serif; */
  font-size: 12px;
  font-weight: 700;

  transition:
    transform 250ms cubic-bezier(.2,.8,.2,1),
    background-color 250ms ease,
    color 250ms ease;
}

.bs-card:hover .bs-check {
  background: var(--bs-orange);
  color: #ffffff;

  transform:
    rotate(360deg)
    scale(1.12);
}


/* =====================================================
   CARD HEADING
   ===================================================== */

.bs-card h3 {
  position: relative;
  z-index: 1;

  margin: 0 0 8px;

  color: #ffffff;

  /* font-family: Arial, Helvetica, sans-serif; */
  font-size: 11px;
  font-weight: 700;
  line-height: 1.3;
}


/* =====================================================
   CARD TEXT
   ===================================================== */

.bs-card p {
  position: relative;
  z-index: 1;

  margin: 0;

  color: rgba(255, 255, 255, .91);

  /* font-family: Arial, Helvetica, sans-serif; */
  font-size: 10px;
  font-weight: 400;
  line-height: 1.5;
}


/* =====================================================
   ENTRANCE ANIMATIONS
   ===================================================== */

@keyframes bsFadeUp {

  from {
    opacity: 0;
    transform: translateY(25px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}


@keyframes bsCardIn {

  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* =====================================================
   TABLET
   ===================================================== */

@media (max-width: 850px) {

  .bs-section {
    padding: 70px 22px;
  }

  .bs-container {
    gap: 45px;
  }

  .bs-content h2 {
    font-size: 31px;
  }

  .bs-content > p {
    font-size: 12px;
  }

  .bs-card {
    min-height: 145px;
    padding: 17px 15px;
  }
}


/* =====================================================
   MOBILE
   ===================================================== */

@media (max-width: 680px) {

  .bs-section {
    padding: 60px 18px;
  }

  .bs-container {
    grid-template-columns: 1fr;

    gap: 42px;

    max-width: 550px;
  }

  .bs-content {
    max-width: 100%;
  }

  .bs-content h2 {
    font-size: clamp(29px, 8vw, 36px);
  }

  .bs-content > p {
    max-width: 500px;

    font-size: 12px;
    line-height: 1.6;
  }

  .bs-button {
    margin-top: 24px;
  }

  .bs-cards {
    gap: 10px;
  }

  .bs-card {
    min-height: 140px;
  }
}


/* =====================================================
   SMALL MOBILE
   ===================================================== */

@media (max-width: 430px) {

  .bs-section {
    padding: 50px 15px;
  }

  .bs-container {
    gap: 35px;
  }

  .bs-content h2 {
    font-size: 29px;
    letter-spacing: -1px;
  }

  .bs-content > p {
    font-size: 11px;
  }

  .bs-cards {
    grid-template-columns: 1fr;
  }

  .bs-card {
    min-height: auto;
    padding: 18px;
  }

  .bs-card p {
    max-width: 320px;
  }
}


/* =====================================================
   REDUCED MOTION
   ===================================================== */

@media (prefers-reduced-motion: reduce) {

  .bs-content,
  .bs-card {
    animation: none;
    opacity: 1;
  }

  .bs-card,
  .bs-button,
  .bs-check,
  .bs-button strong {
    transition: none;
  }

  .bs-card:hover,
  .bs-button:hover {
    transform: none;
  }

  .bs-card:hover .bs-check {
    transform: none;
  }
}


.wg2-growth-section{
    background:#050505;
    padding:30px 20px;
    position:relative;
    overflow:hidden;
}
.wg2-growth-section::before{
    content:"";
    position:absolute;
    width:500px;
    height:500px;
    background:#ff4b1f;
    filter:blur(180px);
    opacity:.12;
    top:-150px;
    right:-100px;
}
.wg2-wrapper{
    max-width:1150px;
    margin:auto;
    position:relative;
    z-index:2;
}
.wg2-header{
    max-width:650px;
    margin-bottom:55px;
}
.wg2-tag{
    display:inline-block;
    padding:7px 15px;
    border-radius:50px;
    background:rgba(255,75,31,.12);
    border:1px solid rgba(255,75,31,.35);
    color:#ff5b2c;
    font-size:11px;
    letter-spacing:2px;
    font-weight:700;
    margin-bottom:20px;
}
.wg2-header h2{
    margin:0;
    color:#fff;
    font-size:40px;
    line-height:1.1;
    font-weight:800;
    letter-spacing:-1px;
}
.wg2-header h2 span{
    color:#ff4b1f;
}
.wg2-header p{
    margin-top:20px;
    color:#999;
    font-size:15px;
    line-height:1.7;
}
.wg2-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}
.wg2-card{
    position:relative;
    padding:32px;
    border-radius:18px;
    background:
    linear-gradient(
        145deg,
        rgba(255,255,255,.08),
        rgba(255,255,255,.02)
    );
    border:1px solid rgba(255,255,255,.12);
    backdrop-filter:blur(15px);
    overflow:hidden;
    transition:.4s ease;
}
.wg2-card::before{
    content:"";
    position:absolute;
    width:0%;
    height:3px;
    background:#ff4b1f;
    top:0;
    left:0;
    transition:.4s ease;
}
.wg2-card:hover::before{
    width:100%;
}
.wg2-card:hover{
    transform:translateY(-10px);
    border-color:rgba(255,75,31,.5);
    box-shadow:
    0 20px 50px rgba(0,0,0,.6),
    0 0 30px rgba(255,75,31,.12);
}
.wg2-icon{
    width:46px;
    height:46px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:14px;
    position:relative;
    background:
    linear-gradient(
        145deg,
        rgba(255,75,31,.25),
        rgba(255,75,31,.08)
    );
    border:1px solid rgba(255,110,70,.45);
    color:#ff6b3d;
    font-size:12px;
    font-weight:800;
    letter-spacing:1px;
    margin-bottom:24px;
    box-shadow:
    0 8px 25px rgba(255,75,31,.18),
    inset 0 0 15px rgba(255,255,255,.08);
    backdrop-filter:blur(10px);
    transition:.35s ease;
}
.wg2-icon::before{
    content:"";
    position:absolute;
    inset:-5px;
    border-radius:18px;
    background:
    radial-gradient(
        circle,
        rgba(255,75,31,.35),
        transparent 70%
    );
    filter:blur(12px);
    opacity:.6;
    z-index:-1;
}
.wg2-card:hover .wg2-icon{
    transform:translateY(-5px) scale(1.08);
    color:#fff;
    background:
    linear-gradient(
        145deg,
        #ff4b1f,
        #ff7a45
    );
    box-shadow:
    0 15px 35px rgba(255,75,31,.45),
    inset 0 0 20px rgba(255,255,255,.25);
}
.wg2-card h3{
    color:white;
    font-size:17px;
    margin:0 0 12px;
}
.wg2-card p{
    color:#909090;
    font-size:13px;
    line-height:1.7;
    margin:0;
  text-align:justify;
}
@media(max-width:900px){
.wg2-grid{
grid-template-columns:repeat(2,1fr);
}
.wg2-header h2{
font-size:38px;
}
}
@media(max-width:600px){
.wg2-growth-section{
padding:70px 15px;
}
.wg2-grid{
grid-template-columns:1fr;
}
.wg2-header h2{
font-size:30px;
}
.wg2-card{
padding:25px;
}
}


 
.iw-section {
        padding: 40px 0;
        background: #fff;
        overflow: hidden;
    }
    .iw-container {
        width: 80%;
        max-width: 1200px;
        margin: auto;
    }
   .iw-heading {
    text-align: center;
    color: #222;
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.3;
}
.iw-heading span {
    color: #f58220;
}
.iw-desc {
    max-width: 850px;
    margin: 0 auto 40px;
    text-align: center;
    color: #666;
    font-size: 16px;
    line-height: 1.8;
    font-weight: 400;
}
    .iw-slider {
        width: 100%;
        overflow: hidden;
    }
    .iw-slider .swiper-wrapper {
        align-items: stretch;
    }
    .iw-slider .swiper-slide {
        height: auto;
    }
 
.iw-card{
    position:relative;
    background:#fff;
    border:1px solid #ececec;
    border-radius:22px;
    padding:30px;
    min-height:340px;
    overflow:hidden;
    transition:.45s ease;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
    display:flex;
    flex-direction:column;
}
.iw-card:hover{
    transform:translateY(-10px);
    box-shadow:0 22px 45px rgba(0,0,0,.12);
    border-color:#f58220;
}
.iw-card::before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:5px;
    height:0;
    background:#f58220;
    transition:.45s;
}

.iw-card:hover::before{
    height:100%;
}
.iw-card::after{
    content:"";
    position:absolute;
    top:-150%;
    left:-150%;
    width:220%;
    height:220%;
    background:linear-gradient(
        45deg,
        transparent,
        rgba(255,255,255,.45),
        transparent
    );
    transform:rotate(25deg);
    transition:.8s;
}

.iw-card:hover::after{
    left:100%;
}
.iw-icon{
    width:68px;
    height:68px;
    border-radius:50%;
    background:#fff4ea;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:22px;
    transition:.35s;
}
.iw-icon i{
    font-size:30px;
    color:#f58220;
    transition:.35s;
}
.iw-card:hover .iw-icon{
    background:#f58220;
    transform:rotate(10deg) scale(1.08);
}
.iw-card:hover .iw-icon i{
    color:#fff;
}
.iw-title{
    font-size:22px;
    color:#222;
    margin-bottom:14px;
    line-height:1.3;
}
.iw-text{
    color:#666;
    line-height:1.8;
    font-size:15px;
    flex:1;
}
.iw-arrow{
    width:42px;
    height:42px;
    border-radius:50%;
    background:#fff4ea;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#f58220;
    transition:.35s;
}
.iw-card:hover .iw-arrow{
    background:#f58220;
    color:#fff;
    transform:translateX(8px);
}
    .iw-icon {
        width: 60px;
        height: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 20px;
        position: relative;
        z-index: 2;
    }
    .iw-icon i {
        font-size: 42px;
        color: #f58220;
    }
    .iw-title {
        font-size: 20px;
        line-height: 1.3;
        margin-bottom: 15px;
        font-weight: 700;
        position: relative;
        z-index: 2;
    }
    .iw-text {
        font-size: 15px;
        line-height: 1.7;
        text-align: justify;
        margin-bottom: 25px;
        flex-grow: 1;
        position: relative;
        z-index: 2;
    }
    .iw-buttons {
        display: flex;
        justify-content: center;
        gap: 15px;
        margin-top: 35px;
    }
    .iw-buttons button {
        width: 45px;
        height: 45px;
        border: none;
        background: #fff;
        color: #f58220;
        border-radius: 50%;
        box-shadow: 0 4px 12px rgba(0, 0, 0, .15);
        cursor: pointer;
        transition: .3s;
    }
    .iw-buttons button:hover {
        background: #f58220;
        color: #fff;
    }
@media(max-width:768px){
    .iw-heading {
        font-size: 22px;
        line-height: 1.4;
    }
    .iw-desc {
        font-size: 14px;
        line-height: 1.7;
        margin-bottom: 30px;
    }
}
    @media(max-width:1200px) {
        .iw-container {
            width: 92%;
        }
    }
    @media(max-width:768px) {
        .iw-container {
            width: 90%;
        }
        .iw-heading {
            font-size: 22px;
        }
        .iw-card {
            min-height: auto;
            padding: 25px 20px;
        }
        .iw-icon i {
            font-size: 34px;
        }
        .iw-text {
            text-align: left;
        }
    }
   
.wbt-testimonial-section {
    --wbt-orange: #ff5a00;
    --wbt-orange-light: #ff7a45;
    --wbt-black: #080808;
    --wbt-card: #111111;
    --wbt-border: rgba(255, 255, 255, 0.09);
    --wbt-text: #ffffff;
    --wbt-muted: #8f8f8f;

    width: 100%;
    padding: 10px 24px 105px;

    background:
        radial-gradient(
            circle at 85% 15%,
            rgba(255, 90, 0, 0.07),
            transparent 30%
        ),
        radial-gradient(
            circle at 10% 80%,
            rgba(255, 90, 0, 0.035),
            transparent 28%
        ),
        #080808;

    color: var(--wbt-text);

    overflow: hidden;
    box-sizing: border-box;
}
 
.wbt-testimonial-section {
    --wbt-orange: #ff6b35;
    --wbt-orange-light: #ff9a62;
    --wbt-black: #111111;
    --wbt-text: #333333;
    --wbt-muted: #888888;

    width: 100%;
    padding: 85px 24px 90px;

    background:
        radial-gradient(
            circle at top left,
            #fff1e9 0%,
            #ffffff 42%
        ),
        linear-gradient(
            180deg,
            #ffffff 0%,
            #fafafa 100%
        );

    color: var(--wbt-text);

    overflow: hidden;
    box-sizing: border-box;
}

.wbt-testimonial-section *,
.wbt-testimonial-section *::before,
.wbt-testimonial-section *::after {
    box-sizing: border-box;
}


/* =========================================================
   CONTAINER
========================================================= */

.wbt-container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
}


/* =========================================================
   HEADING
========================================================= */

.wbt-heading {
    max-width: 750px;
    margin-bottom: 55px;
}


/* Small Orange Label */

.wbt-heading > span:first-child {
    display: inline-block;

    margin-bottom: 15px;

    color: var(--wbt-orange);

    font-size: 13px;
    line-height: 1.2;
    font-weight: 700;

    letter-spacing: 3px;
    text-transform: uppercase;
}


/* Main Heading */

.wbt-heading h2 {
    margin: 0;

    color: #111111;

    font-size: 46px;
    line-height: 1.1;
    font-weight: 800;

    letter-spacing: -1.8px;
}


/* Orange Heading Part */

.wbt-heading > span:last-child {
    display: block;

    margin-top: 3px;

    color: var(--wbt-orange);

    font-size: 50px;
    line-height: 1.1;
    font-weight: 800;

    letter-spacing: -1.8px;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.wbt-container > p {
    max-width: 650px;

    margin: -38px 0 45px;

    color: #777777;

    font-size: 14px;
    line-height: 1.75;
    font-weight: 400;
}


/* =========================================================
   TESTIMONIAL GRID
========================================================= */

.wbt-grid {
    display: grid;

    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: 28px;
}


/* =========================================================
   CARD
========================================================= */

.wbt-card {
    position: relative;

    min-height: 315px;

    padding: 35px;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.92),
            rgba(255, 255, 255, 0.72)
        );

    border: 1px solid rgba(255, 107, 53, 0.10);
    border-radius: 24px;

    box-shadow:
        0 15px 45px rgba(0, 0, 0, 0.07);

    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);

    overflow: hidden;

    transition:
        transform 0.45s cubic-bezier(.22, 1, .36, 1),
        box-shadow 0.45s ease,
        border-color 0.35s ease;
}


/* =========================================================
   TOP ORANGE ACCENT
========================================================= */

.wbt-card::before {
    content: "";

    position: absolute;

    left: 0;
    top: 0;

    width: 100%;
    height: 4px;

    background:
        linear-gradient(
            90deg,
            var(--wbt-orange),
            var(--wbt-orange-light)
        );

    transform: scaleX(0);
    transform-origin: left;

    transition: transform 0.45s ease;
}


/* =========================================================
   QUOTE MARK
========================================================= */

.wbt-card::after {
    content: "❝";

    position: absolute;

    right: 25px;
    top: 5px;

    color: rgba(255, 107, 53, 0.07);

    font-size: 95px;
    line-height: 1;

    pointer-events: none;
}


/* =========================================================
   CARD HOVER
========================================================= */

.wbt-card:hover {
    transform: translateY(-12px);

    border-color: rgba(255, 107, 53, 0.25);

    box-shadow:
        0 30px 70px rgba(255, 107, 53, 0.16),
        0 10px 35px rgba(0, 0, 0, 0.06);
}

.wbt-card:hover::before {
    transform: scaleX(1);
}


/* =========================================================
   STARS
========================================================= */

.wbt-stars {
    position: relative;
    z-index: 2;

    margin-bottom: 20px;

    color: var(--wbt-orange);

    font-size: 18px;
    line-height: 1;

    letter-spacing: 4px;

    text-shadow:
        0 5px 18px rgba(255, 107, 53, 0.18);
}


/* =========================================================
   TESTIMONIAL TEXT
========================================================= */

.wbt-card > p {
    position: relative;
    z-index: 2;

    margin: 0 0 30px;

    color: #555555;

    font-size: 15px;
    line-height: 1.8;
    font-weight: 400;

    letter-spacing: 0;

    text-align: justify;
}


/* =========================================================
   USER AREA
========================================================= */

.wbt-user {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;

    gap: 15px;

    margin-top: auto;
}


/* =========================================================
   AVATAR
========================================================= */

.wbt-avatar {
    display: flex;
    align-items: center;
    justify-content: center;

    flex: 0 0 54px;

    width: 54px;
    height: 54px;

    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            #ff7d4d,
            #ff5c20
        );

    border: 1px solid rgba(255, 255, 255, 0.35);

    border-radius: 50%;

    font-size: 15px;
    font-weight: 700;

    box-shadow:
        0 12px 30px rgba(255, 107, 53, 0.30);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}


/* Avatar Hover */

.wbt-card:hover .wbt-avatar {
    transform: scale(1.06);

    box-shadow:
        0 15px 35px rgba(255, 107, 53, 0.40);
}


/* =========================================================
   USER NAME
========================================================= */

.wbt-user h4 {
    margin: 0;

    color: #111111;

    font-size: 16px;
    line-height: 1.4;
    font-weight: 700;
}


/* =========================================================
   USER DESIGNATION
========================================================= */

.wbt-user span {
    display: block;

    margin-top: 4px;

    color: #888888;

    font-size: 13px;
    line-height: 1.5;
    font-weight: 400;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 992px) {

    .wbt-testimonial-section {
        padding: 75px 22px 80px;
    }

    .wbt-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .wbt-card:last-child {
        grid-column: 1 / -1;
    }

    .wbt-heading h2,
    .wbt-heading > span:last-child {
        font-size: 42px;
    }

    .wbt-card {
        min-height: 300px;
        padding: 30px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

    .wbt-testimonial-section {
        padding: 70px 15px;
    }

    .wbt-heading {
        max-width: 100%;
        margin-bottom: 40px;

        text-align: center;
    }

    .wbt-heading > span:first-child {
        margin-bottom: 13px;

        font-size: 11px;
        letter-spacing: 2px;
    }

    .wbt-heading h2,
    .wbt-heading > span:last-child {
        font-size: 32px;
        line-height: 1.12;
        letter-spacing: -1px;
    }

    .wbt-container > p {
        max-width: 100%;

        margin: -20px auto 35px;

        font-size: 12px;
        line-height: 1.7;

        text-align: center;
    }

    .wbt-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .wbt-card:last-child {
        grid-column: auto;
    }

    .wbt-card {
        min-height: auto;

        padding: 28px;

        border-radius: 20px;
    }

    .wbt-card > p {
        font-size: 14px;
        line-height: 1.75;
    }

    .wbt-stars {
        font-size: 17px;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .wbt-testimonial-section {
        padding: 58px 14px 65px;
    }

    .wbt-heading {
        margin-bottom: 35px;
    }

    .wbt-heading h2,
    .wbt-heading > span:last-child {
        font-size: 27px;
        letter-spacing: -0.7px;
    }

    .wbt-heading > span:first-child {
        font-size: 10px;
        letter-spacing: 1.8px;
    }

    .wbt-container > p {
        font-size: 11px;
    }

    .wbt-card {
        padding: 24px 21px;

        border-radius: 18px;
    }

    .wbt-card > p {
        font-size: 13px;
        line-height: 1.75;
        text-align: left;
    }

    .wbt-avatar {
        flex-basis: 48px;

        width: 48px;
        height: 48px;

        font-size: 14px;
    }

    .wbt-user h4 {
        font-size: 14px;
    }

    .wbt-user span {
        font-size: 12px;
    }

    .wbt-card::after {
        right: 15px;
        top: 5px;

        font-size: 75px;
    }
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .wbt-card,
    .wbt-card::before,
    .wbt-avatar {
        transition: none;
    }

    .wbt-card:hover {
        transform: none;
    }

    .wbt-card:hover .wbt-avatar {
        transform: none;
    }
}

    .small-popup {
    width: 300px !important;
    padding: 10px !important;
}

.small-popup .swal2-title {
    font-size: 18px;
    margin: 5px 0;
}

.small-popup .swal2-html-container {
    font-size: 14px;
    margin: 0px 0;
}

.small-popup .swal2-image {
    transform: scale(0.7);
    margin: 10px auto;
}

.small-popup .swal2-actions {
    margin-top: 10px;
}

.wg-faq-section{
    background:#f7f6f4;
    padding:0px 8%;
}

.wg-faq-container{
    max-width:1100px;
    margin:auto;
}

.wg-faq-tag{
    display:block;
    text-align:center;
    color:#ff5a1f;
    font-size:11px;
    font-weight:700;
    letter-spacing:2px;
    margin-bottom:15px;
}

.wg-faq-title{
    text-align:center;
    font-size:58px;
    line-height:1.05;
    font-weight:800;
    color:#111;
    margin-bottom:70px;
}

.wg-faq-title span{
    display:block;
    color:#ff5a1f;
}

/* FAQ LIST */

.wg-faq-list{
    border-top:1px solid #e6e6e6;
}

/* ITEM */

.wg-faq-item{
    border-bottom:1px solid #e6e6e6;
    transition:.3s ease;
}

/* QUESTION */
.wg-faq-question span{
    transition:.3s ease;
    font-size:22px;
}

.wg-faq-item:hover .wg-faq-question span,
.wg-faq-item.active .wg-faq-question span{
    color:#ff5a1f;
}
.wg-faq-question{
    width:100%;
    border:none;
    background:none;
    cursor:pointer;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:28px 0;

    font-size:22px;
    font-weight:700;
    color:#111;

    text-align:left;
    
}

/* ICON */

.wg-faq-icon{
    width:38px;
    height:38px;

    border-radius:50%;
    border:1px solid #ddd;

    display:flex;
    align-items:center;
    justify-content:center;

    color:#999;
    font-size:20px;

    transition:.35s ease;
    flex-shrink:0;
}

/* ANSWER */

.wg-faq-answer{
    max-height:0;
    overflow:hidden;
    transition:max-height .4s ease;
}

.wg-faq-answer p{
    padding:0 0 25px;
    color:#666;
    line-height:1.9;
    font-size:15px;
    max-width:900px;
    text-align: justify;
}

/* ACTIVE */

.wg-faq-item.active .wg-faq-answer{
    max-height:250px;
}

.wg-faq-item.active .wg-faq-icon{
    background:#ff5a1f;
    border-color:#ff5a1f;
    color:#fff;
    transform:rotate(45deg);
}

/* HOVER */

.wg-faq-item:hover .wg-faq-icon{
    border-color:#ff5a1f;
    color:#ff5a1f;
}

/* RESPONSIVE */

@media(max-width:768px){

    .wg-faq-section{
        padding:80px 20px;
    }

    .wg-faq-title{
        font-size:36px;
        margin-bottom:50px;
    }

    .wg-faq-question{
        font-size:17px;
        gap:15px;
    }

    .wg-faq-answer p{
        font-size:14px;
    }
}

/* ==========================
   Strategy Section
========================== */

 /*=========================================
        STRATEGY SECTION
=========================================*/

.strategy-section{
    position:relative;
    overflow:hidden;
    padding:100px 20px;
    background:#090909;
}

.strategy-section::before{
    content:"";
    position:absolute;
    width:600px;
    height:600px;
    left:-250px;
    top:-120px;
    border-radius:50%;
    background:radial-gradient(circle,
        rgba(255,106,0,.18) 0%,
        rgba(255,106,0,.08) 45%,
        transparent 75%);
    filter:blur(80px);
}

.strategy-section::after{
    content:"";
    position:absolute;
    width:500px;
    height:500px;
    right:-200px;
    bottom:-180px;
    border-radius:50%;
    background:radial-gradient(circle,
        rgba(255,106,0,.12),
        transparent 70%);
    filter:blur(80px);
}

.strategy-container{
    position:relative;
    z-index:2;

    max-width:1280px;
    margin:auto;

    display:grid;
    grid-template-columns:minmax(0,1fr) 520px;
    gap:80px;
    align-items:center;
}


/*=========================================
        LEFT CONTENT
=========================================*/

.strategy-content{
    position:relative;
}

.strategy-content::before{
    content:"";
    position:absolute;

    width:380px;
    height:380px;

    left:-120px;
    top:50%;

    transform:translateY(-50%);

    background:radial-gradient(circle,
        rgba(255,106,0,.20),
        transparent 70%);

    filter:blur(80px);

    z-index:-1;
}

.strategy-badge{

    display:inline-flex;
    align-items:center;
    gap:8px;

    padding:10px 22px;

    border-radius:50px;

    border:1px solid rgba(255,106,0,.35);

    background:rgba(255,106,0,.06);

    color:#ff6a00;

    font-size:12px;
    font-weight:700;

    letter-spacing:1px;

    margin-bottom:28px;
}

.strategy-title{

    color:#fff;

    font-size:56px;

    line-height:1.15;

    font-weight:800;

    margin-bottom:24px;
}

.strategy-title span{
    color:#ff6a00;
}

.strategy-description{

    max-width:560px;

    color:#ababab;

    font-size:16px;

    line-height:1.9;

    margin-bottom:38px;
}


/*=========================================
        FEATURES
=========================================*/

.strategy-features{

    display:flex;
    flex-direction:column;
    gap:22px;
}

.strategy-feature-card{

    display:flex;
    align-items:flex-start;

    gap:18px;

    padding:24px;

    border-radius:18px;

    background:#151515;

    border:1px solid #242424;

    transition:.35s ease;
}

.strategy-feature-card:hover{

    transform:translateY(-8px);

    border-color:#ff6a00;

    box-shadow:
    0 18px 45px rgba(255,106,0,.22);
}

.strategy-icon{

    width:46px;
    height:46px;

    flex-shrink:0;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    background:#ff6a00;

    color:#fff;

    font-size:18px;
    font-weight:700;
}

.strategy-feature-card h4{

    color:#fff;

    font-size:18px;

    margin-bottom:8px;
}

.strategy-feature-card p{

    color:#a8a8a8;

    line-height:1.8;

    font-size:14px;

    margin:0;
}


/*=========================================
        FORM CONTAINER
=========================================*/

.ugc-right{
    width:100%;
}

.wg-call-form-box{

    position:relative;

    background:#151515;

    border-radius:24px;

    border:1px solid rgba(255,255,255,.08);

    padding:30px;

    overflow:hidden;

    box-shadow:
        0 25px 60px rgba(0,0,0,.45),
        0 0 0 1px rgba(255,255,255,.03);
}

.wg-call-form-box::before{

    content:"";

    position:absolute;
    inset:0;

    background:
    linear-gradient(
        135deg,
        rgba(255,106,0,.10),
        transparent 40%);

    pointer-events:none;
}


/*=========================================
        RESPONSIVE
=========================================*/

@media(max-width:1100px){

.strategy-container{

grid-template-columns:1fr;

gap:60px;

}

.ugc-right{

max-width:650px;

margin:auto;

width:100%;

}

.strategy-title{

font-size:44px;

}

}

@media(max-width:768px){

.strategy-section{

padding:70px 18px;

}

.strategy-title{

font-size:34px;

}

.strategy-feature-card{

padding:20px;

}

.strategy-badge{

font-size:11px;

}

}
/*=========================================
        STEP BAR
=========================================*/

.wg-call-progress-top{
    display:flex;
    gap:10px;
    margin-bottom:28px;
}

.wg-call-progress-top .step-dot{
    flex:1;
    height:4px;
    border-radius:30px;
    background:#303030;
    transition:.35s ease;
}

.wg-call-progress-top .step-dot.active{
    background:#ff6a00;
    box-shadow:0 0 12px rgba(255,106,0,.55);
}


/*=========================================
        STEP TEXT
=========================================*/

.wg-call-step{
    color:#888;
    font-size:12px;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:1px;
    margin-bottom:12px;
}

.wg-call-question{
    color:#fff;
    font-size:28px;
    font-weight:700;
    line-height:1.35;
    margin-bottom:28px;
}


/*=========================================
        OPTIONS
=========================================*/

.wg-call-options{
    display:flex;
    flex-direction:column;
    gap:14px;
}

.wg-call-option{
    position:relative;

    display:flex;
    align-items:center;
    gap:14px;

    padding:18px 20px;

    border-radius:14px;

    border:1px solid #2d2d2d;

    background:#1b1b1b;

    cursor:pointer;

    transition:.3s ease;
}

.wg-call-option:hover{
    background:#222;
    border-color:#ff6a00;
    transform:translateX(6px);
}

.wg-call-option input{
    accent-color:#ff6a00;
    transform:scale(1.15);
}

.wg-call-option span{
    color:#f3f3f3;
    font-size:15px;
    font-weight:500;
}

.wg-call-option input:checked + span{
    color:#ff6a00;
    font-weight:700;
}


/*=========================================
        INPUT FIELDS
=========================================*/

.wg-call-fields{
    display:flex;
    flex-direction:column;
    gap:16px;
}

.wg-call-input{

    width:100%;

    height:56px;

    padding:0 18px;

    border-radius:14px;

    border:1px solid #333;

    background:#1b1b1b;

    color:#fff;

    font-size:15px;

    transition:.3s;
}

.wg-call-input::placeholder{
    color:#777;
}

.wg-call-input:focus{

    outline:none;

    border-color:#ff6a00;

    box-shadow:0 0 0 4px rgba(255,106,0,.12);
}


/*=========================================
        ERROR
=========================================*/

.wg-call-error{
    color:#ff5656;
    font-size:14px;
    margin:18px 0;
}


/*=========================================
        PROGRESS BAR
=========================================*/

.wg-call-progress-area{
    margin-top:30px;
}

.wg-call-progress-wrap{

    width:100%;
    height:6px;

    background:#2d2d2d;

    border-radius:50px;

    overflow:hidden;
}

.wg-call-progress-bar{

    width:20%;
    height:100%;

    background:linear-gradient(90deg,#ff6a00,#ff9248);

    border-radius:50px;

    transition:.4s ease;
}

.wg-call-progress-text{

    margin-top:12px;

    color:#8d8d8d;

    font-size:13px;
}


/*=========================================
        BUTTONS
=========================================*/

.wg-call-buttons{

    display:flex;

    gap:12px;

    margin-top:24px;
}

.wg-call-btn{

    flex:1;

    height:54px;

    border:none;

    border-radius:14px;

    background:linear-gradient(135deg,#ff6a00,#ff8740);

    color:#fff;

    font-size:15px;

    font-weight:700;

    cursor:pointer;

    transition:.35s;
}

.wg-call-btn:hover{

    transform:translateY(-3px);

    box-shadow:0 15px 35px rgba(255,106,0,.35);
}

.wg-call-btn:active{
    transform:translateY(0);
}

.wg-call-btn:disabled{
    opacity:.45;
    cursor:not-allowed;
    transform:none;
}


/*=========================================
        STEP ANIMATION
=========================================*/

.wg-call-step-box{
    animation:fadeStep .35s ease;
}

@keyframes fadeStep{

    from{
        opacity:0;
        transform:translateY(12px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}


/*=========================================
        MOBILE
=========================================*/

@media(max-width:768px){

    .wg-call-form-box{
        padding:22px;
    }

    .wg-call-question{
        font-size:22px;
    }

    .wg-call-option{
        padding:16px;
    }

    .wg-call-buttons{
        flex-direction:column;
    }

    .wg-call-btn{
        width:100%;
    }

}

/* =========================================================
   TRUST BADGES
========================================================= */

.strategy-trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

/* Individual pill */

.strategy-trust-item {
    position: relative;

    display: inline-flex;
    align-items: center;
    gap: 7px;

    min-height: 34px;
    padding: 7px 13px;

    color: #bdbdbd;

    background: rgba(255, 255, 255, 0.018);

    border: 1px solid #292929;
    border-radius: 999px;

    font-size: 11px;
    line-height: 1;
    font-weight: 500;

    white-space: nowrap;

    cursor: default;

    transition:
        color 0.3s ease,
        border-color 0.3s ease,
        background 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

/* Orange check */

.strategy-trust-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 16px;
    height: 16px;

    color: #ff6b00;

    font-size: 11px;
    font-weight: 800;

    transition:
        color 0.3s ease,
        transform 0.3s ease;
}

/* Hover */

.strategy-trust-item:hover {
    color: #ffffff;

    background: rgba(255, 90, 0, 0.07);

    border-color: rgba(255, 90, 0, 0.45);

    transform: translateY(-3px);

    box-shadow:
        0 8px 22px rgba(255, 90, 0, 0.10),
        inset 0 0 18px rgba(255, 90, 0, 0.025);
}

.strategy-trust-item:hover .strategy-trust-check {
    color: #ff7130;

    transform: scale(1.15);
}


/* =========================================================
   SMALL ORANGE GLOW ON HOVER
========================================================= */

.strategy-trust-item::before {
    content: "";

    position: absolute;
    left: 12px;
    right: 12px;
    bottom: -1px;

    height: 1px;

    background: linear-gradient(
        90deg,
        transparent,
        #ff5a00,
        transparent
    );

    opacity: 0;

    transition: opacity 0.3s ease;
}

.strategy-trust-item:hover::before {
    opacity: 1;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 768px) {

    .strategy-trust-badges {
        justify-content: center;
        margin-top: 20px;
    }

    .strategy-trust-item {
        font-size: 10.5px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 480px) {

    .strategy-trust-badges {
        gap: 8px;
        margin-top: 18px;
    }

    .strategy-trust-item {
        min-height: 32px;
        padding: 6px 11px;

        font-size: 10px;
    }

    .strategy-trust-check {
        width: 14px;
        height: 14px;

        font-size: 10px;
    }

}

/* ================================
   VOX POP CTA SECTION
================================ */

.vox-pop-cta {
    position: relative;
    width: 100%;
    min-height: 322px;
    background: #080808;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    isolation: isolate;
}

/* Bottom orange ambient glow */
.vox-pop-glow {
    position: absolute;
    width: 420px;
    height: 180px;
    left: 50%;
    bottom: -125px;
    transform: translateX(-50%);

    background: rgba(255, 82, 35, 0.42);
    filter: blur(65px);
    border-radius: 50%;

    z-index: -1;
    animation: voxGlow 4s ease-in-out infinite;
}

/* Content */
.vox-pop-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 55px 20px 70px;
}

/* Heading */
.vox-pop-content h2 {
    margin: 0;

    color: #ffffff;
    /* font-family: Arial, Helvetica, sans-serif; */
    font-size: 30px;
    line-height: 1.4;
    font-weight: 700;
    letter-spacing: -0.7px;

    animation: voxFadeUp 0.9s ease both;
}

/* Paragraph */
.vox-pop-content p {
    margin: 13px 0 25px;

    color: #858585;
    /* font-family: Arial, Helvetica, sans-serif; */
    font-size: 13px;
    line-height: 1.6;
    font-weight: 400;

    animation: voxFadeUp 0.9s ease 0.15s both;
}

/* ================================
   BUTTON
================================ */

.vox-pop-btn {
    position: relative;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    min-width: 204px;
    height: 43px;
    padding: 0 20px;

    background: #ff5b25;
    color: #ffffff;

    border-radius: 30px;
    text-decoration: none;

    /* font-family: Arial, Helvetica, sans-serif; */
    font-size: 12px;
    font-weight: 700;

    overflow: hidden;

    box-shadow:
        0 8px 25px rgba(255, 91, 37, 0.28);

    transition:
        transform 0.35s cubic-bezier(.2,.8,.2,1),
        box-shadow 0.35s ease,
        background 0.35s ease;

    animation: voxFadeUp 0.9s ease 0.3s both;
}

/* Shine layer */
.vox-pop-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;

    width: 70%;
    height: 100%;

    background: linear-gradient(
        100deg,
        transparent,
        rgba(255,255,255,0.35),
        transparent
    );

    transform: skewX(-20deg);
    transition: left 0.65s ease;
}

/* Button hover */
.vox-pop-btn:hover {
    transform: translateY(-5px) scale(1.035);

    background: #ff6937;

    box-shadow:
        0 12px 35px rgba(255, 91, 37, 0.45),
        0 0 25px rgba(255, 91, 37, 0.18);
}

/* Shine animation on hover */
.vox-pop-btn:hover::before {
    left: 140%;
}

/* Arrow */
.vox-pop-arrow {
    display: inline-block;

    font-size: 17px;
    line-height: 1;

    transition:
        transform 0.35s ease,
        margin-left 0.35s ease;
}

.vox-pop-btn:hover .vox-pop-arrow {
    transform: translateX(5px);
}


/* ================================
   ANIMATIONS
================================ */

@keyframes voxFadeUp {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes voxGlow {
    0%,
    100% {
        opacity: 0.55;
        transform: translateX(-50%) scale(0.95);
    }

    50% {
        opacity: 0.85;
        transform: translateX(-50%) scale(1.12);
    }
}


/* ================================
   MOBILE
================================ */

@media (max-width: 768px) {

    .vox-pop-cta {
        min-height: 300px;
    }

    .vox-pop-content {
        padding: 50px 18px 65px;
    }

    .vox-pop-content h2 {
        font-size: 26px;
        line-height: 1.3;
    }

    .vox-pop-content p {
        max-width: 500px;
        margin: 14px auto 25px;
        font-size: 12px;
    }

    .vox-pop-btn {
        min-width: 200px;
    }
}

@media (max-width: 480px) {

    .vox-pop-content h2 {
        font-size: 24px;
    }

    .vox-pop-content h2 br {
        display: none;
    }

    .vox-pop-content p {
        font-size: 12px;
    }
}