*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{

background:var(--bg);

color:#fff;

font-family:'Inter',sans-serif;

overflow-x:hidden;

}

.container{

width:min(1320px,92%);

margin:auto;

}

.header{

position:fixed;

left:0;

top:0;

width:100%;

z-index:999;

padding:20px 0;

transition:.4s;

background:rgba(9,9,11,.55);

backdrop-filter:blur(16px);

border-bottom:1px solid rgba(255,255,255,.05);

}

.header.scrolled{

padding:16px 0;

background:#0B0B12;

}

.header .container{

display:flex;

align-items:center;

justify-content:space-between;

}

.logo img{

height:60px;

}

nav ul{

display:flex;

gap:42px;

list-style:none;

}

nav a{

text-decoration:none;

color:#fff;

font-size:15px;

font-weight:500;

position:relative;

transition:.3s;

}

nav a::after{

content:"";

position:absolute;

left:0;

bottom:-8px;

width:0;

height:2px;

background:linear-gradient(90deg,#FF5F6D,#FF8A3D);

transition:.35s;

}

nav a:hover{

color:#FF8A3D;

}

nav a:hover::after{

width:100%;

}
.btn-primary{

display:inline-flex;

align-items:center;

gap:12px;

padding:16px 28px;

border-radius:14px;

text-decoration:none;

font-weight:700;

color:#fff;

background:linear-gradient(
90deg,
#FF5F6D,
#FF7A59,
#FF8A3D
);

transition:.35s;

box-shadow:

0 12px 35px rgba(255,95,109,.30);

}

.btn-primary:hover{

transform:translateY(-5px);

box-shadow:

0 20px 45px rgba(255,95,109,.45);

}
.hero{
padding:170px 0 40px;
position:relative;
overflow:hidden;
background:

radial-gradient(circle at top right,#331425 0%,transparent 28%),

radial-gradient(circle at left,#291b33 0%,transparent 35%),

#09090B;

}

.hero-wrapper{

display:grid;

grid-template-columns:1fr 1fr;

align-items:center;

gap:80px;

}

.hero-content{

z-index:10;

}

.hero-badge{

display:inline-block;

padding:12px 20px;

border-radius:40px;

background:rgba(255,95,109,.12);

border:1px solid rgba(255,95,109,.25);

color:#FFD166;

font-size:14px;

margin-bottom:28px;

}

.hero h1{

font-family:'Space Grotesk',sans-serif;

font-size:65px;

font-weight:700;

line-height:1;

margin-bottom:28px;

}

.gradient-text{

background:linear-gradient(
90deg,
#FF5F6D,
#FF7A59,
#FF9F43,
#FFD166
);

background-size:300%;

-webkit-background-clip:text;

-webkit-text-fill-color:transparent;

animation:gradientMove 8s linear infinite;

}

.hero p{

font-size:19px;

line-height:34px;

color:#BDBDD3;

max-width:620px;

margin-bottom:40px;

}

.hero-buttons{

display:flex;

gap:20px;

margin-bottom:60px;

}
.btn-outline{

padding:16px 30px;

border:1px solid rgba(255,255,255,.15);

border-radius:14px;

color:#fff;

text-decoration:none;

transition:.35s;

}

.btn-outline:hover{

background:#fff;

color:#000;

}
.hero-clients{

display:flex;

gap:70px;

}

.hero-clients strong{

display:block;

font-size:34px;

margin-bottom:8px;

color:#fff;

}

.hero-clients div{

color:#BDBDD3;

}
.hero-image{

position:relative;

height:650px;

}

.laptop{

width:100%;

animation:floatLaptop 5s ease-in-out infinite;

filter:drop-shadow(0 40px 80px rgba(255,95,109,.30));

}
.tech{

position:absolute;

width:70px;

padding:16px;

background:#14141F;

border-radius:20px;

border:1px solid rgba(255,255,255,.08);

box-shadow:0 25px 60px rgba(0,0,0,.35);

animation:floating 5s ease-in-out infinite;

}

.laravel{

top:20px;

left:120px;

}

.wordpress{

top:60px;

right:40px;

}

.php{

top:220px;

left:0;

}

.vue{

top:180px;

right:0;

}

.mysql{

bottom:140px;

right:20px;

}

.docker{

bottom:40px;

left:80px;

}

.api{

bottom:180px;

left:240px;

}

.whatsapp{

top:350px;

left:60px;

}
@keyframes floating{

0%,100%{

transform:translateY(0);

}

50%{

transform:translateY(-18px);

}

}

@keyframes floatLaptop{

0%,100%{

transform:translateY(0);

}

50%{

transform:translateY(-15px);

}

}

@keyframes gradientMove{

0%{

background-position:0%;

}

100%{

background-position:300%;

}

}
.cursor-glow{

position:fixed;

width:500px;

height:500px;

background:radial-gradient(circle,
rgba(255,95,109,.12),
transparent 70%);

pointer-events:none;

border-radius:50%;

transform:translate(-50%,-50%);

z-index:9;

}
.trusted-section{

padding:80px 0 70px;

position:relative;

}

.section-heading{

max-width:820px;

margin:auto;

text-align:center;

margin-bottom:60px;

}



.section-heading h2{

font-size:48px;

font-family:'Space Grotesk',sans-serif;

margin-bottom:20px;

}

.section-heading p{

color:#BDBDD3;

line-height:32px;

font-size:18px;

}

.client-logos{

display:grid;

grid-template-columns:repeat(5,1fr);

gap:30px;

margin-top:60px;

}

.client-item{

height:90px;

display:flex;

justify-content:center;

align-items:center;

background:#14141F;

border:1px solid rgba(255,255,255,.08);

border-radius:18px;

transition:.35s;

}

.client-item:hover{

transform:translateY(-8px);

border-color:#FF5F6D;

box-shadow:0 20px 50px rgba(255,95,109,.20);

}

.client-item img{

max-width:120px;

opacity:.8;

transition:.3s;

}

.client-item:hover img{

opacity:1;

}
.stats-section{

padding:80px 0 120px;

}

.stats-grid{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:30px;

}

.stat-card{

background:#14141F;

padding:45px;

border-radius:24px;

text-align:center;

border:1px solid rgba(255,255,255,.06);

transition:.35s;

}

.stat-card:hover{

transform:translateY(-10px);

box-shadow:0 25px 60px rgba(255,95,109,.20);

border-color:#FF5F6D;

}

.stat-card h2{

font-size:58px;

margin-bottom:15px;

font-family:'Space Grotesk',sans-serif;

background:linear-gradient(90deg,#FF5F6D,#FF9F43,#FFD166);

-webkit-background-clip:text;

-webkit-text-fill-color:transparent;

}

.stat-card span{

font-size:18px;

color:#BDBDD3;

}
.about-section{

padding:80px 0;

background:#0D0D14;

position:relative;

overflow:hidden;

}

.about-wrapper{

display:grid;

grid-template-columns:1fr 1fr;

gap:90px;

align-items:center;

}

.about-images{

position:relative;

}

.image-main{

border-radius:30px;

overflow:hidden;

}

.image-main img{

width:100%;

display:block;

}

.experience-card{

position:absolute;

left:-25px;

bottom:40px;

background:linear-gradient(135deg,#FF5F6D,#FF9F43);

padding:25px 35px;

border-radius:20px;

color:#fff;

box-shadow:0 25px 60px rgba(255,95,109,.35);

}

.experience-card h2{

font-size:52px;

margin-bottom:5px;

}

.floating-card{

position:absolute;

right:-20px;

top:50px;

background:#14141F;

padding:18px 25px;

border-radius:18px;

display:flex;

gap:18px;

align-items:center;

border:1px solid rgba(255,255,255,.08);

box-shadow:0 20px 40px rgba(0,0,0,.3);

}

.floating-card i{

font-size:32px;

color:#FF8A3D;

}

.section-tag{

display:inline-block;

padding:10px 20px;

background:rgba(255,95,109,.10);

color:#FF8A3D;

border-radius:40px;

margin-bottom:25px;

font-size:14px;

letter-spacing:1px;

}

.about-content h2{

font-size:52px;

line-height:1.2;

font-family:'Space Grotesk',sans-serif;

margin-bottom:25px;

}

.about-content h2 span{

background:linear-gradient(90deg,#FF5F6D,#FF9F43,#FFD166);

-webkit-background-clip:text;

-webkit-text-fill-color:transparent;

}

.about-content p{

font-size:18px;

line-height:34px;

color:#BDBDD3;

margin-bottom:40px;

}

.about-features{

display:grid;

grid-template-columns:1fr 1fr;

gap:25px;

margin-bottom:45px;

}

.feature-box{

display:flex;

gap:18px;

padding:25px;

background:#14141F;

border-radius:18px;

border:1px solid rgba(255,255,255,.06);

transition:.35s;

}

.feature-box:hover{

transform:translateY(-8px);

border-color:#FF5F6D;

box-shadow:0 20px 40px rgba(255,95,109,.20);

}

.feature-box i{

font-size:30px;

color:#FF8A3D;

margin-top:4px;

}

.feature-box h4{

margin-bottom:8px;

font-size:20px;

}

.feature-box p{

margin:0;

font-size:15px;

line-height:26px;

}
.services-section{

padding:70px 0;

background:#09090B;

position:relative;

}

.services-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:35px;

margin-top:30px;

}

.service-card{

background:#14141F;

padding:40px;

border-radius:28px;

border:1px solid rgba(255,255,255,.06);

transition:.4s;

position:relative;

overflow:hidden;

}

.service-card::before{

content:"";

position:absolute;

left:-100%;

top:0;

width:100%;

height:100%;

background:linear-gradient(

90deg,

transparent,

rgba(255,255,255,.05),

transparent

);

transition:.8s;

}

.service-card:hover::before{

left:100%;

}

.service-card:hover{

transform:translateY(-15px);

border-color:#FF5F6D;

box-shadow:0 30px 80px rgba(255,95,109,.18);

}

.service-icon{

width:80px;

height:80px;

border-radius:22px;

display:flex;

justify-content:center;

align-items:center;

background:linear-gradient(135deg,#FF5F6D,#FF9F43);

font-size:34px;

color:#fff;

margin-bottom:30px;

}

.service-card h3{

font-size:24px;

margin-bottom:18px;

font-family:'Space Grotesk',sans-serif;

}

.service-card p{

color:#BDBDD3;

line-height:30px;

margin-bottom:25px;

}

.service-card ul{

list-style:none;

padding:0;

margin-bottom:30px;

}

.service-card li{

padding:10px 0;

color:#E5E5E5;

border-bottom:1px solid rgba(255,255,255,.05);

}

.service-card li::before{

content:"✓";

color:#FF8A3D;

margin-right:10px;

}

.service-card a{

display:inline-flex;

align-items:center;

gap:10px;

color:#FFD166;

font-weight:600;

text-decoration:none;

transition:.3s;

}

.service-card a:hover{

gap:16px;

}
@media(max-width:991px){

.services-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.services-grid{

grid-template-columns:1fr;

}

}
.projects-section{

padding:120px 0;

background:#0D0D14;

}

.project-filter{

display:flex;

justify-content:center;

gap:15px;

margin:60px 0;

flex-wrap:wrap;

}

.project-filter button{

padding:14px 28px;

background:#14141F;

border:1px solid rgba(255,255,255,.08);

border-radius:40px;

color:#fff;

cursor:pointer;

transition:.3s;

}

.project-filter button:hover,

.project-filter .active{

background:linear-gradient(90deg,#FF5F6D,#FF8A3D);

}

.project-grid{

display:grid;

grid-template-columns:repeat(2,1fr);

gap:35px;

}

.project-card{

position:relative;

overflow:hidden;

border-radius:28px;

cursor:pointer;

}

.project-card.large{

grid-row:span 2;

}

.project-card img{

width:100%;

height:100%;

display:block;

object-fit:cover;

transition:.6s;

}

.project-card:hover img{

transform:scale(1.08);

}

.overlay{

position:absolute;

left:0;

bottom:0;

width:100%;

padding:35px;

background:linear-gradient(

transparent,

rgba(0,0,0,.92)

);

transform:translateY(50px);

opacity:0;

transition:.4s;

}

.project-card:hover .overlay{

transform:translateY(0);

opacity:1;

}

.overlay span{

display:inline-block;

padding:8px 16px;

background:#FF8A3D;

border-radius:30px;

margin-bottom:18px;

font-size:14px;

}

.overlay h3{

font-size:32px;

margin-bottom:15px;

}

.overlay p{

line-height:30px;

margin-bottom:20px;

color:#ddd;

}

.tech{

display:flex;

gap:12px;

flex-wrap:wrap;

margin-bottom:20px;

}

.tech span{

padding:8px 15px;

background:rgba(255,255,255,.08);

border-radius:25px;

font-size:14px;

}

.buttons{

display:flex;

gap:15px;

}

.buttons a{

padding:12px 22px;

background:#fff;

color:#000;

border-radius:12px;

text-decoration:none;

font-weight:600;

transition:.3s;

}

.buttons a:hover{

background:#FF8A3D;

color:#fff;

}
@media(max-width:991px){

.project-grid{

grid-template-columns:1fr;

}

.project-card.large{

grid-row:auto;

}

}
.why-us{

padding:0px 0 70px 0px;

background:#09090B;

position:relative;

overflow:hidden;

}

.why-wrapper{

display:grid;

grid-template-columns:1fr 450px 1fr;

gap:60px;

align-items:center;

margin-top:45px;

}

.why-column{

display:flex;

flex-direction:column;

gap:30px;

}

.why-card{

background:#14141F;

padding:35px;

border-radius:24px;

border:1px solid rgba(255,255,255,.05);

transition:.35s;

}

.why-card:hover{

transform:translateY(-12px);

border-color:#FF5F6D;

box-shadow:0 25px 60px rgba(255,95,109,.18);

}

.icon{

width:70px;

height:70px;

border-radius:20px;

display:flex;

justify-content:center;

align-items:center;

background:linear-gradient(135deg,#FF5F6D,#FF9F43);

font-size:28px;

color:#fff;

margin-bottom:20px;

}

.why-card h4{

font-size:24px;

margin-bottom:15px;

font-family:'Space Grotesk';

}

.why-card p{

color:#BDBDD3;

line-height:30px;

}

.why-center{

display:flex;

justify-content:center;

align-items:center;

}

.circle{

width:360px;

height:360px;

border-radius:50%;

background:

radial-gradient(circle,#FF5F6D,#FF8A3D,#09090B);

display:flex;

justify-content:center;

align-items:center;

box-shadow:

0 0 80px rgba(255,95,109,.35);

animation:rotateGlow 12s linear infinite;

}

.circle img{

width:180px;

}
@keyframes rotateGlow{

0%{

transform:rotate(0deg);

}

100%{

transform:rotate(360deg);

}

}
@media(max-width:991px){

.why-wrapper{

grid-template-columns:1fr;

}

.why-center{

order:-1;

margin-bottom:50px;

}

.circle{

width:280px;

height:280px;

}

}
.process-section{

padding:80px 0;

background:#0D0D14;

position:relative;

overflow:hidden;

}

.timeline{

margin-top:90px;

display:grid;

grid-template-columns:repeat(6,1fr);

gap:30px;

position:relative;

}

.timeline-line{

position:absolute;

left:8%;

right:8%;

top:42px;

height:3px;

background:linear-gradient(
90deg,
#FF5F6D,
#FF8A3D,
#FFD166
);

z-index:0;

}

.timeline-item{

position:relative;

z-index:2;

text-align:center;

}

.step-number{

width:85px;

height:85px;

margin:auto;

border-radius:50%;

display:flex;

justify-content:center;

align-items:center;

background:linear-gradient(
135deg,
#FF5F6D,
#FF9F43
);

font-size:28px;

font-weight:700;

color:#fff;

margin-bottom:35px;

box-shadow:0 20px 45px rgba(255,95,109,.35);

}

.step-card{

background:#14141F;

padding:35px 25px;

border-radius:22px;

border:1px solid rgba(255,255,255,.06);

transition:.35s;

height:auto;

}

.step-card:hover{

transform:translateY(-12px);

border-color:#FF5F6D;

box-shadow:0 25px 60px rgba(255,95,109,.18);

}

.step-card i{

font-size:40px;

margin-bottom:20px;

color:#FF8A3D;

}

.step-card h3{

font-size:20px;

margin-bottom:15px;

font-family:'Space Grotesk';

}

.step-card p{

color:#BDBDD3;

line-height:28px;

font-size:15px;

}
@media(max-width:991px){

.timeline{

grid-template-columns:1fr;

}

.timeline-line{

display:none;

}

.timeline-item{

text-align:left;

display:flex;

gap:30px;

align-items:flex-start;

}

.step-number{

margin:0;

flex-shrink:0;

}

}

.tech-stack{

padding:70px 0;

background:#09090B;

position:relative;

overflow:hidden;

}

.tech-grid{

display:grid;

grid-template-columns:repeat(5,minmax(0,1fr));

gap:24px;

margin-top:70px;

}

.tech-card{

background:#14141F;

padding:35px;

border-radius:24px;

text-align:center;

border:1px solid rgba(255,255,255,.05);

transition:.4s;

position:relative;

overflow:hidden;

}

.tech-card::before{

content:"";

position:absolute;

left:-100%;

top:0;

width:100%;

height:100%;

background:linear-gradient(

90deg,

transparent,

rgba(255,255,255,.05),

transparent

);

transition:.8s;

}

.tech-card:hover::before{

left:100%;

}

.tech-card:hover{

transform:translateY(-15px);

border-color:#FF5F6D;

box-shadow:0 25px 70px rgba(255,95,109,.20);

}

.tech-card img{

width:70px;

height:70px;

margin-bottom:25px;

transition:.4s;

}

.tech-card:hover img{

transform:rotate(10deg) scale(1.1);

}

.tech-card h4{

font-size:24px;

margin-bottom:10px;

font-family:'Space Grotesk';

}

.tech-card span{

color:#BDBDD3;

font-size:15px;

}


.tech-grid{

display:grid;

grid-template-columns:repeat(5,minmax(0,1fr));

gap:24px;

margin-top:70px;

}

.tech-card{

background:#14141F;

padding:35px;

border-radius:24px;

text-align:center;

border:1px solid rgba(255,255,255,.05);

transition:.4s;

position:relative;

overflow:hidden;

}

.tech-card::before{

content:"";

position:absolute;

left:-100%;

top:0;

width:100%;

height:100%;

background:linear-gradient(

90deg,

transparent,

rgba(255,255,255,.05),

transparent

);

transition:.8s;

}

.tech-card:hover::before{

left:100%;

}

.tech-card:hover{

transform:translateY(-15px);

border-color:#FF5F6D;

box-shadow:0 25px 70px rgba(255,95,109,.20);

}

.tech-card img{

width:70px;

height:70px;

margin-bottom:25px;

transition:.4s;

}

.tech-card:hover img{

transform:rotate(10deg) scale(1.1);

}

.tech-card h4{

font-size:24px;

margin-bottom:10px;

font-family:'Space Grotesk';

}

.tech-card span{

color:#BDBDD3;

font-size:15px;

}
@media(max-width:991px){

.tech-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.tech-grid{

grid-template-columns:1fr;

}

}
.testimonials-section{

padding:140px 0;

background:#0D0D14;

position:relative;

}

.testimonial-slider{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:35px;

margin-top:70px;

}

.testimonial-card{

background:#14141F;

padding:40px;

border-radius:28px;

border:1px solid rgba(255,255,255,.06);

transition:.35s;

position:relative;

overflow:hidden;

}

.testimonial-card:hover{

transform:translateY(-12px);

border-color:#FF5F6D;

box-shadow:0 25px 70px rgba(255,95,109,.20);

}

.quote-icon{

width:65px;

height:65px;

border-radius:18px;

display:flex;

justify-content:center;

align-items:center;

background:linear-gradient(
135deg,
#FF5F6D,
#FF9F43
);

color:#fff;

font-size:26px;

margin-bottom:25px;

}

.testimonial-card p{

color:#D3D3DB;

line-height:32px;

margin-bottom:30px;

}

.rating{

font-size:22px;

color:#FFD166;

margin-bottom:25px;

letter-spacing:2px;

}

.client{

display:flex;

align-items:center;

gap:15px;

margin-bottom:25px;

}

.client img{

width:65px;

height:65px;

border-radius:50%;

object-fit:cover;

}

.client h4{

font-size:20px;

margin-bottom:4px;

}

.client span{

color:#BDBDD3;

}

.project-tag{

display:inline-block;

padding:10px 18px;

border-radius:40px;

background:rgba(255,95,109,.12);

color:#FF8A3D;

font-size:14px;

}

.success-metrics{

padding:80px 0;

background:#09090B;

}

.metrics-grid{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:30px;

}

.metric{

background:#14141F;

padding:45px;

border-radius:24px;

text-align:center;

}

.metric h2{

font-size:60px;

font-family:'Space Grotesk';

background:linear-gradient(
90deg,
#FF5F6D,
#FF8A3D,
#FFD166
);

-webkit-background-clip:text;

-webkit-text-fill-color:transparent;

margin-bottom:12px;

}

.metric span{

color:#BDBDD3;

}
.footer-cta{

padding-top:20px;

background:#09090B;

}

.cta-box{

padding:70px;

border-radius:35px;

display:flex;

justify-content:space-between;

align-items:center;

gap:60px;

background:linear-gradient(
135deg,
#FF5F6D,
#FF8A3D
);

color:#fff;

box-shadow:0 40px 80px rgba(255,95,109,.25);

}



.cta-content span{

font-size:15px;

letter-spacing:2px;

display:block;

}

.cta-content h2{

font-size:54px;

font-family:'Space Grotesk';

margin-bottom:20px;

}

.cta-content p{

font-size:18px;

line-height:34px;

}

.cta-buttons{

display:flex;

gap:20px;

}

.cta-buttons .btn-outline{

border-color:#fff;

color:#fff;

}

.cta-buttons .btn-outline:hover{

background:#fff;

color:#111;

}
.footer{

background:#1f1f2a;

padding:120px 0 30px;

margin-top:-70px;

}

.footer-grid{

display:grid;

grid-template-columns:2fr 1fr 1fr 1.2fr;

gap:60px;

}

.footer-logo{

height:55px;

margin-bottom:25px;

}
.footer-bottom p {
  margin-bottom: 0;
}

.footer-about p{

line-height:32px;

color:#BDBDD3;

margin-bottom:30px;

}

.footer h4{

font-size:22px;

margin-bottom:25px;

font-family:'Space Grotesk';

}

.footer ul{

list-style:none;

padding:0;

}

.footer li{

margin-bottom:18px;

}

.footer a{

color:#BDBDD3;

text-decoration:none;

transition:.3s;

}

.footer a:hover{

color:#FF8A3D;

padding-left:8px;

}

.contact-info i{

color:#FF8A3D;

width:24px;

}

.social-links{

display:flex;

gap:15px;

}

.social-links a{

width:48px;

height:48px;

display:flex;

justify-content:center;

align-items:center;

border-radius:50%;

background:#14141F;

transition:.3s;

}

.social-links a:hover{

background:linear-gradient(
135deg,
#FF5F6D,
#FF8A3D
);

color:#fff;

transform:translateY(-6px);

}

.footer hr{

margin:60px 0 30px;

border:none;

border-top:1px solid rgba(255,255,255,.08);

}

.footer-bottom{

display:flex;

justify-content:space-between;

align-items:center;

}

.footer-bottom div{

display:flex;

gap:30px;

}
@media(max-width:991px){

.cta-box{

flex-direction:column;

text-align:center;

padding:50px 30px;

}

.footer-grid{

grid-template-columns:1fr 1fr;

}

.footer-bottom{

flex-direction:column;

gap:20px;

text-align:center;

}

}

@media(max-width:768px){

.footer-grid{

grid-template-columns:1fr;

}

}

/* =========================================
   FusionPixelHub - Stats Section
   Prefix: fph-stats-
========================================= */

.fph-stats-section {
    width: 100%;
    padding: 0px;
    box-sizing: border-box;
    background: transparent;
}

.fph-stats-container {
    width: 100%;
    min-height: 86px;
    margin: 0 auto;
	padding: 20px !important;
    display: flex;
    align-items: center;

    padding: 12px 28px;
    box-sizing: border-box;

    background: rgba(20, 16, 36, 0.88);

    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;

    box-shadow:
        0 15px 50px rgba(0, 0, 0, 0.30),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);

    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}


/* =========================================
   Individual Stat
========================================= */

.fph-stat-item {
    flex: 1;

    display: flex;
    align-items: center;

    gap: 16px;
    min-width: 0;
}


/* =========================================
   Icon
========================================= */

.fph-stat-icon {
    width: 54px;
    height: 54px;

    flex: 0 0 54px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(255, 76, 180, 0.13),
            rgba(255, 76, 180, 0.02) 65%,
            transparent 70%
        );

    border: 1px solid rgba(255, 76, 180, 0.10);

    color: #ff4db8;

    font-size: 22px;

    box-shadow:
        0 0 25px rgba(255, 76, 180, 0.08);

    transition: all 0.3s ease;
}


.fph-stat-item:hover .fph-stat-icon {
    transform: translateY(-3px) scale(1.05);

    color: #ff6dca;

    border-color: rgba(255, 76, 180, 0.25);

    box-shadow:
        0 0 30px rgba(255, 76, 180, 0.18);
}


/* =========================================
   Content
========================================= */

.fph-stat-content {
    min-width: 0;
}


.fph-stat-number {
    margin: 0;

    color: #ffffff;

    font-family: 'Space Grotesk', sans-serif;

    font-size: 33px;
    font-weight: 700;

    line-height: 1.1;

    letter-spacing: -0.5px;
}


.fph-stat-label {
    margin-top: 6px;

    color: rgba(255, 255, 255, 0.72);

    font-family: 'Inter', sans-serif;

    font-size: 15px;
    font-weight: 400;

    line-height: 1.2;

    white-space: nowrap;
}


/* =========================================
   Divider
========================================= */

.fph-stat-divider {
    width: 1px;
    height: 45px;

    flex: 0 0 1px;

    margin: 0 28px;

    background: rgba(255, 255, 255, 0.10);
}


/* =========================================
   Tablet
========================================= */

@media (max-width: 900px) {

    .fph-stats-container {
        padding: 15px 20px;
    }

    .fph-stat-divider {
        margin: 0 15px;
    }

    .fph-stat-item {
        gap: 10px;
    }

    .fph-stat-icon {
        width: 46px;
        height: 46px;
        flex-basis: 46px;
        font-size: 18px;
    }

    .fph-stat-number {
        font-size: 23px;
    }

    .fph-stat-label {
        font-size: 11px;
    }
}


/* =========================================
   Mobile
========================================= */

@media (max-width: 650px) {

    .fph-stats-section {
        padding: 20px 15px;
    }

    .fph-stats-container {
        display: grid;

        grid-template-columns: 1fr 1fr;

        gap: 20px;

        padding: 22px;
    }

    .fph-stat-divider {
        display: none;
    }

    .fph-stat-item {
        gap: 12px;
    }

    .fph-stat-icon {
        width: 44px;
        height: 44px;
        flex-basis: 44px;
        font-size: 17px;
    }

    .fph-stat-number {
        font-size: 22px;
    }

    .fph-stat-label {
        font-size: 10px;
    }
}


/* =========================================
   Small Mobile
========================================= */

@media (max-width: 400px) {

    .fph-stats-container {
        grid-template-columns: 1fr;
    }

    .fph-stat-item {
        justify-content: flex-start;
    }

}
/* =========================================
   FusionPixelHub Feature List
   Prefix: fph-feature-
========================================= */

.fph-feature-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 25px 0;
}

.fph-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.5;
    color: #BDBDD3;
}

.fph-feature-check {
    width: 18px;
    height: 18px;

    flex: 0 0 18px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: linear-gradient(
        135deg,
        #ff3f7f,
        #ff7a3d
    );

    color: #ffffff;

    font-size: 9px;

    box-shadow: 0 3px 10px rgba(255, 63, 127, 0.20);
}

.fph-feature-check i {
    line-height: 1;
}

.fph-feature-text {
    display: block;
}


/* Hover */

.fph-feature-item {
    transition: transform 0.25s ease;
}

.fph-feature-item:hover {
    transform: translateX(4px);
}

.fph-feature-item:hover .fph-feature-check {
    box-shadow: 0 4px 14px rgba(255, 63, 127, 0.35);
}

.cta-banner {
    width: 100%;
    padding: 8px;
    box-sizing: border-box;
    position: relative;
    z-index: 1;
}

.cta-banner .cta-content {
    width: 100%;
    min-height: 110px;
    padding: 14px 28px;
    box-sizing: border-box;

    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;

    gap: 30px;

    border-radius: 9px;

    background: linear-gradient(
        100deg,
        #d8273e 0%,
        #ef3028 40%,
        #ff8317 100%
    );

    border: 1px solid rgba(255, 255, 255, 0.65);

    box-shadow:
        0 3px 8px rgba(0, 0, 0, 0.20),
        inset 0 1px 1px rgba(255, 255, 255, 0.25);

    position: relative;
    overflow: hidden;
}


/* =========================
   ICON
========================= */

.cta-banner .cta-icon {
    width: 78px !important;
    height: 78px !important;
    min-width: 78px !important;
    flex: 0 0 78px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    margin: 0 !important;
    padding: 0 !important;

    border-radius: 50%;

    background: radial-gradient(
        circle,
        rgba(255, 120, 60, 0.45),
        rgba(120, 0, 20, 0.35)
    );

    border: 1px solid rgba(255, 180, 150, 0.25);

    box-shadow:
        inset 0 0 18px rgba(255, 100, 70, 0.25),
        0 4px 15px rgba(80, 0, 0, 0.25);

    position: relative;
    z-index: 2;
}

.cta-banner .cta-icon span {
    font-size: 42px !important;
    line-height: 1 !important;
}


/* =========================
   TEXT
========================= */

.cta-banner .cta-text {
    flex: 1 1 auto !important;
    min-width: 0;
    margin: 0 !important;
    padding: 0 !important;

    color: #fff;
    text-align: left;

    position: relative;
    z-index: 2;
}

.cta-banner .cta-small-title {
    margin: 0 0 3px !important;

    font-size: 12px !important;
    line-height: 1.2 !important;
    font-weight: 700 !important;
    letter-spacing: 1px;

    color: rgba(255, 255, 255, 0.9);
}

.cta-banner .cta-text h2 {
    margin: 0 0 4px !important;
    padding: 0 !important;

    font-size: 27px !important;
    line-height: 1.15 !important;

    font-weight: 700 !important;

    color: #fff !important;
}

.cta-banner .cta-text p {
    margin: 0 !important;
    padding: 0 !important;

    font-size: 13px !important;
    line-height: 1.35 !important;

    color: rgba(255, 255, 255, 0.82);
}


/* =========================
   BUTTONS
========================= */

.cta-banner .cta-buttons {
    width: 292px !important;
    min-width: 292px !important;
    flex: 0 0 292px !important;

    display: flex !important;
    flex-direction: column !important;

    align-items: stretch !important;
    justify-content: center !important;

    gap: 7px;

    margin: 0 !important;
    padding: 0 !important;

    position: relative;
    z-index: 2;
}

.cta-banner .cta-btn {
    width: 100% !important;
    height: 38px !important;

    box-sizing: border-box;

    margin: 0 !important;
    padding: 0 18px !important;

    display: flex !important;
    flex-direction: row !important;

    align-items: center !important;
    justify-content: center !important;

    gap: 15px;

    border-radius: 8px;

    text-decoration: none !important;

    font-size: 13px !important;
    line-height: 1 !important;
    font-weight: 600 !important;

    transition: all 0.2s ease;
}


/* Primary */

.cta-banner .cta-primary {
    color: #a63a1d !important;

    background: #fff !important;

    border: 1px solid rgba(255, 255, 255, 0.9);

    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
}

.cta-banner .cta-primary:hover {
    background: #fff8f5 !important;
}


/* Secondary */

.cta-banner .cta-secondary {
    color: #fff !important;

    background: rgba(255, 255, 255, 0.04) !important;

    border: 1px solid rgba(255, 255, 255, 0.45);
}

.cta-banner .cta-secondary:hover {
    background: rgba(255, 255, 255, 0.12) !important;
}


/* Icons */

.cta-banner .btn-icon {
    line-height: 1 !important;
}


/* =========================
   MOBILE
========================= */

@media (max-width: 700px) {

    .cta-banner .cta-content {
        flex-direction: column !important;
        min-height: auto;

        padding: 25px 20px;
        text-align: center;
    }

    .cta-banner .cta-text {
        width: 100%;
        text-align: center;
    }

    .cta-banner .cta-buttons {
        width: 100% !important;
        min-width: 0 !important;
        flex: none !important;
    }
}


/* Mobile */

@media (max-width: 576px) {

    .fph-feature-list {
        gap: 9px;
    }

    .fph-feature-item {
        font-size: 14px;
    }

}