*{
        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:32px;
    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{
    background:#f7f6f4;
    padding:80px 8%;
    text-align:center;
}

/* ======================
   HEADER
====================== */

.work-header .small-title{
    color:#ff5a1f;
    font-size:12px;
    font-weight:600;
    letter-spacing:1px;
}

.work-header h2{
    font-size:44px;
    margin:10px 0;
    font-weight:800;
    color:#111;
}

.work-header h2 span{
    color:#ff5a1f;
}

.work-header p{
    color:#666;
    font-size:14px;
    max-width:600px;
    margin:0 auto;
    line-height:1.6;
}

/* ======================
   FILTERS
====================== */

.filters{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:10px;
    margin:40px 0;
}

.filters button{
    padding:10px 18px;
    border-radius:30px;
    border:1px solid #ddd;
    background:white;
    font-size:13px;
    cursor:pointer;
    transition:.3s;
}

.filters button.active{
    background:#ff5a1f;
    color:white;
    border-color:#ff5a1f;
}

/* ======================
   GRID
====================== */

.grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

/* ======================
   CARD
====================== */

/* =========================
   VIDEO CARD BASE
========================= */

.video-card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
    display:flex;
    flex-direction:column;
    transition:.3s ease;
}

.video-card:hover{
    transform:translateY(-6px);
    box-shadow:0 20px 50px rgba(0,0,0,0.15);
}

/* =========================
   VIDEO THUMB (FIXED)
========================= */

.video-thumb{
    position:relative;
    width:100%;
    aspect-ratio: 9 / 16;   /* BEST for UGC / reels */
    background:#000;
    overflow:hidden;
}

/* iframe full cover */
.video-thumb iframe{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    border:0;
}

/* optional overlay gradient */
.video-thumb::after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(180deg,transparent 60%,rgba(0,0,0,0.2));
    pointer-events:none;
}
.vcard.hidden{
    display:none !important;
}
/* =========================
   VIDEO INFO
========================= */

.video-info{
    padding:14px 16px 18px;
}

.video-info h3{
    font-size:11px;
    font-weight:700;
    color:#111;
    margin-bottom:8px;
    line-height:1.3;

    display:-webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;
    overflow:hidden;
}

/* result badge */
.result{
    display:inline-flex;
    align-items:center;
    gap:6px;
    font-size:11px;
    font-weight:700;
    color:#1a7a4a;
    background:#edf7f2;
    padding:6px 10px;
    border-radius:8px;
}

/* arrow */
.result::before{
    content:"↑";
    font-size:11px;
}

.work-tags {
     display: flex; 
    flex-wrap: wrap; 
    align-items: center;
     gap: 8px;
     margin-top: 0px;
    margin-left: 20px;
        margin-bottom: 24px;

     } 
.work-tag { display: inline-flex;
     align-items: center;
      justify-content: center; 
      padding: 5px 11px;
       border: 1px solid rgba(255, 255, 255, 0.12);
       border-radius: 999px; 
       background: #ff5a1f;
        color: #000; font-size: 10px;
         font-weight: 600; line-height: 1;
          letter-spacing: 0.5px; 
          text-transform: uppercase; 
          white-space: nowrap;
           transition: all 0.25s ease; } 
           .work-tag:hover { border-color: #000;; background: #000; color: #ff5a1f; transform: translateY(-1px); box-shadow: 0 4px 14px rgba(255, 140, 0, 0.12); }
/* =========================
   RESPONSIVE
========================= */
@media (max-width: 480px) {
    .work-tags {
        gap: 6px;
    }

    .work-tag {
        padding: 5px 9px;
        font-size: 9px;
    }
}
@media(max-width:1024px){
    .video-card{
        border-radius:16px;
    }
}

@media(max-width:768px){
    .video-info h3{
        font-size:14px;
    }

    .result{
        font-size:10px;
    }
}
 
 
 /* ================================
   WG WORK SECTION
================================ */

 
.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 60%,rgba(0,0,0,0.2));
    pointer-events:none;
}
.vcard.hidden{
    display: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;
        }
    }
.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;
}
}


.wg3-service-section{
    background:#050505;
    padding:30px 20px;
    position:relative;
    overflow:hidden;
}
.wg3-service-section::before{
    content:"";
    position:absolute;
    width:550px;
    height:550px;
    right:-150px;
    top:-200px;
    background:#ff4b1f;
    opacity:.10;
    filter:blur(180px);
}
.wg3-container{
    max-width:1150px;
    margin:auto;
    position:relative;
    z-index:2;
}
.wg3-heading{
    max-width:650px;
    margin-bottom:55px;
}
.wg3-tag{
    display:inline-block;
    padding:8px 16px;
    border-radius:40px;
    background:rgba(255,75,31,.12);
    border:1px solid rgba(255,75,31,.35);
    color:#ff6a3d;
    font-size:11px;
    font-weight:700;
    letter-spacing:1.8px;
    margin-bottom:20px;
}
.wg3-heading h2{
    color:#fff;
    margin:0;
    font-size:37px;
    line-height:1.1;
    font-weight:800;
    letter-spacing:-1px;
}
.wg3-heading h2 span{
    color:#ff4b1f;
}
.wg3-heading p{
    color:#999;
    font-size:15px;
    line-height:1.7;
    margin-top:20px;
    text-align: justify;
}
.wg3-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}
.wg3-card{
    position:relative;
    padding:30px;
    min-height:190px;
    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);
    transition:.35s ease;
    overflow:hidden;
}
.wg3-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.wg3-card-link:hover {
    color: inherit;
}
.wg3-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:0%;
    height:3px;
    background:#ff4b1f;
    transition:.4s ease;
}
.wg3-card:hover::before{
    width:100%;
}
.wg3-card:hover{
    transform:translateY(-8px);
    border-color:rgba(255,75,31,.5);
    box-shadow:
    0 25px 60px rgba(0,0,0,.7),
    0 0 35px rgba(255,75,31,.12);
}
.wg3-number{
    display:block;
    color:#ff5b2c;
    font-size:11px;
    font-weight:800;
    letter-spacing:1px;
    margin-bottom:18px;
}
.wg3-card h3{
    color:#fff;
    font-size:17px;
    margin:0 0 12px;
    font-weight:700;
}
.wg3-card p{
    margin:0;
    color:#909090;
    font-size:13px;
    line-height:1.7;
    text-align: justify;
}
@media(max-width:900px){
.wg3-grid{
grid-template-columns:repeat(2,1fr);
}
.wg3-heading h2{
font-size:38px;
}
}
@media(max-width:600px){
.wg3-service-section{
padding:70px 15px;
}
.wg3-grid{
grid-template-columns:1fr;
}
.wg3-heading h2{
font-size:30px;
}
.wg3-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;
        }
    }
