main{
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: auto;
    background-color: #080808;

}
main section {
    width: 100%;
    position: relative;
    padding: 120px 0px;
}

.badge{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    background: #e73c450d; 
    border: 1px solid #e73c4533; 
    border-radius: 100px;
    margin-bottom: 80px;
    cursor: default;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(231, 60, 69, 0.05);
margin-top: 50px;

}

.badge:hover {
    background: rgba(231, 60, 69, 0.1);
    border-color: rgba(231, 60, 69, 0.4);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background-color: #e73c45;
    border-radius: 50%;
    position: relative;
    animation: pulse-dot 2s infinite;
}

.badge-text {
    color: #e73c45;
    font-size: 14px;
    font-weight: 600;
    font-family: 'satoshi', sans-serif;
    letter-spacing: 0.5px;
}

@keyframes pulse-dot {
    0% { box-shadow: 0 0 0 0 rgba(231, 60, 69, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(231, 60, 69, 0); }
    100% { box-shadow: 0 0 0 0 rgba(231, 60, 69, 0); }
}
.landingpage {
    text-align: center;
    color: #ffffff;
    overflow: hidden;
        background-image: 
        radial-gradient(circle at 20% 30%, rgba(231, 60, 69, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 30% 70%, rgba(231, 60, 69, 0.03) 0%, transparent 40%);
            -webkit-mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 90%, transparent 100%);
min-height: 100vh;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;

}
.landingpage .content-wrapper{
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.landingpagebottom{
    padding: 30px 0 0 0;
    display: flex;
    flex-direction: column;
    gap: 30px;

}

.landingpage h4 {
    font-size: clamp(2.6rem, 6vw, 6.5rem);
    font-family: 'satoshi', sans-serif;
    font-weight: 800;
    color: #f1f1f1;
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 25px;
}

.landingpage p {
    font-size: clamp(1rem, 3vw, 1.1rem);
    font-family: 'satoshi', sans-serif;
    color: #a0a0a0; 
    max-width: 768px;
    line-height: 1.6;
}

.cta-link{
display:inline-flex;
align-items:center;
justify-content:center;
padding:18px 45px;
background:linear-gradient(135deg,#e73c45,#ff6a73);
color:#fff;
text-decoration:none;
border-radius:50px;
font-weight:700;
font-size:16px;
font-family:'musticapro';
transition:all .35s cubic-bezier(0.165,0.84,0.44,1);
margin-bottom:80px;
box-shadow:0 10px 30px rgba(211, 60, 70, 0.238);
}

.cta-link:hover{

transform:translateY(-5px);
box-shadow:0 10px 30px rgba(231,60,69,0.35);
}

main .platforms{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;

}

.hero-visual {
    width: 95%;
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    padding: 60px;
    border-radius: 40px;
    box-sizing: border-box;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

#platformslogo {
    width: 100%;
    max-width: 720px;
    margin: 0 auto;
}

.logo-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.logo-slot {
    width: 130px;
    height: 60px;
    position: relative;
    overflow: hidden;
    opacity: 0.8;
    transition: all .3s ease-in-out;

}
.logo-slot:hover{
    opacity: 1;
}
.logo-item {
    width: 100%;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: 0;
    left: 0;
    transition: transform .6s ease, opacity .6s ease;
}

.logo-item.enter {
    transform: translateY(-100%);
    opacity: 0;
}

.logo-item.active {
    transform: translateY(0);
    opacity: 1;
}

.logo-item.exit {
    transform: translateY(100%);
    opacity: 0;
}

@media (max-width: 678px) {
    main .platforms {
        align-items: center;
        justify-content: center;
        padding: 20px;
    }

    .hero-visual {
        width: 100%;
        padding: 30px;
        border-radius: 20px;
    }

    #platformslogo {
        max-width: 100%;
  
    }
.cta-link{
margin-bottom: 30px;
}
    .logo-wrapper {
        display: grid;
        grid-template-columns: repeat(2, 1fr); 
        gap: 20px;
        width: 100%;
        
    }

    .logo-slot {
        width: 120px;
        height: 75px;
        margin: 0 auto;
    }

    .logo-item {
        transition: transform 0.4s ease, opacity 0.4s ease;
    }
}


main .tippage-wrapper{
    height: 200vh; 
    position: relative;
}
main .tippage{
    position: sticky;
    top: 0;
    height: 100vh;   
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

main .tippage .tippagebtns{
display: flex;
flex-direction: row;
width: 100%;
align-items: center;
justify-content: space-around;
max-width: 420px;
}
.cta-link-pricing {
    display: inline-flex;
    padding: 18px 45px;
    background-color: rgba(13, 13, 13, 0.5);
        color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    transition: all .2s ease-in-out;
    margin-bottom: 80px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 10px -2px, rgba(0, 0, 0, 0.1) 0px 2px 2px -1px, rgba(255, 255, 255, 0.08) 0px 0px 0px 1px;
}


.cta-link-pricing:hover {
box-shadow: 
    rgba(0, 0, 0, 0.4) 0px 10px 25px -5px, 
    rgba(0, 0, 0, 0.3) 0px 10px 12px -6px, 
    rgba(255, 255, 255, 0.15) 0px 0px 0px 1.5px;
}
.hero-image-container{
    position: relative;
    top: 120px;
    width: 100%;
    max-width: 1440px;
    border-radius: 15px;
    z-index: 1;
}




.hero-image-container img{
    width: 100%;
    height: auto;
    display: block;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;

    transform: rotateX(15deg);
    transform-origin: bottom center;
    transition: transform 0.5s ease;

    -webkit-mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 60%, transparent 100%);

    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}



main .tippage p,
main .tippage .tippagebtns{
    position: relative;
    z-index: 2;
    margin-top: 60px;
}



.floating-stats-section {
    width: 100%;
    padding: 100px 0;
    background: #080808;
    display: flex;
    justify-content: center;
align-items: center;
    flex-direction: column;
    font-family: 'Satoshi', sans-serif;
    position: relative; 
    overflow: hidden;
}

.bg-chart-container {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 400px; 
    transform: translateY(-50%);
    z-index: 1; 
    pointer-events: none;
    opacity: 0.3; 

}

.bg-chart-container svg {
    width: 100%;
    height: 100%;
}

.chart-line {
    transition: stroke-dashoffset 3s ease-in-out;

    filter:
        drop-shadow(0 0 6px rgba(231, 60, 69, 0.3))
        drop-shadow(0 0 12px rgba(231, 60, 69, 0.9))
        drop-shadow(0 0 20px rgba(231, 60, 69, 0.4))
        drop-shadow(0 0 40px rgba(231, 60, 69, 0.7));
}

.bg-chart-container.animate .chart-line {
    stroke-dashoffset: 0;
}

.floating-stats-section::before {
    z-index: 0;
}

.floating-header, .stats-wrapper {
    position: relative;
    z-index: 2;
}
.floating-stats-section::before{
    content: "STATS";
    position: absolute;
    top: 150px;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: clamp(60px, 18vw, 200px);
    font-weight: 900;
    font-family: 'qurova';
    color: #ffffff10;
    letter-spacing: clamp(5px, 2vw, 20px);
    white-space: nowrap;
    pointer-events: none;
    z-index: 0;
            mask-image: linear-gradient(
            to bottom,
            transparent,
            black 30%,
            black 100%,
            transparent
        );
}
.stats-wrapper {
    width: 90%;
    max-width: 1200px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    
}

.stat-card {
    background: #ffffff08;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid #85858514;
    padding: 40px 20px;
    border-radius: 25px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
    
}

.stat-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(231, 60, 69, 0.4);
}

.stat-card h3 {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    margin-bottom: 15px;
    font-weight: 600;
    font-family: 'satoshi', sans-serif;

}

.stat-card .counter {
    color: #ffffff;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 800;
    margin: 0;
    font-variant-numeric: tabular-nums; 
    font-family: 'musticapro', sans-serif;

}



@media (max-width: 1024px) {
    .stats-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .stats-wrapper {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .stat-card {
        padding: 30px 15px;
    }
}


.partners-section{
width:100%;
padding:140px 20px;
background:#080808;
display:flex;
flex-direction:column;
align-items:center;
justify-content:center;
position:relative;
overflow:hidden;
}



.partners-wrapper{
width:90%;
max-width:1200px;
display:grid;
grid-template-columns:1fr 1fr;
align-items:center;
gap:80px;
}

.partners-text{
position:relative;
z-index:2;
width:100%;
}

.partners-text h2{
  font-size:2.8rem;
  color:#fff;
  margin-bottom:20px;
  font-family:'satoshi';
  position:relative;
  display:inline-block;
  width: 100%;
}

.partners-text h2::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-8px;
  width:100%;
  height:2px;

  background: linear-gradient(
    to right,
    #e73c45 0%,
    rgba(231,60,69,1) 40%,
    rgba(231,60,69,1) 70%,
    transparent 100%
  );

  border-radius:2px;

  filter: blur(1px);
}

.partners-text p{
color:#a0a0a0;
line-height:1.7;
font-size:1rem;
font-family:'ubuntu';
}


.partners-orbit-box{
width:320px;
height:320px;
display:flex;
align-items:center;
justify-content:center;
position:relative;
margin:auto;
}

.partners-icon{
display:flex;
align-items:center;
justify-content:center;
font-size:90px;
color:#e73c45;
position:relative;
z-index:2;
transition:transform 0.2s ease-out;
}

.partners-icon img{
width:200px;
opacity:0.8;
}
.partners-icon:hover::after{
border:2px dashed #e73c4595;
box-shadow:
0 0 10px #e73c4550,
0 0 25px #e73c4590,
inset 0 0 10px #e73c4590;
animation:orbitRotateReverb 18s linear infinite;

}

.partners-icon::after{
content:"";
position:absolute;
width:260px;
height:260px;
border-radius:50%;
border:2px dashed #e73c4595;
box-shadow:
0 0 10px #e73c4550,
0 0 25px #e73c4590,
inset 0 0 10px #e73c4590;
animation:orbitRotate 18s linear infinite;
}
@keyframes orbitRotateReverb{
from{transform:rotate(360deg);}
to{transform:rotate(0deg);}
}
@keyframes orbitRotate{
from{transform:rotate(0deg);}
to{transform:rotate(360deg);}
}

/* =========================
SLIDER
========================= */

.partners-slider{
width:100%;
max-width:800px;
overflow:hidden;
margin-top:100px;
position:relative;
margin-left:0;
margin-right:auto;
}

.partners-slider:hover .partners-track{
animation-play-state:paused;
}

.partners-slider::before,
.partners-slider::after{
content:"";
position:absolute;
top:0;
width:120px;
height:100%;
z-index:3;
pointer-events:none;
}

.partners-slider::before{
left:0;
background:linear-gradient(
to right,
#080808 0%,
rgba(8,8,8,0.5) 20%,
transparent 100%
);
}

.partners-slider::after{
right:0;
background:linear-gradient(
to left,
#080808 0%,
rgba(8,8,8,0.5) 20%,
transparent 100%
);
}

.partners-track{
display:flex;
align-items:center;
gap:60px;
width:max-content;
animation:partnersScroll 30s linear infinite;
will-change:transform;
}

.partners-track img{
opacity:0.7;
filter:grayscale(100%);
transition:all .3s ease;
height:45px;
}

.partners-track img:hover{
opacity:1;
transform:scale(1.1);
filter:grayscale(0%);
}

@keyframes partnersScroll{
from{transform:translateX(0);}
to{transform:translateX(-50%);}
}

/* =========================
TABLET
========================= */

@media(max-width:1200px){

.partners-wrapper{
grid-template-columns:1fr;
text-align:center;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
gap:60px;
}
.partners-text h2{
font-size:2.2rem;
width: 100%;
}
.partners-text h2::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-8px;
  width:100%;
  height:2px;

  background: linear-gradient(
    to right,
    transparent 0%,     
    #e73c45 20%,        
    #ff5a63 50%,         
    #e73c45 80%,       
    transparent 100%    
  );

  border-radius:2px;

  filter: blur(1px);
}
.partners-orbit-box{
width:260px;
height:260px;
}

.partners-icon img{
width:160px;
}

.partners-icon::after{
width:220px;
height:220px;
}

.partners-slider{
margin-top:70px;
width: 100%;
max-width: 100%;
}

.partners-track{
gap:40px;
}

.partners-track img{
height:35px;
}

}

