/* BASE */

body{
font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
margin:0;
background:#f4f6fb;
line-height:1.7;
}

/* BARRA PROMO */

.promo-bar{
background:#111;
color:white;
text-align:center;
padding:8px;
font-size:14px;
}

/* NAVBAR */

.navbar{
background:white;
position:sticky;
top:0;
border-bottom:1px solid #eee;
z-index:1000;
width:100%;
}

.nav-container{
max-width:1100px;
margin:auto;
display:flex;
align-items:center;
justify-content:space-between;
padding:15px 20px;
}

/* LOGO */

.nav-logo{
display:flex;
align-items:center;
gap:10px;
text-decoration:none;
color:#111;
font-weight:600;
}

.nav-logo img{
height:44px;
}

.nav-logo span{
font-size:16px;
color:#111;
}

/* MENU */

.nav-links{
display:flex;
align-items:center;
gap:25px;
margin-left:auto;
}

.nav-links a{
text-decoration:none;
color:#333;
font-weight:500;
display:inline-block;
position:relative;
}

/* linea hover sotto il menu */

.nav-links a::after{
content:"";
position:absolute;
left:0;
bottom:-4px;
width:0%;
height:2px;
background:#635bff;
transition:0.3s;
}

.nav-links a:hover::after{
width:100%;
}

.nav-links a:hover{
color:#635bff;
}

/* freccia dropdown */

.dropdown > a::after{
content:" ▾";
font-size:12px;
margin-left:4px;
}

/* DROPDOWN */

.dropdown{
position:relative;
}

.dropdown-menu{
display:none;
position:absolute;
top:30px;
left:0;
background:white;
border:1px solid #eee;
box-shadow:0 10px 20px rgba(0,0,0,0.1);
border-radius:8px;
min-width:200px;
padding:10px 0;
}

.dropdown-menu a{
display:block;
padding:10px 15px;
margin:0;
}

.dropdown-menu a:hover{
background:#f4f6fb;
}

.dropdown:hover .dropdown-menu{
display:block;
}

/* HERO */

.hero{
background:linear-gradient(135deg,#635bff,#8a7fff);
color:white;
text-align:center;
padding:80px 20px;
}

.hero-logo{
height:60px;
margin-bottom:20px;
}

.hero h1{
font-size:42px;
margin-bottom:10px;
font-weight:700;
}

.hero-description{
max-width:750px;
margin:15px auto;
font-size:17px;
}

/* CTA BUTTON */

.button{
display:inline-flex;
align-items:center;
gap:10px;
background:#2d2dff;
color:white;
padding:14px 28px;
border-radius:10px;
font-weight:bold;
text-decoration:none;
margin-top:25px;
}

.button:hover{
background:#1f1fff;
}

/* CONTENT */

.container{
max-width:900px;
margin:auto;
background:white;
padding:40px;
margin-top:-30px;
border-radius:10px;
box-shadow:0 10px 30px rgba(0,0,0,0.1);
}

h2{
margin-top:40px;
font-size:28px;
}

p{
margin:12px 0;
}

/* FEATURES */

.features{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
gap:18px;
margin-top:15px;
}

.card{
background:#f7f8fc;
padding:18px;
border-radius:10px;
text-align:center;
}

/* STEPS */

.steps{
background:#eef1ff;
padding:20px;
border-radius:10px;
}

/* TIP */

.tip{
background:#e9edff;
padding:20px;
border-radius:10px;
margin-top:15px;
}

/* TABLE */

.table{
width:100%;
border-collapse:collapse;
margin-top:15px;
}

.table td{
border:1px solid #ddd;
padding:10px;
}

/* FAQ */

.faq{
background:#f7f8fc;
padding:20px;
border-radius:10px;
margin-top:15px;
}

/* TRUST */

.trust{
background:#f7f8fc;
padding:20px;
border-radius:10px;
margin-top:25px;
text-align:center;
}

/* FOOTER */

.footer{
background:#111;
color:#ddd;
margin-top:60px;
padding:50px 20px 30px 20px;
}

.footer-container{
max-width:1100px;
margin:auto;
display:grid;
grid-template-columns:1.3fr 1fr 1fr;
gap:60px;
padding:20px 0;
}

.footer h3{
font-size:20px;
margin-bottom:15px;
color:#fff;
}

.footer h4{
font-size:16px;
margin-bottom:12px;
color:#fff;
}

.footer p{
font-size:14px;
line-height:1.7;
color:#bbb;
margin-bottom:14px;
}

.footer ul{
list-style:none;
padding:0;
margin:0;
}

.footer li{
margin:8px 0;
}

.footer a{
color:#bbb;
text-decoration:none;
transition:0.2s;
}

.footer a:hover{
color:#635bff;
}

.footer-bottom{
text-align:center;
margin-top:40px;
font-size:13px;
color:#888;
border-top:1px solid #222;
padding-top:20px;
letter-spacing:0.5px;
}