.soc-process-section {
  position: relative;
  width: 100%;
  padding: 80px 5%;
  background: #f7f7f5;
  overflow: hidden;
  isolation: isolate;
}

.soc-process-section::before {
  content: "";
  position: absolute;
  width: 650px;
  height: 650px;
  top: -350px;
  right: -180px;
  border-radius: 50%;
  background: rgba(255, 83, 27, 0.06);
  filter: blur(100px);
  pointer-events: none;
  z-index: -1;
}

.soc-process-section::after {
  content: "";
  position: absolute;
  width: 450px;
  height: 450px;
  bottom: -300px;
  left: -180px;
  border-radius: 50%;
  background: rgba(255, 83, 27, 0.04);
  filter: blur(90px);
  pointer-events: none;
  z-index: -1;
}

.soc-process-wrapper {
  position: relative;
  width: min(1500px, 100%);
  margin: 0 auto;
}


/* =========================
   HEADER
========================= */

.soc-process-heading {
  display: block;
  margin-bottom: 65px;
}

.soc-process-heading-left {
  max-width: 900px;
}

.soc-process-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 20px;

  color: #ff541c;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.soc-process-eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ff541c;

  box-shadow:
    0 0 0 5px rgba(255, 84, 28, 0.1);
}

.soc-process-heading h2 {
  margin: 0;

  color: #111111;
  font-size: 64px;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -4px;
}

.soc-process-heading h2 span {
  color: #ff541c;
}


/* =========================
   PARAGRAPH BELOW HEADING
========================= */

.soc-process-heading-right {
  width: 100%;
  max-width: 700px;

  margin-top: 22px;
}

.soc-process-heading-right p {
  max-width: 680px;

  margin: 0;

  color: #737373;
  font-size: 17px;
  line-height: 1.7;
}


/* =========================
   PROCESS TIMELINE
========================= */

.soc-process-timeline {
  position: relative;

  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.soc-process-timeline::before {
  content: "";

  position: absolute;
  top: 38px;
  left: 6%;

  width: 88%;
  height: 1px;

  background: linear-gradient(
    90deg,
    rgba(255, 84, 28, 0.5),
    #dddddd,
    #dddddd,
    rgba(255, 84, 28, 0.5)
  );

  z-index: 0;
}


/* =========================
   CARD
========================= */

.soc-process-card {
  position: relative;

  min-height: 390px;
  padding: 28px 28px 32px;

  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 24px;

  background: rgba(255, 255, 255, 0.72);

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  box-shadow:
    0 10px 40px rgba(0, 0, 0, 0.04);

  overflow: hidden;
  z-index: 1;

  transition:
    transform 0.4s ease,
    border-color 0.4s ease,
    box-shadow 0.4s ease,
    background 0.4s ease;
}


/* Orange top animation */

.soc-process-card::before {
  content: "";

  position: absolute;
  top: 0;
  left: 0;

  width: 100%;
  height: 3px;

  background: #ff541c;

  transform: scaleX(0);
  transform-origin: left;

  transition: transform 0.4s ease;
}


/* CARD HOVER */

.soc-process-card:hover {
  transform: translateY(-12px);

  border-color: rgba(255, 84, 28, 0.25);

  background: #ffffff;

  box-shadow:
    0 25px 70px rgba(0, 0, 0, 0.1),
    0 0 40px rgba(255, 84, 28, 0.06);
}

.soc-process-card:hover::before {
  transform: scaleX(1);
}


/* =========================
   CARD TOP
========================= */

.soc-process-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;

  position: relative;
  z-index: 2;
}

.soc-process-step-label {
  color: #ff541c;

  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}


/* =========================
   ARROW
========================= */

.soc-process-arrow {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 38px;
  height: 38px;

  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 50%;

  color: #111111;
  font-size: 12px;

  transition:
    background 0.3s ease,
    color 0.3s ease,
    transform 0.3s ease;
}

.soc-process-card:hover .soc-process-arrow {
  background: #ff541c;
  color: #ffffff;
  border-color: #ff541c;

  transform: rotate(45deg);
}


/* =========================
   NUMBER
========================= */

.soc-process-number {
  margin-top: 45px;

  color: rgb(255, 90, 31);

  font-size: 100px;
  font-weight: 800;
  line-height: 0.8;

  letter-spacing: -8px;

  transition:
    color 0.4s ease,
    transform 0.4s ease;
}

.soc-process-card:hover .soc-process-number {
  color: rgb(255, 90, 31);
  transform: translateX(8px);
}


/* =========================
   CONTENT
========================= */

.soc-process-content {
  position: relative;

  margin-top: 42px;

  z-index: 2;
}

.soc-process-content h3 {
  margin: 0 0 15px;

  color: #111111;

  font-size: 20px;
  font-weight: 700;
  line-height: 1.25;

  letter-spacing: -0.5px;
}

.soc-process-content p {
  max-width: 260px;

  margin: 0;

  color: #777777;

  font-size: 13px;
  line-height: 1.7;

  text-align: justify;
}


