
:root{
--primary:#EB1C24;
--bg:#050505;
--card:#0d0d0d;
--card2:#111;
--border:rgba(255,255,255,.08);
--text:#fff;
--muted:#9f9f9f;
}

*{
margin:0;
padding:0;
box-sizing:border-box;
}

html{
scroll-behavior:smooth;
}

body{
font-family:Inter,sans-serif;
background:var(--bg);
color:white;
overflow-x:hidden;
}

/* Animated Background */

body:before{
content:"";
position:fixed;
width:900px;
height:900px;
background:radial-gradient(circle,
rgba(235,28,36,.28),
transparent 70%);
top:-200px;
left:-200px;
filter:blur(120px);
animation:move1 10s infinite alternate;
z-index:-3;
}

body:after{
content:"";
position:fixed;
width:800px;
height:800px;
background:radial-gradient(circle,
rgba(235,28,36,.18),
transparent 70%);
bottom:-200px;
right:-200px;
filter:blur(120px);
animation:move2 12s infinite alternate;
z-index:-3;
}

@keyframes move1{
to{
transform:translate(300px,150px)
}
}

@keyframes move2{
to{
transform:translate(-250px,-150px)
}
}

/* Particles */

canvas{
position:fixed;
z-index:-2;
top:0;
left:0;
}

.container{
width:90%;
max-width:1300px;
margin:auto;
}

/* Header */

header{

padding:25px 0;
display:flex;
justify-content:space-between;
align-items:center;
}

.logo{
font-size:28px;
font-weight:800;
}

.logo span{
color:var(--primary);
}

.btn{
padding:14px 28px;
border-radius:50px;
background:var(--primary);
text-decoration:none;
color:white;
font-weight:600;
display:inline-block;
transition:.4s;
}

.btn:hover{

transform:translateY(-5px);
box-shadow:0 0 30px var(--primary);
}

/* HERO */

.hero{

min-height:90vh;
display:flex;
align-items:center;
text-align:center;
}

.hero h1{

font-size:65px;
line-height:1.1;
max-width:1000px;
margin:auto;
}

.hero h1 span{
color:var(--primary);
}

.hero p{
margin:30px auto;
max-width:700px;
color:var(--muted);
font-size:18px;
line-height:1.8;
}

.heroButtons{
display:flex;
gap:15px;
justify-content:center;
margin-top:30px;
flex-wrap:wrap;
}

.outline{

background:transparent;
border:1px solid var(--primary);
}

.stats{

margin-top:70px;
display:grid;
grid-template-columns:repeat(4,1fr);
gap:20px;
}

.stat{
background:rgba(255,255,255,.03);
padding:30px;
border-radius:20px;
border:1px solid var(--border);
backdrop-filter:blur(20px);
}

.stat h2{
color:var(--primary);
margin-bottom:10px;
}

/* SECTION */

section{
padding:40px 0;
}

.sectionTitle{

font-size:42px;
text-align:center;
margin-bottom:30px;
}

.sectionTitle span{
color:var(--primary);
}

/* Features */

.features{

display:grid;
grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
gap:30px;
}

.feature{

background:var(--card);
padding:30px;
border-radius:25px;
border:1px solid var(--border);
transition:.4s;
overflow:hidden;
}

.feature:hover{
transform:translateY(-10px);
border-color:var(--primary);
}

.feature img{
width:100%;
height:200px;
object-fit:cover;
border-radius:15px;
margin-bottom:20px;
}

.feature i{

font-size:30px;
color:var(--primary);
margin-bottom:15px;
}

.feature h3{

margin-bottom:15px;
}

.feature p{

color:var(--muted);
line-height:1.7;
}


/* Platform Preview */

.preview{

display:grid;
grid-template-columns:repeat(auto-fit,minmax(350px,1fr));
gap:30px;
}

.preview img{
width:100%;
height:300px;
object-fit:cover;
border-radius:25px;
transition:.4s;
border:1px solid var(--border);
}



.preview img:hover{
transform:scale(1.05);
}


/* Pricing */