/* =========================
MOBILE
========================= */

@media(max-width:500px){

.partners-section{
padding:90px 20px;
}
.partners-wrapper{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.partners-text h2{
font-size:1.8rem;
}

.partners-text p{
font-size:0.95rem;
}

.partners-orbit-box{
width:220px;
height:220px;
}

.partners-icon img{
width:130px;
}

.partners-icon::after{
width:180px;
height:180px;
}

.partners-slider{
width: 100%;
}

.partners-track{
gap:30px;
}

.partners-track img{
height:40px;
}
.partners-slider::before,
.partners-slider::after{
width:120px;
}

}

.features-section {
    width: 100%;
    padding: 120px 0;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 3;
    margin-top: -100vh; 
    border-top: 1px solid #303030;
    border-top-left-radius: 100px;
    border-top-right-radius: 100px;
    background-color: #080808;
    background: 
        radial-gradient(circle at 30% 100%, #e73c4510, transparent 50%),
        radial-gradient(circle at 70% 100%, #e73c4510, transparent 50%),
        #080808;
}
.features-section::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 250px;
    background: linear-gradient(
        to bottom,
        rgba(8, 8, 8, 0) 0%,
        #080808 100%
    );
    pointer-events: none;
    z-index: 1;
}
.features-section::before {
    content: "FEATURES";
    position: absolute;
    top: 75px;
    left: 50%;
    transform: translateX(-50%);
    
    font-size: clamp(30px, 18vw, 200px);
    font-weight: 900;
    font-family: 'qurova';
    
    color: #ffffff10;
    white-space: nowrap;

    pointer-events: none;
    z-index: 0;

    mask-image: linear-gradient(
        to bottom,
        transparent,
        black 30%,
        black 100%,
        transparent
    );
}

.features-wrapper {
    width: 90%;
    position: relative;
    
}
.features-list {
    display: flex;
    flex-wrap: wrap;     
    gap: 20px;            
    justify-content: center; 
    padding: 0 20px;    
     
}

.feature-box {
    flex: 1 1 250px;     
    max-width: 320px;     
    aspect-ratio: 1 / 1.1;   
    
    background: #c5c5c505;
    backdrop-filter: blur(20px);
    border-radius: 24px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;
    padding: 20px;

    transition: all 0.4s ease;
            -webkit-mask-image: linear-gradient(to bottom, black 80%, transparent 100%);

}

.feature-box:hover {
    transform: translateY(-8px) ;
    box-shadow: 0 5px 30px #ffffff0c;
}

.feature-icon {
    width: 100px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #fff;
margin-bottom: 50px;
padding: 15px;
border-radius: 50%;
background: #ffffff10;

}

.feature-icon img{
max-width: 100%;
position: relative;
user-select: none;
}


.feature-box h4 {
    font-size: 1.4rem;
    color: #fff;
    font-family: 'satoshi';
}

.feature-box p {
    color: #a0a0a0;
    font-size: 0.95rem;
    line-height: 1.1;
    font-family: 'ubuntu';

}

.side-line {
    position: absolute;
    left: -35px; 
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, 
        #ffffff00 0%, 
        rgba(255, 255, 255, 0.03) 15%, 
        rgba(255, 255, 255, 0.03) 85%, 
        rgba(255, 255, 255, 0) 100%);
    z-index: 3;
}

.side-line::after {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    width: 3px;
    height: 100%;
    background: linear-gradient(135deg, #e73c45, #fff);
    background-size: 100% 800px; 
    background-repeat: no-repeat;
    background-attachment: fixed;
    filter: drop-shadow(0 0 12px rgba(231, 60, 69, 0.8));
    pointer-events: none;
}
.side-line.right {
    position: absolute;
    left: auto;
    right: -35px;
        bottom: 0;
        width: 3px;
    background: linear-gradient(to bottom, 
        #ffffff00 0%, 
        rgba(255, 255, 255, 0.03) 15%, 
        rgba(255, 255, 255, 0.03) 85%, 
        rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}
.side-line.right::after {
   content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    width: 3px;
    height: 100%;
    background: linear-gradient(135deg, #fff, #e73c45);
    background-size: 100% 800px; 
    background-repeat: no-repeat;
    background-attachment: fixed;
    filter: drop-shadow(0 0 12px rgba(231, 60, 69, 0.8));
    pointer-events: none;
}


@media (max-width: 1024px) {
    .features-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-list {
        grid-template-columns: 1fr;
    }


    .side-line { display: none; }

}


    .faq-section {
        width: 100%;
        padding: 160px 0;
        display: flex;
        justify-content: center;
        position: relative;
        overflow: hidden;
        background-color: #080808;
    }
    .faq-bg-text{
    position: absolute;
    top: 215px;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: clamp(80px, 25vw, 220px);
    font-weight: 900;
    font-family: 'qurova';
    color: #272727;
    letter-spacing: 20px;
    white-space: nowrap;
    pointer-events: none;
    z-index: 1;
}
    .faq-section::before {
        content: "";
        position: absolute;
        inset: 0;

        background-image:
            linear-gradient(#e73c4525 1px, transparent 1px),
            linear-gradient(90deg, #e73c4525 1px, transparent 1px);

        background-size: 100px 100px;

        mask-image: linear-gradient(
            to bottom,
            transparent,
            black 0%,
            black 100%,
            transparent
        );

        pointer-events: none;
        z-index: 1;
    }
    .light-glow {
        position: absolute;
        width: 600px;
        height: 600px;
        border-radius: 50%;
        pointer-events: none;
        filter: blur(140px);

        opacity: 0;
        transform: scale(0.6);
        transition: all 1.6s cubic-bezier(0.19, 1, 0.22, 1) 0.5s;
    }
    .light-left {
        top: 50%;
        left: -350px;
        transform: translateY(-50%) scale(0.6);
        background: radial-gradient(circle, #ffffff59 0%, transparent 70%);
    }
    .light-right {
        top: 50%;
        right: -350px;
        transform: translateY(-50%) scale(0.6);
        background: radial-gradient(circle, rgba(255,255,255,0.35) 0%, transparent 70%);
    }
    .faq-section.is-active .light-glow {
        opacity: 0.5;
        transform: translateY(-50%) scale(1);
    }
    .faq-section::after {
        content: "";
        position: absolute;
        inset: 0;
        pointer-events: none;
        z-index: 2;

        background:
            linear-gradient(to bottom, #080808 0%, transparent 15%),
            linear-gradient(to top, #080808 0%, transparent 15%);
    }
    .faq-wrapper {
        position: relative;
        z-index: 5;
    }
    .faq-wrapper {
        width: 90%;
        max-width: 1200px;
        display: grid;
        gap: 30px;
        align-items: flex-start;
    }

    .faq-info {
        position: sticky;
        top: 120px; 
    }

    .faq-list {
        width: 100%;
    }

.faq-header {
    text-align: center;
    margin-bottom: 30px;
}

.faq-badge {
    display: inline-block;
    padding: 6px 14px;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 50px;
    background: #e73c450d;
    border: 1px solid #e73c4533;
    color: #e73c45;
    margin-bottom: 20px;
}

.faq-title {
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    font-family: 'satoshi';
}

.faq-subtitle {
    max-width: 600px;
    margin: 0 auto;
    color: #a0a0a0;
    line-height: 1.7;
    font-family: 'ubuntu';

}
.faq-bottom {
    text-align: center;
}

.faq-bottom p {
    color: #c5c5c5;
    margin-bottom: 20px;
    font-size: 1rem;
    font-family: 'satoshi'
}

.faq-cta-btn {
    display: inline-block;
    padding: 16px 32px;
    border-radius: 12.5px;
    background: #e73c45;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: 'satoshi-text';
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.faq-cta-btn::before{
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 150%;
    height: 100%;
    background: radial-gradient(circle at right, #29292969, transparent 60%);
    transition: width .2s ease;
    z-index: -1;
}
.faq-cta-btn:hover{
    transform: translateY(-3px);
}

    .faq-item {
        position: relative;
        background: #ffffff05;
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(25px);
    z-index: 1;
        border-radius: 10px;
        margin-bottom: 22px;
        overflow: hidden;
        border:1px solid #0f0f0f;

        transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .faq-item::before {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: inherit;
        background: linear-gradient(
            145deg,
            rgba(255,255,255,0.06),
            transparent 40%
        );
        opacity: 0.4;
        pointer-events: none;
    }

    .faq-item:hover {
        transform: translateY(-6px);

        background: rgba(255, 255, 255, 0.05);
        border:1px solid rgba(231, 60, 69, 0.5);


    }
    .faq-item.active {
        background: #0f0f0f;


    }
    .faq-question {
        width: 100%;
        padding: 20px;
        background: none;
        border: none;
    cursor: pointer;

        font-size: 1.05rem;
        font-weight: 600;

        color: #ffffff;
        display: flex;
        justify-content: space-between;
        align-items: center;

        text-align: left;
    }

    .faq-answer {
        height: 0; 
        overflow: hidden;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        padding: 0 25px;
        
    }

    .faq-answer p {
        color: #a0a0a0;
        line-height: 1.7;
        font-family: 'satoshi', sans-serif;
        padding-bottom: 28px;
        margin: 0;
        font-size:0.9rem;

    }

    .icon {
        font-size: 24px;
        color: #fff;
        transition: transform 0.4s ease;
        font-weight: 300;
        font-family: 'satoshi';
    }




    .faq-item.active .icon {
        transform: rotate(180deg);
    }

    @media (max-width: 1000px) {
        .faq-wrapper {
            grid-template-columns: 1fr;
            gap: 50px;
        }

        .faq-info {
            position: static;
            text-align: center;
        }

        .faq-description {
            margin: 0 auto;
        }
        
        .faq-item:hover {
            transform: translateY(-5px); 
        }
    }


.framed-dark-section {
    position: relative;
    width: 100%;
    padding: 140px 0;
    overflow: hidden;
}

.framed-dark-section::before,
.framed-dark-section::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 120px;
    pointer-events: none;
}

.framed-dark-section::before {
    top: 0;
    background: linear-gradient(to bottom, #080808, transparent);
}

.framed-dark-section::after {
    bottom: 0;
    background: linear-gradient(to top, #080808, transparent);
}

.framed-dark-section {
    position: relative;
    width: 100%;
    padding: 140px 0;
    overflow: hidden;
}

.framed-dark-section::before,
.framed-dark-section::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 120px;
    pointer-events: none;
}

.framed-dark-section::before {
    top: 0;
    background: linear-gradient(to bottom, #080808, transparent);
}

.framed-dark-section::after {
    bottom: 0;
    background: linear-gradient(to top, #080808, transparent);
}

.framed-inner {
    position: relative;
    max-width: 1024px;
    margin: 0 auto;
    border-radius: 24px;

    
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);

    overflow: hidden;

}

.framed-content {
    position: relative;
    border-radius: 24px;
    padding: 120px 60px;
background: #20202036;
border-radius: 16px;
box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
backdrop-filter: blur(13.7px);
-webkit-backdrop-filter: blur(13.7px);
    z-index: 3;
}

.framed-content::before {
    content: "";
    position: absolute;
    border-radius: 24px;
    inset: 0;

    opacity: 1;
    transition: opacity .4s ease;
}
.framed-content > * {
    position: relative;
    z-index: 3;
}

.glow-follower {
    position: absolute;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.07) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
}

.framed-inner:hover .glow-follower {
    opacity: 1;
}

@media (max-width: 1000px) {
    .framed-inner {
        padding: 40px;
    }
    .framed-content {
        padding: 80px 30px;
    }
}



.testimonials-section {
    width: 100%;
    padding: 80px 0 100px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: visible;
    background: #080808;
}

.bg-line-container {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 100%; 
    transform: translateY(-50%);
    z-index: 0;
    pointer-events: none;
    opacity: 0.2;
}

.bg-line-container svg {
    width: 100%;
    height: 100%;
}

.line-path {
    fill: none;
    stroke: #e73c45;
    stroke-width: 2;
    stroke-linecap: round;
    filter:
        drop-shadow(0 0 6px rgba(231, 60, 69, 0.3))
        drop-shadow(0 0 12px rgba(231, 60, 69, 0.6))
        drop-shadow(0 0 60px rgba(231, 60, 69, 0.4));
}

.testimonials-container {
    position: relative;
    z-index: 1;
    width: 95%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 2500px;

}

.testimonials-split{
    width: 100%;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.testimonials-left{
    width: auto;
    position: relative;
    display: inline-block;
align-items: center;
}

.testimonials-left h2 {
    font-size: clamp(2rem, 10vw, 36rem);
    font-family: 'cosmico', sans-serif;
    font-weight: 900;
    color: transparent; 
    -webkit-text-stroke: 5px #9e9e9e;
    text-stroke: 2px #9e9e9e;
    line-height: 1;
    margin: 0;
    user-select: none;
    
}
.testimonials-left::before,
.testimonials-left::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 80px; 
    z-index: 2;
    pointer-events: none;
}

.testimonials-left::before {
    top: 0;
    background: linear-gradient(to bottom, #080808, transparent);
}

.testimonials-left::after {
    bottom: 0;
    background: linear-gradient(to top, #080808, transparent);
}

.testimonials-right{
    width: 65%;
    justify-content: right;
    display: grid;
    height: 50vh;
    overflow-y: auto;
    padding-right: 25px;
}

.testimonials-right::-webkit-scrollbar{
    width: 6px;
}

.testimonials-right::-webkit-scrollbar-thumb{
    background: #e73c45;
    border-radius: 10px;
}

.testimonials-right .testimonials-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.testimonial-card {
    position: relative;
    width: 100%;
    max-width: 750px; 
    min-height: 250px; 
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    background: #111;
}

.brand-name{
    white-space: nowrap;
    font-family: 'ubuntu';
}

.testimonial-card:hover {
    border-color: #e73c45;
    box-shadow: 0 10px 30px rgba(231, 60, 69, 0.05);
}

.card-content {
    position: relative;
    z-index: 2;
    width: 65%;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(to right, #111 50%, rgba(17,17,17,0.5) 80%, transparent 100%);
}

.card-image-bg {
    position: absolute;
    right: 0;
    top: 0;
    width: 40%; 
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
    opacity: 0.85;
    mask-image: linear-gradient(to left, rgba(17,17,17,1) 20%, rgba(17,17,17,0.5) 60%, transparent 100%);
    -webkit-mask-image: linear-gradient(to left, rgba(17,17,17,1) 20%, rgba(17,17,17,0.5) 60%, transparent 100%);
}

.testimonial-stars {
    color: #FFD700; 
    font-size: 14px;
    margin-bottom: 15px;
    letter-spacing: 3px;
}

.testimonial-text {
    font-size: 16px; 
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 20px;
    font-family: 'satoshi';
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-user img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 1.5px solid #e73c45;
}

.user-info h4 {
    color: #fff;
    font-size: 15px;
    margin: 0;
    font-weight: 600;
    font-family: 'satoshi';
}

.user-info span {
    color: #666;
    font-size: 12px;
    font-family: 'satoshi';
}
@media (max-width: 1024px) {
.testimonials-right::-webkit-scrollbar{
    width: 3px;
}

.testimonials-right::-webkit-scrollbar-thumb{
    background: #e73c45;
    border-radius: 10px;
}


.testimonials-left::before,
.testimonials-left::after {
height: 40px;
}
    .testimonials-split {
        flex-direction: column;
        gap: 40px;
    }

    .testimonials-left {
        width: 100%;
        position: relative;
        top: 0;
        text-align: center;
    }

    .testimonials-left h2 {
        font-size: clamp(3rem, 12vw, 6rem);
        line-height: 1;
    }

    .testimonials-right {
        width: 100%;
        height: 60vh; 
        overflow-y: auto; 
        display: grid;
        justify-content: center;
        padding-right: 10px;
    }

    .testimonials-right::-webkit-scrollbar {
        width: 6px;
    }

    .testimonials-right::-webkit-scrollbar-thumb {
        background: #e73c45;
        border-radius: 10px;
    }

    .testimonials-right .testimonials-grid {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 25px;
    }

    .testimonial-card {
        max-width: 100%;
    }
}

@media (max-width: 600px) {

    .testimonials-left::before,
.testimonials-left::after {
height: 20px;
}
    .testimonials-left h2 {
        font-size: clamp(2.5rem, 14vw, 4rem);
    }

    .testimonial-card {
        flex-direction: column;
        min-height: auto;
    }

    .card-image-bg {
        position: relative;
        width: 100%;
        height: 200px;
        mask-image: none;
        -webkit-mask-image: none;
    }

    .card-content {
        width: 100%;
        padding: 25px;
        background: #111;
    }

    .testimonial-text {
        font-size: 14px;
    }

    .testimonials-right {
        height: 50vh; 
        overflow-y: auto;
    }

    .testimonials-right::-webkit-scrollbar {
        width: 6px;
    }

    .testimonials-right::-webkit-scrollbar-thumb {
        background: #e73c45;
        border-radius: 10px;
    }
}

.pricing-section{
    width: 100%;
    padding: 160px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #080808;
    position: relative;
    overflow: hidden;
}

.pricing-section::before{
    content: "PRICING";
    position: absolute;
    top: 200px;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: clamp(60px, 18vw, 200px);
    font-weight: 900;
    font-family: 'qurova';
    color: #ffffff10;
    letter-spacing: clamp(5px, 2vw, 20px);
    white-space: nowrap;
    pointer-events: none;
    z-index: 0;
    mask-image: linear-gradient(
        to bottom,
        transparent,
        black 30%,
        black 100%,
        transparent
    );
}

.pricing-section > *{
    position: relative;
    z-index: 2;
    
}
.section-header-title{
    text-align: center;
    margin-bottom: 100px;
    z-index: 3;
}

.section-header-title h2{
    font-size: clamp(1.8rem, 2vw ,2.5rem);
    color: #fff;
    margin-bottom: 20px;
    font-weight: 700;
    font-family: 'satoshi';
}

.section-header-title p{
    font-size: clamp(1.3rem, 2vw ,2rem);
    color: #a0a0a0;
    max-width: 600px;
    margin: 0 auto;
    font-size: 1rem;
    line-height: 1.6;
width: 90%;
    font-family: 'ubuntu';

}

.pricing-grid{
    width: 90%;
    max-width: 1200px;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 40px;
    perspective: 1400px;
    
}


.pricing-card{
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all .4s cubic-bezier(.4,0,.2,1);
    border: 1px solid rgba(255,255,255,0.08);
        transform-style: preserve-3d;
    transition: transform .6s cubic-bezier(.4,0,.2,1),
                box-shadow .4s ease,
                border .4s ease;
}


.pricing-card:hover{
    border-color: rgba(231,60,69,0.6);

    z-index: 5;
}

.card-top{
    padding: 45px 40px;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.card-top h3{
    font-family: 'satoshi';
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 15px;
}

.price{
    font-size: 2.8rem;
    font-weight: 800;
    color: #fff;
    font-family: 'musticapro';
}

.price span{
    font-size: 1rem;
    color: #a0a0a0;
    font-family: 'satoshi';

}


.card-divider{
    height: 1px;
    width: 100%;
    background: linear-gradient(
        to right,
        transparent,
        rgba(231,60,69,0.6),
        transparent
    );
    box-shadow: 0 0 15px rgba(231,60,69,0.4);
}


.card-bottom{
    padding: 45px 40px;
    background: #0f0f0f;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
}

.features{
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.features li{
    color: #cfcfcf;
    font-size: 0.95rem;
    font-family: 'satoshi';
    position: relative;
    padding-left: 20px;
}

.features li::before{
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background: #e73c45;
    border-radius: 50%;
    box-shadow: 0 0 8px #e73c45;
}


.pricing-btn{
    display: inline-block;
    text-align: center;
    padding: 16px;
    border-radius: 15px;
    background: #e73c45;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    transition: all .3s ease;
    font-family: 'satoshi';
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.pricing-btn::before{
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 0%;
    height: 100%;
    background: radial-gradient(circle at right, rgba(255,255,255,0.4), transparent 40%);
    transition: width .2s ease;
    z-index: -1;
}

.pricing-btn:hover::before{
    width: 150%;
}

.pricing-card:has(.pricing-btn:hover){
    transform: translateY(-5px);
}


.popular-badge{
    position: absolute;
    top: 20px;
    right: 25px;
    background: #e73c45;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    box-shadow: 0 0 20px rgba(231,60,69,0.5);
    z-index: 3;
    font-family: 'satoshi';
}


@media(max-width:1000px){
    .pricing-grid{
        grid-template-columns:1fr;
    }
}

@media(max-width:425px){
.features-section::before{
    display: none;
}

.floating-stats-section::before{
display: none;
}
.pricing-section::before{
display: none;
}
.faq-bg-text{
display: none;
}
.tippage-wrapper{
display: none;
}
.testimonials-section::before{
display: none;
}
.landingpage {
    position: sticky;
    top: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    height: 200vh;   
}
}

