/* ===========================
   GOOGLE FONT
=========================== */

*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}

html{
scroll-behavior:smooth;
}

body{

background:#f5f7fb;
color:#1e293b;
line-height:1.7;
overflow-x:hidden;

}

img{
max-width:100%;
display:block;
}

a{
text-decoration:none;
color:inherit;
}

ul{
list-style:none;
}

.container{

width:90%;
max-width:1280px;
margin:auto;

}

/* ===========================
HEADER
=========================== */

header{

position:sticky;
top:0;
z-index:999;

background:rgba(10,15,25,.95);

backdrop-filter:blur(15px);

box-shadow:0 10px 25px rgba(0,0,0,.2);

}

nav{

display:flex;

justify-content:space-between;

align-items:center;

padding:18px 0;

}

.logo{

height:70px;

width:auto;

}

nav ul{

display:flex;

gap:35px;

align-items:center;

}

nav ul li{

font-weight:500;

color:white;

transition:.3s;

}

nav ul li:hover{

color:#FBBF24;

}

.nav-btn{

background:#F59E0B;

padding:12px 24px;

border-radius:8px;

font-weight:600;

color:white;

transition:.3s;

}

.nav-btn:hover{

background:#d97706;

transform:translateY(-2px);

}

/* ===========================
BUTTONS
=========================== */

.btn{

display:inline-flex;

align-items:center;

justify-content:center;

padding:16px 34px;

background:#F59E0B;

color:white;

border-radius:10px;

font-weight:600;

transition:.35s;

box-shadow:0 15px 30px rgba(245,158,11,.3);

}

.btn:hover{

transform:translateY(-4px);

background:#d97706;

}

.btn-outline{

display:inline-flex;

align-items:center;

justify-content:center;

padding:15px 34px;

border:2px solid white;

color:white;

border-radius:10px;

transition:.35s;

}

.btn-outline:hover{

background:white;

color:#0f172a;

}

/* ===========================
SECTION
=========================== */

section{

padding:90px 0;

}

.section-title{

text-align:center;

margin-bottom:60px;

}

.section-title span{

display:inline-block;

background:#dbeafe;

color:#2563eb;

padding:8px 18px;

border-radius:30px;

font-size:13px;

font-weight:700;

letter-spacing:1px;

margin-bottom:20px;

}

.section-title.light span{

background:rgba(255,255,255,.15);

color:white;

}

.section-title h2{

font-size:42px;

margin-bottom:15px;

font-weight:700;

}

.section-title p{

max-width:700px;

margin:auto;

color:#64748b;

}

.dark{
    background:#0F172A;
    color:white;
    position:relative;
    overflow:hidden;
}

.dark::before{
    content:"";
    position:absolute;
    width:500px;
    height:500px;
    background:#2563EB;
    opacity:.08;
    border-radius:50%;
    top:-150px;
    right:-150px;
    filter:blur(60px);
}

.dark::after{
    content:"";
    position:absolute;
    width:350px;
    height:350px;
    background:#F59E0B;
    opacity:.05;
    border-radius:50%;
    bottom:-100px;
    left:-100px;
    filter:blur(60px);
}

.dark .container{
    position:relative;
    z-index:2;
}

/* ===========================
HERO
=========================== */

.hero{

background:

linear-gradient(rgba(15,23,42,.90),

rgba(15,23,42,.90)),

url("pexels-yankrukov-7698796.jpg");

background-size:cover;

background-position:center;

padding:120px 0;

color:white;

}

.hero-grid{

display:grid;

grid-template-columns:1fr 1fr;

gap:80px;

align-items:center;

}

.hero-badge{

display:inline-block;

background:rgba(255,255,255,.1);

padding:10px 20px;

border-radius:30px;

margin-bottom:30px;

font-size:14px;

}

.hero h1{

font-size:58px;

line-height:1.15;

margin-bottom:25px;

font-weight:800;

}

.hero p{

font-size:18px;

opacity:.9;

margin-bottom:35px;

}

.hero-buttons{

display:flex;

gap:18px;

margin-bottom:50px;

flex-wrap:wrap;

}

.hero-stats{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:20px;

}

.hero-stats div{

background:rgba(255,255,255,.08);

padding:20px;

border-radius:15px;

text-align:center;

backdrop-filter:blur(10px);

}

.hero-stats h3{

font-size:30px;

color:#FBBF24;

}

.hero-right{

display:flex;

justify-content:center;

}

/* ===========================
IMAGE PLACEHOLDER
=========================== */

.image-placeholder{



}

.image-placeholder i{

font-size:70px;

margin-bottom:25px;

color:#FBBF24;

}