/* =========================
   TABLET
========================= */

@media (max-width: 1100px) {

  .soc-process-section {
    padding: 80px 4%;
  }

  .soc-process-heading h2 {
    font-size: 58px;
  }

  .soc-process-timeline {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .soc-process-timeline::before {
    display: none;
  }
}


/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {

  .soc-process-section {
    padding: 70px 20px;
  }

  .soc-process-heading {
    margin-bottom: 50px;
  }

  .soc-process-heading h2 {
    font-size: clamp(45px, 9vw, 65px);
    letter-spacing: -3px;
  }

  .soc-process-heading-right {
    max-width: 600px;
    margin-top: 20px;
  }

  .soc-process-heading-right p {
    font-size: 15px;
    line-height: 1.7;
  }

  .soc-process-timeline {
    grid-template-columns: repeat(2, 1fr);
  }
}


/* =========================
   SMALL MOBILE
========================= */

@media (max-width: 550px) {

  .soc-process-section {
    padding: 60px 16px;
  }

  .soc-process-heading {
    margin-bottom: 40px;
  }

  .soc-process-heading h2 {
    font-size: 43px;
    letter-spacing: -2px;
  }

  .soc-process-heading-right p {
    font-size: 14px;
  }

  .soc-process-timeline {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .soc-process-card {
    min-height: 350px;
    padding: 25px;
  }

  .soc-process-number {
    font-size: 85px;
  }

  .soc-process-content {
    margin-top: 35px;
  }
}

/* =========================================
   WHY CHOOSE US — PROFESSIONAL SECTION
========================================= */

.why-choose-section {
    position: relative;
    width: 100%;
    padding: 100px 7%;
    background: #ff5708;
    overflow: hidden;
    isolation: isolate;
}

/* Background glow */
.why-choose-section::before {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    top: -300px;
    right: -180px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.10);
    filter: blur(100px);
    pointer-events: none;
    z-index: -1;
}

.why-choose-section::after {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    bottom: -300px;
    left: -200px;
    border-radius: 50%;
    background: rgba(120, 25, 0, 0.16);
    filter: blur(100px);
    pointer-events: none;
    z-index: -1;
}


/* =========================================
   CONTAINER
========================================= */

.why-choose-wrapper {
    width: min(1200px, 100%);
    margin: 0 auto;
}


/* =========================================
   HEADER
========================================= */

.why-choose-heading {
    max-width: 650px;
    margin-bottom: 55px;
}

.why-choose-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    margin-bottom: 18px;

    color: rgba(255, 255, 255, 0.85);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.why-choose-eyebrow::before {
    content: "";
    width: 18px;
    height: 2px;
    background: #ffffff;
}

.why-choose-heading h2 {
    margin: 0;

    color: #ffffff;
    font-size: 45px;
    font-weight: 750;
    line-height: 1.02;
    letter-spacing: -3.5px;
}

.why-choose-heading h2 span {
    color: #111111;
}


/* =========================================
   BENEFITS GRID
========================================= */

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}


/* =========================================
   BENEFIT CARD
========================================= */

.why-choose-item {
    position: relative;

    min-height: 76px;
    padding: 20px 22px;

    display: flex;
    align-items: center;
    gap: 15px;

    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 14px;

    background: rgba(120, 38, 0, 0.28);

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.05),
        0 8px 25px rgba(80, 20, 0, 0.08);

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    overflow: hidden;
    cursor: pointer;

    transition:
        transform 0.35s cubic-bezier(.2,.8,.2,1),
        background 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}


/* Animated orange/white shine */

.why-choose-item::before {
    content: "";

    position: absolute;
    top: 0;
    left: -120%;

    width: 80%;
    height: 100%;

    background: linear-gradient(
        100deg,
        transparent,
        rgba(255,255,255,0.10),
        transparent
    );

    transform: skewX(-20deg);

    transition: left 0.7s ease;
}


/* Bottom accent */

.why-choose-item::after {
    content: "";

    position: absolute;
    left: 22px;
    bottom: 0;

    width: 0;
    height: 2px;

    background: #ffffff;

    transition: width 0.4s ease;
}


/* =========================================
   CHECK ICON
========================================= */

.why-choose-check {
    position: relative;
    flex: 0 0 auto;

    width: 30px;
    height: 30px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #111111;
    color: #ffffff;

    font-size: 11px;

    transition:
        background 0.35s ease,
        color 0.35s ease,
        transform 0.35s ease,
        box-shadow 0.35s ease;
}


/* =========================================
   TEXT
========================================= */

.why-choose-item span:last-child {
    position: relative;
    z-index: 2;

    color: #ffffff;

    font-size: 14px;
    font-weight: 650;
    line-height: 1.3;

    transition:
        transform 0.35s ease,
        color 0.35s ease;
}


/* =========================================
   HOVER
========================================= */

.why-choose-item:hover {
    transform: translateY(-6px);

    background: rgba(255, 255, 255, 0.13);

    border-color: rgba(255, 255, 255, 0.28);

    box-shadow:
        0 18px 45px rgba(75, 20, 0, 0.18),
        0 0 30px rgba(255, 255, 255, 0.05);
}

.why-choose-item:hover::before {
    left: 140%;
}

.why-choose-item:hover::after {
    width: calc(100% - 44px);
}

.why-choose-item:hover .why-choose-check {
    background: #ffffff;
    color: #ff5708;

    transform: scale(1.12) rotate(-8deg);

    box-shadow:
        0 0 0 5px rgba(255,255,255,0.08);
}

.why-choose-item:hover span:last-child {
    transform: translateX(4px);
}


/* =========================================
   RESPONSIVE — TABLET
========================================= */

@media (max-width: 1000px) {

    .why-choose-section {
        padding: 80px 5%;
    }

    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-choose-heading h2 {
        font-size: 54px;
    }
}


