:root{
  --bg-light:#f3f4f6;
  --bg-dark:#0f172a;
  --bg-darker:#111827;
  --card:#ffffff;
  --accent:#38bdf8;
  --text-dark:#111827;
  --text-light:#e5e7eb;
  --muted:#94a3b8;
  --radius:16px;
}

/* ============================= */
/* BASE */
/* ============================= */

body{
  margin:0;
  font-family:system-ui,-apple-system,BlinkMacSystemFont,sans-serif;
  background:var(--bg-light);
  color:var(--text-dark);
  min-height:100vh;
  display:flex;
  flex-direction:column;
  line-height:1.6;
}

h1,h2,h3{
  margin:0 0 15px;
  font-weight:800;
}

.page{
  max-width:1100px;
  margin:80px auto;
  padding:0 20px;
}

/* ============================= */
/* NAVBAR */
/* ============================= */

.navbar{
  position:sticky;
  top:0;
  z-index:1000;
  background:rgba(15,23,42,0.9);
  backdrop-filter:blur(12px);
  border-bottom:1px solid rgba(255,255,255,0.05);
}

.nav-container{
  max-width:1200px;
  margin:auto;
  padding:14px 20px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.nav-logo{
  font-weight:800;
  font-size:20px;
  text-decoration:none;
  color:var(--accent);
}

.nav-links{
  display:flex;
  gap:30px;
}

.nav-links a{
  text-decoration:none;
  color:var(--text-light);
  font-size:14px;
  transition:.2s ease;
}

.nav-links a:hover{
  color:var(--accent);
}

.nav-toggle{
  display:none;
  font-size:22px;
  cursor:pointer;
  color:var(--text-light);
}

/* ============================= */
/* HERO RISULTATI */
/* ============================= */

.hero{
  margin-bottom:40px;
}

.hero-inner{
  text-align:center;
}

.hero h1{
  font-size:42px;
  letter-spacing:-0.5px;
}

.hero span{
  color:var(--accent);
}

.region{
  margin-top:10px;
  font-size:14px;
  font-weight:600;
  color:var(--muted);
  letter-spacing:1px;
}

/* ============================= */
/* PRICE CARD */
/* ============================= */

.price-section{
  margin-bottom:60px;
}

.price-card{
  background:linear-gradient(135deg,#111827,#1f2937);
  padding:50px 30px;
  border-radius:20px;
  text-align:center;
  box-shadow:0 30px 70px rgba(0,0,0,0.35);
  color:#ffffff;
}

.price-label{
  font-size:14px;
  color:var(--muted);
  margin-bottom:10px;
}

.price-main{
  font-size:64px;
  font-weight:800;
  color:var(--accent);
}

.price-range{
  margin-top:10px;
  font-size:18px;
  color:#cbd5e1;
}

/* ============================= */
/* CONTENT BLOCKS */
/* ============================= */

.content{
  margin-top:60px;
}

.block{
  margin-bottom:60px;
}

.block h2{
  font-size:28px;
  margin-bottom:20px;
}

/* ============================= */
/* FAQ */
/* ============================= */

.faq{
  display:flex;
  flex-direction:column;
  gap:15px;
}

.faq-item{
  background:var(--bg-dark);
  padding:20px;
  border-radius:14px;
  color:#ffffff;
}

.faq-title{
  font-weight:700;
  margin-bottom:6px;
}

.faq-text{
  color:#cbd5e1;
  font-size:14px;
}

/* ============================= */
/* RELATED */
/* ============================= */

.related{
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(200px,1fr));
  gap:20px;
}

.related-card{
  background:var(--bg-dark);
  padding:20px;
  border-radius:15px;
  color:#ffffff;
  text-decoration:none;
  font-weight:600;
  transition:.3s ease;
}

.related-card:hover{
  background:#1f2937;
  transform:translateY(-4px);
}

/* ============================= */
/* HOMEPAGE */
/* ============================= */

header{
  padding:90px 20px 60px;
  text-align:center;
}

form{
  display:flex;
  flex-direction:column;
  gap:16px;
  max-width:520px;
  margin:0 auto;
  padding:30px;
  background:#ffffff;
  border-radius:var(--radius);
  box-shadow:0 10px 40px rgba(0,0,0,0.1);
}

select,input{
  padding:14px 16px;
  border-radius:10px;
  border:1px solid #d1d5db;
  background:#fff;
  color:#000;
  font-size:15px;
}

button{
  padding:14px;
  border-radius:10px;
  border:none;
  font-size:16px;
  font-weight:600;
  background:linear-gradient(135deg,#4f8cff,#2563eb);
  color:#fff;
  cursor:pointer;
  transition:.2s ease;
  box-shadow:0 6px 18px rgba(37,99,235,0.4);
}

button:hover{
  transform:translateY(-2px);
  box-shadow:0 10px 25px rgba(37,99,235,0.6);
}

/* ============================= */
/* AUTOCOMPLETE */
/* ============================= */

#autocompleteResults{
  position:absolute;
  background:#ffffff;
  border-radius:10px;
  overflow:hidden;
  box-shadow:0 10px 30px rgba(0,0,0,0.25);
  max-width:520px;
  z-index:1000;
}

#autocompleteResults div{
  padding:12px;
  cursor:pointer;
}

#autocompleteResults div:hover{
  background:#f3f4f6;
}

/* ============================= */
/* FOOTER */
/* ============================= */

.aeq-footer{
  margin-top:auto;
  background:#0f172a;
  color:#cbd5e1;
  padding:60px 20px;
}

.aeq-footer-inner{
  max-width:1100px;
  margin:auto;
  display:flex;
  flex-direction:column;
  gap:30px;
}

.aeq-footer a{
  color:#94a3b8;
  text-decoration:none;
}

.aeq-footer a:hover{
  color:var(--accent);
}

.aeq-footer-copy{
  font-size:14px;
  color:#64748b;
}

/* ============================= */
/* MOBILE */
/* ============================= */

@media (max-width:768px){

  .nav-links{
    display:none;
    flex-direction:column;
    position:absolute;
    top:60px;
    right:20px;
    background:var(--bg-dark);
    padding:20px;
    border-radius:12px;
    box-shadow:0 20px 40px rgba(0,0,0,0.5);