.image-placeholder h3{

margin-bottom:12px;

}

.image-placeholder.small{

min-height:220px;

background:#eef4ff;

color:#0f172a;

border-color:#2563eb55;

}

.image-placeholder.portrait{

min-height:520px;

}

/* ===========================
TRUST BAR
=========================== */

.trust{

padding:35px 0;

background:white;

}

.trust p{

text-align:center;

font-weight:600;

margin-bottom:25px;

}

.marketplaces{

display:grid;

grid-template-columns:repeat(6,1fr);

gap:18px;

}

.marketplaces div{

background:#fff;

padding:18px;

text-align:center;

border-radius:12px;

box-shadow:0 5px 20px rgba(0,0,0,.05);

transition:.3s;

}

.marketplaces div:hover{

transform:translateY(-6px);

box-shadow:0 15px 35px rgba(0,0,0,.1);

}

/* ===========================
CARDS
=========================== */

.grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

gap:30px;

}

.card{

background:white;

padding:35px;

border-radius:18px;

box-shadow:0 15px 40px rgba(15,23,42,.08);

transition:.35s;

}

.card:hover{

transform:translateY(-10px);

}

.service-icon{

width:70px;

height:70px;

border-radius:50%;

background:#2563eb;

color:white;

display:flex;

align-items:center;

justify-content:center;

font-size:28px;

margin-bottom:20px;

}

.card h3{

margin-bottom:15px;

font-size:22px;

}

.card p{

white-space:pre-line;

color:#64748b;

}

/* =====================================================
PROCESS TIMELINE
===================================================== */

.process-section{
background:#ffffff;
}

.timeline{
display:flex;
justify-content:center;
align-items:center;
flex-wrap:wrap;
gap:18px;
margin-top:50px;
}

.step{
display:flex;
flex-direction:column;
align-items:center;
text-align:center;
}

.circle{
width:70px;
height:70px;
border-radius:50%;
background:#2563EB;
color:#fff;
display:flex;
justify-content:center;
align-items:center;
font-size:24px;
font-weight:700;
box-shadow:0 15px 30px rgba(37,99,235,.25);
}

.step h4{
margin-top:15px;
font-size:17px;
}

.line{
width:90px;
height:4px;
background:#CBD5E1;
border-radius:50px;
}

/* =====================================================
RESULTS
===================================================== */

.results-section{
position:relative;
background:url("results-bg-placeholder.jpg") center/cover;
color:#fff;
overflow:hidden;
}

.results-overlay{
position:absolute;
inset:0;
background:rgba(15,23,42,.90);
}

.results-section .container{
position:relative;
z-index:2;
}

.results-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:25px;
margin-top:40px;
}

.result-card{
background:rgba(255,255,255,.08);
backdrop-filter:blur(10px);
padding:35px;
border-radius:18px;
text-align:center;
transition:.35s;
}

.result-card:hover{
transform:translateY(-8px);
}

.result-card h2{
font-size:52px;
color:#FBBF24;
margin-bottom:10px;
}

.analytics-image{
margin-top:60px;
min-height:380px;
}

/* =====================================================
CASE STUDIES
===================================================== */

.case-card{
background:#fff;
border-radius:18px;
overflow:hidden;
box-shadow:0 15px 35px rgba(15,23,42,.08);
transition:.35s;
}

.case-card:hover{
transform:translateY(-10px);
}

.case-card h3{
padding:25px 25px 10px;
font-size:24px;
}

.case-card p{
padding:0 25px;
color:#64748B;
}

.case-card a{
display:inline-block;
padding:25px;
font-weight:600;
color:#2563EB;
}

/* =====================================================
INDUSTRIES
===================================================== */

.industry-card{
background:#fff;
padding:35px;
border-radius:18px;
text-align:center;
box-shadow:0 10px 25px rgba(15,23,42,.08);
transition:.35s;
}

.industry-card:hover{
transform:translateY(-8px);
}

.industry-card i{
font-size:42px;
color:#2563EB;
margin-bottom:20px;
}

/* =====================================================
TEAM
===================================================== */

.team-grid{
display:grid;
grid-template-columns:450px 1fr;
gap:70px;
align-items:center;
}

.section-tag{
display:inline-block;
background:#F59E0B;
padding:8px 18px;
border-radius:30px;
font-size:13px;
font-weight:700;
margin-bottom:25px;
}

.team-grid h2{
font-size:44px;
margin-bottom:20px;
}

.team-grid p{
opacity:.9;
margin-bottom:20px;
}

/* =====================================================
TESTIMONIALS
===================================================== */

.testimonials{
background:#F8FAFC;
}

