body{
font-family:'Inter',sans-serif;
margin:0;
background:linear-gradient(180deg,#f6f7fb,#ffffff);
color:#111;
}

section{
padding:120px 20px;
}

.container{
max-width:1200px;
margin:auto;
}

.layoutimg{
width:100%;
border-radius:12px;
margin-bottom:15px;
}

.layouts{
background:white;
}

.dark{
background:#0f172a;
color:white;
}

h1{
font-size:80px;
font-weight:700;
letter-spacing:-3px;
margin-bottom:20px;
}

h2{
font-size:42px;
letter-spacing:-1px;
margin-bottom:20px;
}

.nav{
position:fixed;
top:0;
left:0;
width:100%;
background:rgba(255,255,255,0.7);
backdrop-filter: blur(12px);
border-bottom:1px solid rgba(0,0,0,0.05);
z-index:1000;
}

.nav-inner{
max-width:1200px;
margin:auto;
display:flex;
justify-content:space-between;
align-items:center;
padding:18px 20px;
}

.logo{
font-weight:700;
font-size:20px;
letter-spacing:-0.5px;
}

.hero{
width:100%;
padding-top:260px;
padding-bottom:220px;
background:
radial-gradient(circle at 20% 20%,rgba(47,109,246,0.18),transparent 40%),
radial-gradient(circle at 80% 80%,rgba(99,102,241,0.14),transparent 40%),
linear-gradient(180deg,#ffffff,#eef2ff);
display:flex;
justify-content:center;
align-items:center;
text-align:center;
}

.hero-inner{
max-width:900px;
margin:auto;
text-align:center;
}

.hero p{
font-size:22px;
color:#6b7280;
margin-bottom:40px;
}

button{
background:#2f6df6;
color:white;
border:none;
padding:20px 44px;
font-size:18px;
border-radius:14px;
cursor:pointer;
font-weight:600;
box-shadow:0 20px 40px rgba(47,109,246,0.3);
transition:0.25s;
}

button:hover{
transform:translateY(-3px);
box-shadow:0 30px 60px rgba(47,109,246,0.4);
}

.grid{
display:flex;
gap:40px;
justify-content:center;
margin-top:60px;
flex-wrap:wrap;
}

.card{
background:rgba(255,255,255,0.75);
backdrop-filter: blur(12px);
border-radius:20px;
box-shadow:0 30px 60px rgba(0,0,0,0.12);
transition:0.35s;
padding:30px;
width:260px;
cursor:pointer;
}

.card:hover{
transform:translateY(-10px) scale(1.02);
box-shadow:0 40px 100px rgba(47,109,246,0.25);
}

.steps{
display:flex;
justify-content:center;
gap:30px;
margin-top:20px;
flex-wrap:wrap;
}

.pricing{
background:white;
}

.pricing{
background:#f8fafc;
}

.price-grid{
display:flex;
gap:40px;
justify-content:center;
margin-top:60px;
flex-wrap:wrap;
}

.price-card{
background:white;
padding:50px 40px;
border-radius:20px;
box-shadow:0 25px 60px rgba(0,0,0,0.08);
width:260px;
transition:0.3s;
}

.price-card:hover{
transform:translateY(-8px);
box-shadow:0 35px 80px rgba(0,0,0,0.12);
}

.price{
font-size:40px;
font-weight:700;
margin:20px 0;
}

.highlight{
border:2px solid #2f6df6;
transform:scale(1.05);
box-shadow:0 30px 80px rgba(47,109,246,0.25);
}

.cta-dark{
background:linear-gradient(180deg,#0f172a,#020617);
color:white;
text-align:center;
padding:180px 20px;
}

.cta-dark h2{
font-size:48px;
margin-bottom:40px;
letter-spacing:-1px;
}

.trust{
background:white;
}

.trust-grid{
display:flex;
gap:40px;
justify-content:center;
margin-top:60px;
flex-wrap:wrap;
}

.trust-card{
background:#f8fafc;
padding:40px;
border-radius:18px;
width:260px;
text-align:center;
transition:0.3s;
}

.trust-card:hover{
transform:translateY(-8px);
box-shadow:0 25px 60px rgba(0,0,0,0.1);
}

.order{
background:white;
}

form{
max-width:600px;
margin:60px auto;
display:flex;
flex-direction:column;
gap:20px;
}

input,textarea,select{
padding:16px;
border-radius:12px;
border:1px solid #e5e7eb;
font-size:16px;
}

textarea{
min-height:120px;
}