/* =========================================
   RESPONSIVE — MOBILE
========================================= */

@media (max-width: 600px) {

    .why-choose-section {
        padding: 70px 20px;
    }

    .why-choose-heading {
        margin-bottom: 40px;
    }

    .why-choose-heading h2 {
        font-size: 43px;
        letter-spacing: -2.5px;
    }

    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .why-choose-item {
        min-height: 70px;
        padding: 18px;
    }

    .why-choose-item span:last-child {
        font-size: 13px;
    }
}

/* =====================================================
   VIDEO EDITING — INCLUDED SERVICES
   UNIQUE PREFIX: ve-included-
===================================================== */

.ve-included-section {
    position: relative;
    width: 100%;
    padding: 95px 5%;
    background: #080808;
    color: #ffffff;
    overflow: hidden;
    isolation: isolate;
}


/* BACKGROUND GLOW */

.ve-included-section::before {
    content: "";
    position: absolute;

    width: 550px;
    height: 550px;

    top: -300px;
    right: -180px;

    border-radius: 50%;

    background: rgba(255, 82, 20, 0.08);

    filter: blur(110px);

    pointer-events: none;
    z-index: -1;
}


.ve-included-section::after {
    content: "";
    position: absolute;

    width: 400px;
    height: 400px;

    bottom: -250px;
    left: -180px;

    border-radius: 50%;

    background: rgba(255, 82, 20, 0.045);

    filter: blur(100px);

    pointer-events: none;
    z-index: -1;
}


/* WRAPPER */

.ve-included-wrapper {
    position: relative;

    width: min(1200px, 100%);

    margin: 0 auto;
}


/* =====================================================
   HEADER
===================================================== */

.ve-included-header {
    max-width: 680px;

    margin-bottom: 58px;
}


.ve-included-eyebrow {
    display: flex;
    align-items: center;
    gap: 9px;

    margin-bottom: 18px;

    color: #ff5a1f;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 1.8px;
    text-transform: uppercase;
}


.ve-included-eyebrow span {
    width: 18px;
    height: 2px;

    background: #ff5a1f;

    border-radius: 5px;
}


.ve-included-header h2 {
    margin: 0;

    color: #ffffff;

    font-size: 49px;
    font-weight: 750;

    line-height: 1.04;

    letter-spacing: -3px;
}


.ve-included-header h2 em {
    color: #ff5a1f;
    font-style: normal;
}


.ve-included-header p {
    max-width: 560px;

    margin: 20px 0 0;

    color: #858585;

    font-size: 15px;
    line-height: 1.7;
}


/* =====================================================
   GRID
===================================================== */

.ve-included-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 55px;
}


/* COLUMN */

.ve-included-column {
    display: flex;
    flex-direction: column;
}


/* =====================================================
   SERVICE ITEM
===================================================== */

.ve-included-item {
    position: relative;

    display: flex;
    align-items: center;

    gap: 13px;

    min-height: 65px;

    border-bottom: 1px solid rgba(255, 255, 255, 0.09);

    color: #eeeeee;

    cursor: pointer;

    overflow: hidden;

    transition:
        color 0.3s ease,
        padding-left 0.35s ease;
}


/* HOVER BACKGROUND */

.ve-included-item::before {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 0;
    height: 100%;

    background: linear-gradient(
        90deg,
        rgba(255, 90, 31, 0.08),
        transparent
    );

    transition: width 0.4s ease;

    pointer-events: none;
}


/* ORANGE BOTTOM LINE */

.ve-included-item::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -1px;

    width: 0;
    height: 2px;

    background: #ff5a1f;

    transition: width 0.4s ease;

    z-index: 2;
}


/* =====================================================
   CHECK
===================================================== */

.ve-included-check {
    position: relative;

    flex: 0 0 auto;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 17px;
    height: 17px;

    border-radius: 50%;

    background: #ff5a1f;

    color: #080808;

    font-size: 8px;

    z-index: 2;

    transition:
        transform 0.35s ease,
        background 0.35s ease,
        color 0.35s ease,
        box-shadow 0.35s ease;
}


/* TEXT */

.ve-included-item > span:last-child {
    position: relative;

    z-index: 2;

    font-size: 13px;
    font-weight: 600;

    line-height: 1.4;

    transition:
        transform 0.35s ease,
        color 0.35s ease;
}


/* =====================================================
   HOVER
===================================================== */

.ve-included-item:hover {
    padding-left: 7px;

    color: #ffffff;
}


.ve-included-item:hover::before {
    width: 100%;
}


.ve-included-item:hover::after {
    width: 100%;
}


.ve-included-item:hover .ve-included-check {
    transform: scale(1.15);

    background: #ffffff;
    color: #ff5a1f;

    box-shadow:
        0 0 0 5px rgba(255, 90, 31, 0.12);
}


.ve-included-item:hover > span:last-child {
    transform: translateX(3px);
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 900px) {

    .ve-included-section {
        padding: 80px 5%;
    }

    .ve-included-grid {
        grid-template-columns: repeat(2, 1fr);

        gap: 40px 35px;
    }

    .ve-included-header h2 {
        font-size: 50px;
    }
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 600px) {

    .ve-included-section {
        padding: 70px 20px;
    }

    .ve-included-header {
        margin-bottom: 40px;
    }

    .ve-included-header h2 {
        font-size: 40px;
        letter-spacing: -2px;
    }

    .ve-included-header p {
        font-size: 14px;
    }

    .ve-included-grid {
        grid-template-columns: 1fr;

        gap: 0;
    }

    .ve-included-item {
        min-height: 62px;
    }

    .ve-included-item > span:last-child {
        font-size: 13px;
    }
}