.price {
  max-width: 450px;
  /* FORCE zero margin on top/bottom, keep auto on left/right */
  margin: 0 auto; 
  background: linear-gradient(145deg, #111, #1b1b1b);
  padding: 20px 40px; 
  border-radius: 30px;
  text-align: center;
  border: 1px solid rgba(235, 28, 36, .3);
}

.price h2 {
  font-size: 50px;
  color: var(--primary);
  /* REMOVE all heading margins completely */
  margin: 0; 
  padding-bottom: 10px;
  line-height: 1; 
}

.price ul {
  list-style: none;
  /* STOPS lists from pushing items away */
  margin: 0;
  padding: 0; 
}

.price li {
  padding: 12px;
  border-bottom: 1px solid var(--border);
}

.price li:last-child {
  border-bottom: none;
}

/* FAQ */

.faq{

max-width:900px;
margin:auto;
}

details{

background:#111;
padding:20px;
border-radius:15px;
margin-bottom:20px;
border:1px solid var(--border);
}

summary{

cursor:pointer;
font-weight:700;
}

/* Contact */

.contact{

display:grid;
grid-template-columns:1fr 1fr;
gap:40px;
}

form{

background:#111;
padding:40px;
border-radius:30px;
border:1px solid var(--border);
}

input,select{

width:100%;
padding:18px;
margin-bottom:20px;
border:none;
outline:none;
background:#1b1b1b;
border-radius:12px;
color:white;
}

button{

width:100%;
border:none;
cursor:pointer;
}

/* Floating */

.floating{

position:fixed;
bottom:30px;
right:30px;
display:flex;
flex-direction:column;
gap:15px;
z-index:999;
}

.float{

width:60px;
height:60px;
background:var(--primary);
border-radius:50%;
display:flex;
justify-content:center;
align-items:center;
font-size:24px;
color:white;
text-decoration:none;
box-shadow:0 0 20px var(--primary);
}

@media(max-width:900px){

.hero h1{
font-size:40px;
}

.stats{
grid-template-columns:repeat(2,1fr);
}

.contact{
grid-template-columns:1fr;
}

}

@media(max-width:600px){

.stats{
grid-template-columns:1fr;
}

}


.logo{
display:flex;
align-items:center;
}

.logo img{
height:60px;
width:auto;
object-fit:contain;
}

/* Mobile */

@media(max-width:768px){

.logo img{
height:45px;
}

}


.featureSection{

padding:100px 0;

}

.featureGrid{

display:grid;
grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
gap:25px;

}

.featureItem{

background:rgba(255,255,255,.03);
padding:30px;
border-radius:25px;
border:1px solid rgba(255,255,255,.08);
backdrop-filter:blur(20px);

transition:.4s;
position:relative;
overflow:hidden;

}

.featureItem:before{

content:"";
position:absolute;
top:0;
left:-100%;
width:100%;
height:100%;

background:linear-gradient(
90deg,
transparent,
rgba(235,28,36,.2),
transparent
);

transition:.8s;

}

.featureItem:hover:before{

left:100%;

}

.featureItem:hover{

transform:translateY(-10px);
border-color:#EB1C24;
box-shadow:0 0 30px rgba(235,28,36,.25);

}

.featureItem i{

width:65px;
height:65px;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;

font-size:25px;
margin-bottom:20px;

background:rgba(235,28,36,.12);
color:#EB1C24;

}

.featureItem h3{

font-size:20px;
margin-bottom:15px;
line-height:1.5;

}

.featureItem p{

color:#9a9a9a;
line-height:1.8;

}


.processSection{

padding:40px 0;

}

.processText{

text-align:center;
max-width:700px;
margin:auto;
margin-bottom:60px;
color:#9a9a9a;
line-height:1.8;

}

.processWrap{

display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
align-items:center;

}

.processImage img{

width:100%;
height:650px;
object-fit:cover;

border-radius:30px;

border:1px solid rgba(255,255,255,.08);

box-shadow:
0 0 40px rgba(235,28,36,.15);

}

.timeline{

position:relative;

}

.timeline:before{

content:"";
position:absolute;

left:30px;
top:0;
bottom:0;

width:2px;

background:
linear-gradient(
to bottom,
#EB1C24,
transparent
);

}

.timelineItem{

display:flex;
gap:25px;
margin-bottom:40px;
position:relative;

}

.number{

min-width:60px;
width:60px;
height:60px;

border-radius:50%;

display:flex;
align-items:center;
justify-content:center;

font-weight:700;

background:#111;

color:#EB1C24;

border:2px solid #EB1C24;

z-index:2;

}

.content{

background:rgba(255,255,255,.03);

padding:25px;

border-radius:20px;

border:1px solid rgba(255,255,255,.08);

flex:1;

transition:.4s;

}

.content:hover{

transform:translateX(10px);

border-color:#EB1C24;

box-shadow:
0 0 30px rgba(235,28,36,.2);

}

.content h3{

margin-bottom:10px;

}

.content p{

line-height:1.8;
color:#9a9a9a;

}

@media(max-width:991px){

.processWrap{

grid-template-columns:1fr;

}

.processImage{
  height:650px;
  width:100%;
  display:flex;
  justify-content:center;
  align-items:center;
  padding:20px;
  background:#111;
  border-radius:30px;
  border:1px solid rgba(255,255,255,.08);
  overflow:visible;
}
.processImage img{
  max-width:100%;
  max-height:100%;
  width:auto;
  height:auto;
  min-width:0;
  min-height:0;
  display:block;
  object-fit:contain;
  object-position:center center;

}

@media (max-width: 600px){
  .processImage{
    height: 300px;
    padding: 12px;
    border-radius: 16px;
  }
}
