.btn{
    padding:14px 34px;
    border-radius:40px;
    font-weight:600;
    text-decoration:none;
    display:inline-block;
    transition:.4s;
}

.btn.primary{
    background:linear-gradient(90deg,var(--accent),var(--accent2));
    color:#000;
}

.btn.ghost{
    border:1px solid var(--accent);
    color:var(--accent);
}

.btn:hover{
    transform:scale(1.08);
    box-shadow:0 0 25px var(--accent);
}

/* ================= TARGET ================= */
.target-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
    gap:20px;
    max-width:900px;
    margin:auto;
}
.target-box{
    background:var(--glass);
    padding:30px;
    border-radius:var(--radius);
    text-align:center;
    font-weight:600;
}

/* ================= PROCESSO ================= */
.steps{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:15px;
}
.step{
    padding:18px 26px;
    border-radius:40px;
    background:linear-gradient(90deg,var(--accent),var(--accent2));
    color:#000;
    font-weight:600;
}

/* ================= PREVENTIVO ================= */
#preventivo{
    text-align:center;
    background:linear-gradient(120deg,#00121f,#000814);
}

/* ================= RECENSIONI ================= */
.reviews{
    max-width:900px;
    margin:auto;
    text-align:center;
    opacity:.85;
}

/* ================= SOCIAL ================= */
.social-links{
    display:flex;
    justify-content:center;
    gap:25px;
}
.social-links a{
    font-size:1.6rem;
    color:var(--accent);
    transition:.3s;
}
.social-links a:hover{
    transform:scale(1.3);
}

#certificazioni{
    text-align:center;
}

.cert-grid{
    max-width:1100px;
    margin:60px auto 0;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
    gap:30px;
}

.cert-card{
    background:rgba(255,255,255,.06);
    backdrop-filter:blur(14px);
    border-radius:18px;
    padding:30px 20px;
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:15px;
    transition:.4s;
}

.cert-card img{
    height:55px;
    filter:grayscale(100%);
    opacity:.85;
    transition:.4s;
}

.cert-card span{
    font-size:.9rem;
    opacity:.75;
}

.cert-card:hover{
    transform:translateY(-10px);
    box-shadow:0 0 35px rgba(0,242,255,.35);
}

.cert-card:hover img{
    filter:none;
    opacity:1;
}


/* ================= TRUST SECTION ================= */

.trust-section {
    position: relative;
    background:
        radial-gradient(circle at top, #0b1d2a, #05080f);
    overflow: hidden;
}

.trust-header {
    text-align: center;
    margin-bottom: 60px;
}

/* GRID */
.trust-grid {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

/* CARD */
.trust-item {
    display: flex;
    align-items: center;
    gap: 25px;

    padding: 30px;
    border-radius: 22px;

    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(18px);

    box-shadow: 0 0 40px rgba(0,242,255,0.08);
    transition: transform .4s ease, box-shadow .4s ease;
}

/* HOVER */
.trust-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 60px rgba(0,242,255,0.35);
}

/* LOGO */
.trust-logo {
    width: 90px;
    height: 90px;

    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;

    background: linear-gradient(
        145deg,
        rgba(0,242,255,0.15),
        rgba(124,124,255,0.15)
    );
}

.trust-logo img {
    max-width: 65%;
    max-height: 65%;
    object-fit: contain;
    filter: drop-shadow(0 0 12px rgba(0,242,255,.6));
}

/* TESTI */
.trust-info h4 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 700;
}

.trust-info span {
    font-size: .95rem;
    opacity: .75;
}

/* MOBILE */
@media (max-width: 768px) {
    .trust-item {
        flex-direction: column;
        text-align: center;
    }
}