/* =========================================================
   VIDEO EDITING PLATFORMS SECTION
   All classes are prefixed with "vep-" to prevent conflicts
   ========================================================= */

 .vep-platforms-section {
  --vep-orange: #ff5a00;
  --vep-black: #080808;
  --vep-text: #222222;
  --vep-muted: #667085;
  --vep-border: #e7e7e7;
  --vep-card-bg: #fafafa;

  width: 100%;
  padding: 80px 24px;
  background: #ffffff;
  box-sizing: border-box;
  overflow: hidden;
}

.vep-platforms-section *,
.vep-platforms-section *::before,
.vep-platforms-section *::after {
  box-sizing: border-box;
}

.vep-container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
}
 
.vep-heading {
  max-width: 720px;
  margin-bottom: 42px;
}

.vep-eyebrow {
  margin-bottom: 14px;
  color: var(--vep-orange);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2px;
}

.vep-heading h2 {
  margin: 0;
  color: var(--vep-black);
  font-size: 46px;
  line-height: 1.06;
  font-weight: 700;
  letter-spacing: -2px;
}

.vep-heading h2 span {
  color: var(--vep-orange);
}

.vep-heading p {
  max-width: 590px;
  margin: 17px 0 0;
  color: #6b7280;
  font-size: 18px;
  line-height: 1.7;
}
 
.vep-platform-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 15px;
}
 
.vep-card {
  position: relative;

  min-height: 181px;
  padding: 24px 20px 18px;

  background: var(--vep-card-bg);

  border: 1px solid #e4e4e4;
  border-top: 2px solid var(--vep-orange);
  border-radius: 0 0 9px 9px;

  transition:
    transform 0.3s cubic-bezier(.22, 1, .36, 1),
    background-color 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}
 
.vep-card::before {
  content: "";

  position: absolute;
  top: -2px;
  left: 0;

  width: 0;
  height: 2px;

  background: #ff7a33;

  transition: width 0.35s ease;
}
 
.vep-card-icon {
  width: 51px;
  height: 53px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 17px;

  background: #0b0b0b;
  color: var(--vep-orange);

  border-radius: 10px;

  font-size: 17px;
  font-weight: 700;
  line-height: 1;
}
 
.vep-card:nth-child(4) .vep-card-icon {
  font-size: 14px;
}
 
.vep-card h3 {
  margin: 0 0 13px;

  color: #111111;

  font-size: 30px;
  line-height: 1.3;
  font-weight: 700;
}
 
.vep-card-top {
  display: block;
  margin: 0;
}
 
.vep-arrow {
  display: none;
}
 
.vep-card:hover {
  transform: translateY(-6px);

  background: #ffffff;

  border-color: #dedede;

  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.08),
    0 4px 12px rgba(255, 90, 0, 0.06);
}

.vep-card:hover::before {
  width: 100%;
}
 
.vep-card ul {
  list-style: none;

  margin: 0;
  padding: 0;
}

.vep-card li {
  position: relative;

  padding: 7px 0 7px 12px;

  color: #667085;

  border-bottom: 1px solid #e9e9e9;

  font-size: 15.5px;
  line-height: 1.35;

  transition:
    color 0.2s ease,
    padding-left 0.25s ease;
}
 
.vep-card li::before {
  content: "";

  position: absolute;
  left: 0;
  top: 50%;

  width: 4px;
  height: 4px;

  background: var(--vep-orange);

  border-radius: 50%;

  transform: translateY(-50%);
}

.vep-card li:last-child {
  border-bottom: 0;
}
 
.vep-card li:hover {
  padding-left: 16px;
  color: var(--vep-orange);
}
 
@media (max-width: 1000px) {
  .vep-platform-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .vep-card {
    min-height: 175px;
  }
}
 
@media (max-width: 700px) {
  .vep-platforms-section {
    padding: 60px 20px;
  }

  .vep-heading {
    margin-bottom: 30px;
  }

  .vep-heading h2 {
    font-size: clamp(31px, 7vw, 44px);
    letter-spacing: -1.5px;
  }

  .vep-platform-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .vep-card {
    min-height: 170px;
  }

  /* Touch devices */
  .vep-arrow {
    display: none;
  }
}
 
@media (max-width: 480px) {
  .vep-platforms-section {
    padding: 48px 16px;
  }

  .vep-heading h2 {
    font-size: 32px;
    line-height: 1.08;
    letter-spacing: -1.2px;
  }

  .vep-heading p {
    font-size: 12px;
    line-height: 1.65;
  }

  .vep-platform-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .vep-card {
    min-height: auto;
    padding: 18px 15px;
  }

  .vep-card-icon {
    width: 36px;
    height: 36px;

    margin-bottom: 15px;

    border-radius: 9px;

    font-size: 16px;
  }

  .vep-card h3 {
    margin-bottom: 12px;
  }

  .vep-card li {
    padding: 8px 0 8px 12px;
  }
}
 

@media (prefers-reduced-motion: reduce) {
  .vep-card,
  .vep-card::before,
  .vep-card li {
    transition: none;
  }

  .vep-card:hover {
    transform: none;
  }
}

/* ---------- Reduced Motion ---------- */

@media (prefers-reduced-motion: reduce) {
  .vep-card,
  .vep-card::before,
  .vep-arrow,
  .vep-card li {
    transition: none;
  }

  .vep-card:hover {
    transform: none;
  }
}

 /* =========================================================
   WEBGROSS COMPARISON SECTION
   Scoped with "wgc-" prefix
   ========================================================= */

.wgc-comparison {
  --wgc-orange: #ff5a00;
  --wgc-orange-light: #ff7130;
  --wgc-bg: #090909;
  --wgc-card: #111111;
  --wgc-border: #242424;
  --wgc-text: #ffffff;
  --wgc-muted: #929292;

  width: 100%;
  padding: 72px 24px 70px;
  background: var(--wgc-bg);

  /* font-family: "Poppins", Arial, sans-serif; */
  color: var(--wgc-text);

  box-sizing: border-box;
  overflow: hidden;
}