.testimonial{
background:#fff;
padding:35px;
border-radius:18px;
box-shadow:0 15px 30px rgba(15,23,42,.08);
text-align:center;
transition:.35s;
}

.testimonial:hover{
transform:translateY(-8px);
}

.avatar-placeholder{
width:80px;
height:80px;
border-radius:50%;
background:#DBEAFE;
margin:auto;
margin-bottom:20px;
display:flex;
align-items:center;
justify-content:center;
font-weight:700;
color:#2563EB;
}

.testimonial strong{
display:block;
margin-top:20px;
}

/* =====================================================
FAQ
===================================================== */

.faq{
background:#fff;
}

.faq-item{
margin-bottom:18px;
border-radius:12px;
overflow:hidden;
box-shadow:0 10px 25px rgba(15,23,42,.08);
}

.faq-question{
width:100%;
padding:24px;
font-size:18px;
font-weight:600;
background:#fff;
border:none;
cursor:pointer;
text-align:left;
}

.faq-answer{
display:none;
padding:0 24px 24px;
color:#64748B;
}

.faq-item.active .faq-answer{
display:block;
}

/* =====================================================
FINAL CTA
===================================================== */

.final-cta{
background:linear-gradient(135deg,#0F172A,#2563EB);
color:#fff;
text-align:center;
}

.final-cta h2{
font-size:48px;
margin-bottom:20px;
}

.final-cta p{
max-width:700px;
margin:auto;
margin-bottom:35px;
opacity:.9;
}

/* =====================================================
FOOTER
===================================================== */

footer{
background:#020617;
color:#CBD5E1;
padding-top:80px;
}

.footer-grid{
display:grid;
grid-template-columns:2fr 1fr 1fr 1fr;
gap:50px;
padding-bottom:50px;
}

.footer-grid h3,
.footer-grid h4{
margin-bottom:20px;
color:#fff;
}

.footer-grid li{
margin-bottom:12px;
}

.footer-grid a:hover{
color:#FBBF24;
}

.copyright{
border-top:1px solid rgba(255,255,255,.1);
padding:25px;
text-align:center;
font-size:14px;
}

/* =====================================================
SCROLL TO TOP
===================================================== */

#scrollTop{
position:fixed;
right:30px;
bottom:30px;
width:55px;
height:55px;
border:none;
border-radius:50%;
background:#F59E0B;
color:#fff;
font-size:22px;
cursor:pointer;
display:none;
box-shadow:0 15px 30px rgba(245,158,11,.3);
z-index:999;
transition:.3s;
}

#scrollTop:hover{
transform:translateY(-5px);
}

/* =====================================================
ANIMATIONS
===================================================== */

.fade-up{
opacity:0;
transform:translateY(50px);
transition:all .8s ease;
}

.fade-up.show{
opacity:1;
transform:translateY(0);
}

/* =====================================================
RESPONSIVE
===================================================== */

@media(max-width:1100px){

.hero-grid,
.team-grid{
grid-template-columns:1fr;
text-align:center;
}

.hero-right{
margin-top:40px;
}

.footer-grid{
grid-template-columns:1fr 1fr;
}

.marketplaces{
grid-template-columns:repeat(3,1fr);
}

.hero-stats{
grid-template-columns:repeat(2,1fr);
}

.timeline{
flex-direction:column;
}

.line{
width:4px;
height:70px;
}

}

@media(max-width:768px){

nav{
flex-direction:column;
gap:20px;
}

nav ul{
flex-wrap:wrap;
justify-content:center;
gap:18px;
}

.hero h1{
font-size:40px;
}

.section-title h2{
font-size:32px;
}

.hero-buttons{
justify-content:center;
}

.marketplaces{
grid-template-columns:repeat(2,1fr);
}

.footer-grid{
grid-template-columns:1fr;
text-align:center;
}

.hero-stats{
grid-template-columns:1fr;
}

.results-grid{
grid-template-columns:1fr;
}

.grid{
grid-template-columns:1fr;
}

.image-placeholder{
min-height:280px;
}

.analytics-image{
min-height:260px;
}

}

/* ==========================
WHY CHOOSE US
========================== */

.features{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:35px;
    margin-top:50px;
}

.features > div{
    background:#1E293B;
    padding:35px;
    border-radius:18px;
    transition:.35s;
    box-shadow:0 15px 30px rgba(0,0,0,.15);
}

.features > div:hover{
    transform:translateY(-8px);
}

.features i{
    font-size:42px;
    color:#FBBF24;
    margin-bottom:20px;
}

.features h4{
    font-size:22px;
    margin-bottom:12px;
}

.features p{
    color:#CBD5E1;
}