.wgc-comparison *,
.wgc-comparison *::before,
.wgc-comparison *::after {
  box-sizing: border-box;
}

/* ---------- Container ---------- */

.wgc-container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
}

/* ---------- Heading ---------- */

.wgc-heading {
  max-width: 720px;
  margin-bottom: 38px;
}

.wgc-eyebrow {
  margin-bottom: 12px;

  color: var(--wgc-orange);

  font-size: 10px;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: 0.1px;
}

.wgc-heading h2 {
  margin: 0;

  color: #ffffff;

  font-size: clamp(30px, 3.1vw, 42px);
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -1.5px;
}

.wgc-heading h2 span {
  color: var(--wgc-orange);
}

.wgc-heading p {
  max-width: 560px;

  margin: 12px 0 0;

  color: #858585;

  font-size: 20px;
  line-height: 1.7;
  font-weight: 400;
}

/* ---------- Table ---------- */

.wgc-table-wrap {
  width: 100%;
  overflow-x: auto;

  scrollbar-width: thin;
  scrollbar-color: #333 transparent;
}

.wgc-table {
  width: 100%;
  min-width: 700px;
}

/* ---------- Rows ---------- */

.wgc-row {
  display: grid;
  grid-template-columns: 2.1fr 1fr 1fr 1fr;

  align-items: center;

  min-height: 39px;

  border-bottom: 1px solid var(--wgc-border);

  color: #eeeeee;

  font-size: 16.5px;
  font-weight: 500;

  transition:
    background-color 0.25s ease,
    color 0.25s ease;
}

/* Header */

.wgc-head {
  min-height: 30px;

  color: #888888;

  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.15px;

  border-bottom: 1px solid #2a2a2a;
}

/* Feature column */

.wgc-feature {
  text-align: left;
}

/* Other columns */

.wgc-row > div:not(.wgc-feature) {
  text-align: center;
}

/* ---------- Row Hover ---------- */

.wgc-row:not(.wgc-head):hover {
  background: rgba(255, 90, 0, 0.045);
}

.wgc-row:not(.wgc-head):hover .wgc-feature {
  color: #ffffff;
  transform: translateX(4px);
}

.wgc-row:not(.wgc-head) .wgc-feature {
  transition:
    color 0.25s ease,
    transform 0.25s ease;
}

/* ---------- Values ---------- */

.wgc-yes {
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
}

.wgc-depends {
  color: #f0f0f0;
}

.wgc-limited {
  color: #eeeeee;
}

.wgc-no {
  color: #ffffff;
  font-size: 16px;
  font-weight: 400;
}

/* Orange accent on Webgross column */

.wgc-row > div:nth-child(2) {
  position: relative;
}

.wgc-row:not(.wgc-head) > div:nth-child(2)::before {
  content: "";

  position: absolute;
  left: 50%;
  top: 50%;

  width: 3px;
  height: 3px;

  background: var(--wgc-orange);
  border-radius: 50%;

  opacity: 0;
  transform: translate(-50%, -50%) scale(0);

  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}

.wgc-row:not(.wgc-head):hover > div:nth-child(2)::before {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

/* ---------- Pricing Box ---------- */

.wgc-pricing {
  display: inline-flex;
  align-items: center;
  gap: 4px;

  margin-top: 24px;
  padding: 13px 19px;

  background: #151515;
  border: 1px solid #292929;
  border-radius: 8px;

  color: #dddddd;

  font-size: 10px;
  line-height: 1.5;

  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);

  transition:
    border-color 0.25s ease,
    background-color 0.25s ease,
    transform 0.25s ease;
}

.wgc-pricing strong {
  color: var(--wgc-orange);
  font-weight: 600;
}

.wgc-pricing span {
  color: #d0d0d0;
}

.wgc-pricing:hover {
  background: #181818;
  border-color: rgba(255, 90, 0, 0.35);
  transform: translateY(-2px);
}

/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

  .wgc-comparison {
    padding: 60px 22px;
  }

  .wgc-heading {
    margin-bottom: 32px;
  }

  .wgc-row {
    grid-template-columns: 1.8fr 1fr 1fr 1fr;
  }
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 650px) {

  .wgc-comparison {
    padding: 50px 16px 55px;
  }

  .wgc-heading {
    margin-bottom: 28px;
  }

  .wgc-heading h2 {
    font-size: 30px;
    line-height: 1.1;
    letter-spacing: -1px;
  }

  .wgc-heading p {
    font-size: 24px;
    line-height: 1.7;
  }

  /*
     Horizontal scrolling keeps the comparison
     readable on small screens.
  */

  .wgc-table-wrap {
    margin-right: -16px;
    padding-right: 16px;
  }

  .wgc-table {
    min-width: 650px;
  }

  .wgc-row {
    min-height: 42px;
    font-size: 10px;
  }

  .wgc-head {
    font-size: 8px;
  }

  .wgc-pricing {
    margin-top: 20px;

    font-size: 9.5px;
    padding: 12px 15px;
  }
}

/* =========================================================
   EXTRA SMALL MOBILE
   ========================================================= */

@media (max-width: 400px) {

  .wgc-heading h2 {
    font-size: 27px;
  }

  .wgc-desktop {
    display: none;
  }

  .wgc-pricing {
    display: block;
  }

  .wgc-pricing strong {
    display: inline;
  }
}

/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

  .wgc-row,
  .wgc-row .wgc-feature,
  .wgc-row > div:nth-child(2)::before,
  .wgc-pricing {
    transition: none;
  }
}

/* =========================================================
   PROFESSIONAL VIDEO EDITING TOOLS
   Prefix: wgt-
   ========================================================= */

.wgt-tools-section {
  --wgt-orange: #ff5a00;
  --wgt-orange-light: #ff7a32;
  --wgt-bg: #090909;
  --wgt-text: #ffffff;
  --wgt-muted: #8b8b8b;
  --wgt-border: rgba(255, 255, 255, 0.12);

  position: relative;
  width: 100%;
  padding: 82px 24px 88px;

  background:
    radial-gradient(
      circle at 50% 25%,
      rgba(255, 90, 0, 0.07) 0%,
      rgba(255, 90, 0, 0.025) 20%,
      transparent 48%
    ),
    var(--wgt-bg);

  color: var(--wgt-text);
  font-family: "Poppins", Arial, sans-serif;

  overflow: hidden;
  box-sizing: border-box;
}

.wgt-tools-section *,
.wgt-tools-section *::before,
.wgt-tools-section *::after {
  box-sizing: border-box;
}

/* ---------- Background Details ---------- */

.wgt-tools-section::before {
  content: "";

  position: absolute;
  top: 20px;
  left: 50%;

  width: 420px;
  height: 420px;

  transform: translateX(-50%);

  background: radial-gradient(
    circle,
    rgba(255, 90, 0, 0.045),
    transparent 68%
  );

  filter: blur(20px);
  pointer-events: none;
}

.wgt-tools-container {
  position: relative;
  z-index: 2;

  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
}

/* =========================================================
   HEADING
   ========================================================= */

.wgt-tools-heading {
  text-align: center;
  margin: 0 auto 48px;
}

.wgt-tools-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;

  margin-bottom: 17px;

  color: var(--wgt-orange);

  font-size: 12px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.2px;
}

.wgt-tools-heading h2 {
  margin: 0;

  color: #ffffff;

  font-size: 45px;
  line-height: 1.03;
  font-weight: 700;

  letter-spacing: -2.6px;
}

.wgt-tools-heading h2 span {
  color: var(--wgt-orange);

  position: relative;
}

/* Small underline */

.wgt-tools-heading h2 span::after {
  content: "";

  position: absolute;

  left: 2px;
  right: 2px;
  bottom: -5px;

  height: 2px;

  background: linear-gradient(
    90deg,
    transparent,
    var(--wgt-orange),
    transparent
  );

  opacity: 0.65;
}

.wgt-tools-heading p {
  max-width: 540px;

  margin: 18px auto 0;

  color: var(--wgt-muted);

  font-size: 21px;
  line-height: 1.7;
  font-weight: 400;
}

/* =========================================================
   TOOLS LIST
   ========================================================= */

.wgt-tools-list {
  display: flex;
  justify-content: center;
  align-items: center;
  /* flex-wrap: wrap; */

  gap: 13px;
}

/* =========================================================
   TOOL CARD
   ========================================================= */

.wgt-tool-card {
  position: relative;

  display: inline-flex;
  align-items: center;
  gap: 8px;

  min-height: 47px;
  padding: 0 19px;

  color: #eeeeee;

  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.045),
      rgba(255, 255, 255, 0.015)
    );

  border: 1px solid var(--wgt-border);
  border-radius: 100px;

  font-size: 13px;
  line-height: 1;
  font-weight: 500;

  white-space: nowrap;

  cursor: default;

  overflow: hidden;

  transition:
    transform 0.35s cubic-bezier(.22, 1, .36, 1),
    border-color 0.3s ease,
    background 0.3s ease,
    box-shadow 0.35s ease,
    color 0.3s ease;
}

/* Glass shine */

.wgt-tool-card::before {
  content: "";

  position: absolute;
  top: 0;
  left: -110%;

  width: 70%;
  height: 100%;

  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.07),
    transparent
  );

  transform: skewX(-20deg);

  transition: left 0.65s ease;
}

/* Orange bottom line */

.wgt-tool-card::after {
  content: "";

  position: absolute;
  left: 50%;
  bottom: 0;

  width: 0;
  height: 1px;

  background: var(--wgt-orange);

  transform: translateX(-50%);

  transition: width 0.35s ease;
}

/* ---------- Dot ---------- */

.wgt-tool-dot {
  position: relative;

  flex: 0 0 6px;

  width: 6px;
  height: 6px;

  background: var(--wgt-orange);
  border-radius: 50%;

  box-shadow:
    0 0 0 3px rgba(255, 90, 0, 0.08),
    0 0 10px rgba(255, 90, 0, 0.35);

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

/* ---------- Arrow ---------- */

.wgt-tool-arrow {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 0;
  margin-left: -3px;

  color: var(--wgt-orange);

  font-size: 13px;

  opacity: 0;
  transform: translate(-5px, 4px);

  overflow: hidden;

  transition:
    width 0.3s ease,
    margin-left 0.3s ease,
    opacity 0.25s ease,
    transform 0.3s ease;
}

/* =========================================================
   HOVER
   ========================================================= */

.wgt-tool-card:hover {
  color: #ffffff;

  transform: translateY(-6px);

  border-color: rgba(255, 90, 0, 0.45);

  background:
    linear-gradient(
      135deg,
      rgba(255, 90, 0, 0.10),
      rgba(255, 255, 255, 0.025)
    );

  box-shadow:
    0 15px 35px rgba(0, 0, 0, 0.35),
    0 0 25px rgba(255, 90, 0, 0.07);
}

.wgt-tool-card:hover::before {
  left: 140%;
}

.wgt-tool-card:hover::after {
  width: 55%;
}

.wgt-tool-card:hover .wgt-tool-dot {
  transform: scale(1.25);

  box-shadow:
    0 0 0 4px rgba(255, 90, 0, 0.08),
    0 0 14px rgba(255, 90, 0, 0.65);
}

.wgt-tool-card:hover .wgt-tool-arrow {
  width: 13px;
  margin-left: 2px;

  opacity: 1;
  transform: translate(0, 0);
}

/* =========================================================
   DESKTOP STAGGER
   ========================================================= */

@media (min-width: 701px) {

  .wgt-tool-card:nth-child(1) {
    transform: translateY(3px);
  }

  .wgt-tool-card:nth-child(2) {
    transform: translateY(-4px);
  }

  .wgt-tool-card:nth-child(3) {
    transform: translateY(2px);
  }

  .wgt-tool-card:nth-child(4) {
    transform: translateY(-4px);
  }

  .wgt-tool-card:nth-child(5) {
    transform: translateY(3px);
  }

  .wgt-tool-card:nth-child(1):hover,
  .wgt-tool-card:nth-child(3):hover,
  .wgt-tool-card:nth-child(5):hover {
    transform: translateY(-5px);
  }

  .wgt-tool-card:nth-child(2):hover,
  .wgt-tool-card:nth-child(4):hover {
    transform: translateY(-11px);
  }
}

/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 850px) {

  .wgt-tools-section {
    padding: 68px 20px 72px;
  }

  .wgt-tools-heading {
    margin-bottom: 40px;
  }

  .wgt-tools-list {
    gap: 11px;
  }

  .wgt-tool-card {
    min-height: 45px;
    padding: 0 17px;

    font-size: 12px;
  }
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

  .wgt-tools-section {
    padding: 58px 16px 65px;
  }

  .wgt-tools-heading {
    margin-bottom: 34px;
  }

  .wgt-tools-eyebrow {
    margin-bottom: 14px;
    font-size: 11px;
  }

  .wgt-tools-heading h2 {
    font-size: 34px;
    line-height: 1.08;
    letter-spacing: -1.5px;
  }

  .wgt-tools-heading p {
    margin-top: 16px;
    font-size: 11px;
  }

  .wgt-tools-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;

    max-width: 500px;
    margin: 0 auto;
  }

  .wgt-tool-card {
    justify-content: center;

    width: 100%;
    min-height: 46px;
    padding: 0 10px;

    font-size: 11px;
  }

  .wgt-tool-arrow {
    display: none;
  }

  .wgt-tool-card:hover {
    transform: translateY(-3px);
  }
}

/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 390px) {

  .wgt-tools-heading h2 {
    font-size: 30px;
  }

  .wgt-tools-list {
    grid-template-columns: 1fr;
  }

  .wgt-tool-card {
    justify-content: flex-start;
    padding-left: 18px;

    min-height: 48px;
  }
}

/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

  .wgt-tool-card,
  .wgt-tool-card::before,
  .wgt-tool-card::after,
  .wgt-tool-dot,
  .wgt-tool-arrow {
    transition: none;
  }

  .wgt-tool-card:hover {
    transform: none;
  }
}


 
 
/* =========================================================
   WEBGROSS TESTIMONIAL SECTION
   Fully scoped with wbt- prefix
   Font: Poppins
   ========================================================= */

/* =========================================================
   WBT TESTIMONIAL SECTION — MODERN / PREMIUM
========================================================= */

.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: 100px 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;
}


/* =========================================================
   GLOBAL BOX SIZING
========================================================= */

/* =========================================================
   TESTIMONIAL SECTION
========================================================= */

.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;
}
.nxfq-section {
    padding: 90px 20px;
    background: #fff;
}
.nxfq-container {
    max-width: 1397px;
    margin: auto;
    background: #050505;
    padding: 70px;
    /* border-radius: 32px; */
    position: relative;
    overflow: hidden;
    isolation: isolate;
}
.nxfq-container::before {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    background: #f76428;
    filter: blur(170px);
    opacity: .15;
    top: -180px;
    right: -150px;
    z-index: -1;
}
.nxfq-heading {
    text-align: center;
    color: #fff;
    margin-bottom: 50px;
}
.nxfq-tag {
    display: inline-block;
    padding: 9px 20px;
    border-radius: 50px;
    background: rgba(247, 100, 40, .12);
    border: 1px solid rgba(247, 100, 40, .3);
    color: #f76428;
    font-size: 14px;
    margin-bottom: 20px;
}
.nxfq-heading h2 {
    font-size: 50px;
    margin: 0 0 15px;
    font-weight: 800;
}
.nxfq-heading h2 span {
    color: #f76428;
}
.nxfq-heading p {
    color: #aaa;
    font-size: 17px;
}
.nxfq-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.nxfq-item {
    background:
        rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 18px;
    overflow: hidden;
    transition: .4s;
}

.nxfq-item:hover {
    border-color: #f76428;
    box-shadow:
        0 15px 40px rgba(247, 100, 40, .12);
}
.nxfq-question {
    align-items: flex-start;
    gap: 15px;
    width: 100%;
    padding: 24px 28px;
    background: none;
    border: 0;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    cursor: pointer;
    text-align: left;
}
.nxfq-question span {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f76428;
    color: #fff;
    font-size: 25px;
    transition: .4s;
}
.nxfq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .5s ease;
}
.nxfq-answer p {
    padding: 0 28px 25px;
    color: #cfcfcf;
    line-height: 1.8;
    margin: 0;
    text-align: justify;
}
.nxfq-item.active .nxfq-answer {
    max-height: 200px;
}
.nxfq-item.active .nxfq-question span {
    transform: rotate(45deg);
}
.nxfq-question h3 {
    margin: 0;
    flex: 1;
    font-size: 18px;
    line-height: 1.5;
}
.nxfq-question span {
    flex-shrink: 0;
}
@media (max-width:768px) {
    .nxfq-list {
        grid-template-columns: 1fr;
    }
    .nxfq-container {
        padding: 40px 20px;
    }
    .nxfq-heading h2 {
        font-size: 34px;
    }
    .nxfq-question {
        font-size: 16px;
        padding: 20px;
    }
    .nxfq-question h3 {
    margin: 0;
    flex: 1;
    font-size: 14px;
    line-height: 1.5;
    text-align: center;
}
.nxfq-answer p {
    padding: 0 28px 25px;
    color: #cfcfcf;
    line-height: 1.8;
    margin: 0;
    text-align: justify;
}
}

/* ==========================
   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;
    }

}