:root{
  --bg:#f5f7fb;
  --panel:#ffffff;
  --text:#0b1220;
  --muted:#5b6475;
  --primary:#0b4dbb;
  --primary-2:#083a8a;
  --border:rgba(10,18,32,.10);
  --shadow:0 10px 30px rgba(10,18,32,.08);
  --radius:16px;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:var(--bg);
  color:var(--text);
  line-height:1.45;
}

a{ color:inherit; text-decoration:none; }
.container{ width:min(1120px, 92%); margin:0 auto; }
.muted{ color:var(--muted); }
.tiny{ font-size:12px; }
.mono{ font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; }

.site-header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(255,255,255,.82);
  border-bottom:1px solid var(--border);
  backdrop-filter: blur(10px);
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:14px 0;
}
.brand{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:800;
  letter-spacing:.2px;
}
.brand-mark{
  width:12px; height:12px;
  border-radius:999px;
  background:linear-gradient(135deg,var(--primary),#1c7dff);
  box-shadow: 0 0 0 4px rgba(11,77,187,.10);
}
.brand-name{ font-size:15px; }

.site-nav{
  display:flex;
  align-items:center;
  gap:18px;
  font-size:14px;
}
.site-nav a{ color:#1c2740; }
.site-nav a:hover{ color:var(--primary); }
.nav-cta{
  padding:10px 14px;
  border-radius:999px;
  background:var(--primary);
  color:white !important;
  box-shadow: 0 8px 20px rgba(11,77,187,.22);
}
.nav-cta:hover{ background:var(--primary-2); }

.nav-toggle{
  display:none;
  width:44px; height:40px;
  border:1px solid var(--border);
  border-radius:12px;
  background:var(--panel);
  box-shadow: 0 6px 18px rgba(10,18,32,.06);
}
.nav-toggle span{
  display:block;
  width:18px;
  height:2px;
  margin:4px auto;
  background:#1c2740;
  border-radius:2px;
}

.hero{
  background:
    radial-gradient(1200px 600px at 15% 15%, rgba(11,77,187,.18), transparent 60%),
    radial-gradient(900px 500px at 85% 40%, rgba(28,125,255,.14), transparent 55%),
    linear-gradient(180deg, #ffffff, var(--bg));
  padding:70px 0 34px;
}
.hero-inner{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:26px;
  align-items:stretch;
}

.pill{
  display:inline-flex;
  align-items:center;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(11,77,187,.08);
  color:var(--primary-2);
  font-weight:700;
  font-size:13px;
  border:1px solid rgba(11,77,187,.14);
}
.hero h1{
  margin:14px 0 10px;
  font-size:44px;
  line-height:1.05;
  letter-spacing:-.6px;
}
.lead{
  font-size:17px;
  color:#33405a;
  max-width:58ch;
}
.hero-actions{ display:flex; gap:12px; margin-top:18px; flex-wrap:wrap; }

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 16px;
  border-radius:14px;
  font-weight:800;
  font-size:14px;
  border:1px solid transparent;
  cursor:pointer;
}
.btn-primary{
  background:var(--primary);
  color:white;
  box-shadow: 0 10px 24px rgba(11,77,187,.25);
}
.btn-primary:hover{ background:var(--primary-2); }
.btn-secondary{
  background:rgba(255,255,255,.9);
  border-color:var(--border);
  border:1px solid var(--border);
  box-shadow: 0 10px 24px rgba(10,18,32,.08);
}
.btn-secondary:hover{ border-color: rgba(11,77,187,.25); }
.btn-block{ width:100%; }

.trust-row{
  display:flex;
  gap:14px;
  margin-top:18px;
  flex-wrap:wrap;
  color:#33405a;
  font-size:13px;
}
.trust-item{ display:flex; align-items:center; gap:8px; }
.dot{
  width:6px; height:6px; border-radius:999px;
  background:var(--primary);
  box-shadow:0 0 0 4px rgba(11,77,187,.12);
}

.mini-legal{
  margin-top:12px;
  font-size:12px;
  color:var(--muted);
}

.hero-media{
  display:grid;
  grid-template-rows: 1fr auto;
  gap:12px;
}
.hero-image{
  border-radius:var(--radius);
  border:1px solid var(--border);
  box-shadow: var(--shadow);
  min-height:260px;
  background-size:cover;
  background-position:center;
}
.hero-card{
  background:rgba(255,255,255,.92);
  border:1px solid var(--border);
  border-radius:var(--radius);
  box-shadow: var(--shadow);
  padding:18px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}
.hero-card-title{ font-weight:900; font-size:16px; }
.hero-card-sub{ color:var(--muted); margin:6px 0 14px; }
.hero-card-note{ color:var(--muted); font-size:12px; margin-top:12px; }

.section{ padding:56px 0; }
.section.alt{ background: linear-gradient(180deg, var(--bg), #ffffff); border-top:1px solid var(--border); border-bottom:1px solid var(--border); }
.section-head{ margin-bottom:22px; }
.section-head h2{ margin:0 0 8px; font-size:26px; letter-spacing:-.2px; }

.cards{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:18px;
}
.card{
  background:var(--panel);
  border:1px solid var(--border);
  border-radius:var(--radius);
  box-shadow: 0 10px 26px rgba(10,18,32,.06);
  padding:18px;
}
.card-top{
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom:8px;
}
.card-icon{
  width:34px; height:34px;
  border-radius:12px;
  background: linear-gradient(135deg, rgba(11,77,187,.18), rgba(28,125,255,.10));
  border:1px solid rgba(11,77,187,.16);
}
.card h3{ margin:0; font-size:16px; }
.card p{ margin:10px 0 12px; color:#33405a; }
.link{ color:var(--primary); font-weight:800; }

.checklist{ padding-left:18px; margin:0 0 12px; color:#33405a; }
.checklist li{ margin:6px 0; }

.split{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:18px;
  align-items:start;
}

.kpi-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:12px;
  margin:18px 0 16px;
}
.kpi{
  background:var(--panel);
  border:1px solid var(--border);
  border-radius:14px;
  padding:14px;
  box-shadow: 0 10px 24px rgba(10,18,32,.05);
}
.kpi-n{ font-size:22px; font-weight:1000; color:var(--primary-2); }
.kpi-l{ color:var(--muted); font-size:13px; }

.panel{
  background:var(--panel);
  border:1px solid var(--border);
  border-radius:var(--radius);
  box-shadow: var(--shadow);
  padding:18px;
}
.panel-title{ font-weight:1000; margin-bottom:10px; }
.steps{ list-style:none; padding:0; margin:0 0 12px; }
.steps li{ display:flex; align-items:center; gap:10px; padding:10px 0; border-bottom:1px solid rgba(10,18,32,.06); }
.steps li:last-child{ border-bottom:none; }
.step-n{
  width:28px; height:28px; border-radius:10px;
  display:inline-flex; align-items:center; justify-content:center;
  font-weight:1000; color:white;
  background:var(--primary);
}

.sim-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:18px;
  align-items:start;
}
.sim-form{
  background:var(--panel);
  border:1px solid var(--border);
  border-radius:var(--radius);
  box-shadow: var(--shadow);
  padding:18px;
}
label{ display:block; font-weight:900; font-size:13px; margin:10px 0 6px; }
input, select, textarea{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(10,18,32,.14);
  background:#fff;
  font-size:14px;
  outline:none;
}
input:focus, select:focus, textarea:focus{ border-color: rgba(11,77,187,.35); box-shadow: 0 0 0 4px rgba(11,77,187,.10); }

.range-row{ display:flex; gap:12px; align-items:center; }
.range-val{ font-weight:1000; color:#1c2740; min-width:90px; text-align:right; }

.sim-result{ display:flex; flex-direction:column; gap:12px; }
.result-card{
  background:var(--panel);
  border:1px solid var(--border);
  border-radius:var(--radius);
  box-shadow: 0 10px 24px rgba(10,18,32,.06);
  padding:18px;
}
.result-label{ color:var(--muted); font-weight:800; font-size:13px; }
.result-value{ font-size:30px; font-weight:1100; margin-top:6px; letter-spacing:-.5px; }
.result-cta{
  background:linear-gradient(135deg, rgba(11,77,187,.10), rgba(28,125,255,.08));
  border:1px solid rgba(11,77,187,.16);
  border-radius:var(--radius);
  padding:18px;
}
.result-cta-title{ font-weight:1000; margin-bottom:6px; }

.cta-band{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  background:var(--panel);
  border:1px solid var(--border);
  border-radius:var(--radius);
  box-shadow: var(--shadow);
  padding:18px;
}
.cta-band-actions{ display:flex; gap:12px; flex-wrap:wrap; }

.page .page-hero{
  padding:42px 0 20px;
  background: linear-gradient(180deg, #ffffff, var(--bg));
  border-bottom:1px solid var(--border);
}
.page-hero h1{ margin:0 0 8px; font-size:34px; letter-spacing:-.5px; }
.page-hero p{ margin:0; }

.content-card{
  background:var(--panel);
  border:1px solid var(--border);
  border-radius:var(--radius);
  box-shadow: var(--shadow);
  padding:22px;
  margin-bottom:16px;
}
.two-col{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:14px;
  margin:14px 0;
}
.note{
  margin-top:14px;
  padding:12px 14px;
  border-radius:14px;
  background: rgba(11,77,187,.06);
  border:1px solid rgba(11,77,187,.14);
  color:#33405a;
}

.faq details{
  background:#fff;
  border:1px solid rgba(10,18,32,.10);
  border-radius:14px;
  padding:12px 14px;
  margin:10px 0;
}
.faq summary{ font-weight:1000; cursor:pointer; }
.cta-row{ display:flex; gap:12px; flex-wrap:wrap; margin:14px 0; }

.gallery{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:10px;
}
.gallery img{
  width:100%;
  height:140px;
  border-radius:14px;
  object-fit:cover;
  border:1px solid rgba(10,18,32,.10);
}

.photo-strip{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:12px;
}
.photo-strip img{
  width:100%;
  height:240px;
  border-radius:var(--radius);
  object-fit:cover;
  border:1px solid rgba(10,18,32,.10);
  box-shadow: var(--shadow);
}

.legal-note{
  width:min(1120px, 92%);
  margin: 24px auto 0;
  padding:14px 16px;
  border-radius:14px;
  background: rgba(11,77,187,.06);
  border:1px solid rgba(11,77,187,.14);
  color:#33405a;
  font-size:12px;
  line-height:1.45;
}
.legal-note-title{
  font-weight:1000;
  color:#1c2740;
  margin-bottom:6px;
}
.legal-note-spacer{ height:10px; }

.site-footer{
  background:#0b1220;
  color:#e9eefb;
  padding:34px 0 26px;
  margin-top:18px;
}
.footer-grid{
  display:grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap:18px;
}
.footer-title{ font-weight:1000; margin-bottom:8px; }
.footer-link{ color:#e9eefb; opacity:.9; }
.footer-link:hover{ opacity:1; text-decoration:underline; }

.footer-legal{
  margin-top:16px;
  padding-top:16px;
  border-top:1px solid rgba(255,255,255,.10);
}
.legal-block{
  font-size:12px;
  line-height:1.4;
  color:#dbe3ff;
}
.legal-block .muted{ color:#b7c3ea; }

.spacer{ height:14px; }

.wa-float{
  position:fixed;
  right:18px;
  bottom:18px;
  display:flex;
  align-items:center;
  gap:10px;
  padding:12px 14px;
  border-radius:999px;
  background:#1bbd5b;
  color:white;
  font-weight:1000;
  box-shadow: 0 14px 26px rgba(0,0,0,.18);
  z-index:60;
}
.wa-dot{
  width:10px; height:10px;
  border-radius:999px;
  background: rgba(255,255,255,.95);
  box-shadow: 0 0 0 4px rgba(255,255,255,.22);
}

@media (max-width: 980px){
  .hero-inner{ grid-template-columns: 1fr; }
  .cards{ grid-template-columns: 1fr; }
  .split{ grid-template-columns: 1fr; }
  .sim-grid{ grid-template-columns: 1fr; }
  .two-col{ grid-template-columns: 1fr; }
  .footer-grid{ grid-template-columns: 1fr; }
  .photo-strip{ grid-template-columns: 1fr; }
  .site-nav{ 
    position:fixed;
    inset:112px 14px auto 14px;
    background:rgba(255,255,255,.97);
    border:1px solid var(--border);
    border-radius:var(--radius);
    box-shadow: var(--shadow);
    padding:12px;
    display:none;
    flex-direction:column;
    align-items:stretch;
    gap:10px;
  }
  .site-nav a{ padding:10px 12px; border-radius:12px; }
  .site-nav a:hover{ background: rgba(11,77,187,.06); }
  .nav-toggle{ display:block; }
  body.nav-open .site-nav{ display:flex; }
  body.nav-open{ overflow:hidden; }
}



.brand-logo{
  width:72px;
  height:72px;
  border-radius:14px;
  object-fit:contain;
  background:#fff;
  border:1px solid rgba(10,18,32,.10);
  box-shadow: 0 8px 18px rgba(10,18,32,.08);
}


.cookie-banner{
  position:fixed;
  left:14px;
  right:14px;
  bottom:14px;
  z-index:80;
  display:none;
}
.cookie-banner.show{ display:block; }
.cookie-inner{
  width:min(1120px, 100%);
  margin:0 auto;
  background:rgba(255,255,255,.98);
  border:1px solid rgba(10,18,32,.12);
  border-radius:18px;
  box-shadow: 0 18px 40px rgba(10,18,32,.18);
  padding:14px 14px;
  display:flex;
  gap:12px;
  align-items:center;
  justify-content:space-between;
}
.cookie-text{
  color:#33405a;
  font-size:13px;
  line-height:1.35;
}
.cookie-text a{ color: var(--primary); font-weight:900; }
.cookie-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}
@media (max-width: 680px){
  .cookie-inner{ flex-direction:column; align-items:stretch; }
  .cookie-actions .btn{ width:100%; }
}



/* Bank-style header */
.site-header{
  position:sticky;
  top:0;
  z-index:50;
  background:#ffffff;
  border-bottom:1px solid rgba(10,18,32,.10);
  backdrop-filter:none;
}

.header-top{
  background: linear-gradient(180deg, rgba(11,77,187,.08), rgba(11,77,187,.03));
  border-bottom:1px solid rgba(11,77,187,.14);
}
.header-top-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:8px 0;
  font-size:12px;
  color:#33405a;
}
.top-left, .top-right{ display:flex; align-items:center; gap:10px; flex-wrap:wrap; }
.top-link{ color: var(--primary-2); font-weight:900; }
.top-link:hover{ text-decoration:underline; }
.top-sep{ opacity:.6; }

.header-inner{
  padding:14px 0;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  font-weight:900;
  letter-spacing:.2px;
}
.brand-text{
  display:flex;
  flex-direction:column;
  line-height:1.05;
}
.brand-name{
  font-size:16px;
  letter-spacing:-.2px;
}
.brand-sub{
  margin-top:3px;
  font-size:11px;
  color: var(--muted);
  letter-spacing:.6px;
  text-transform:uppercase;
}

.site-nav{
  gap:16px;
  font-size:13px;
}
.site-nav a{
  color:#1c2740;
  font-weight:800;
}
.site-nav a:hover{ color:var(--primary); }

.nav-cta{
  padding:10px 14px;
  border-radius:999px;
  background:transparent;
  border:1px solid rgba(11,77,187,.28);
  color: var(--primary) !important;
  box-shadow:none;
}
.nav-cta:hover{
  background: rgba(11,77,187,.08);
  border-color: rgba(11,77,187,.40);
}

@media (max-width: 980px){
  .header-top-inner{ padding:10px 0; }
}


.nationwide-note{
  margin-top:14px;
  padding:10px 14px;
  border-radius:12px;
  background:rgba(11,77,187,.08);
  border:1px solid rgba(11,77,187,.18);
  font-size:13px;
  color:#1c2740;
}


.nationwide-section .nationwide-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:14px;
  flex-wrap:wrap;
  margin-bottom:14px;
}
.nationwide-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
  margin: 10px 0 14px;
}
.nationwide-item{
  background:#fff;
  border:1px solid rgba(10,18,32,.10);
  border-radius:14px;
  padding:14px;
}
.nationwide-icon{
  width:36px;
  height:36px;
  border-radius:14px;
  background: linear-gradient(135deg, rgba(11,77,187,.18), rgba(28,125,255,.10));
  border:1px solid rgba(11,77,187,.16);
  margin-bottom:10px;
}
.nationwide-title{
  font-weight:1000;
  margin-bottom:6px;
}
@media (max-width: 980px){
  .nationwide-grid{ grid-template-columns: 1fr; }
}


/* Honeypot anti-spam: nascosto */
.hp{
  position:absolute;
  left:-9999px;
  width:1px;
  height:1px;
  overflow:hidden;
}

.form-alert{
  padding:12px 14px;
  border-radius:14px;
  border:1px solid rgba(10,18,32,.12);
  margin-bottom:12px;
  background:#fff;
  box-shadow: 0 10px 24px rgba(10,18,32,.06);
}
.form-alert.ok{ border-color: rgba(27,189,91,.35); }
.form-alert.err{ border-color: rgba(220,53,69,.35); }

.card-icon img,
.nationwide-icon img{
width:22px;
height:22px;
display:block;
margin:auto;
}

.card-icon,
.nationwide-icon{
display:flex;
align-items:center;
justify-content:center;
background:#f0f5ff;
border-radius:10px;
}


/* Trust section */
.trust-wrap{
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px;
}
.trust-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:14px;
  flex-wrap:wrap;
  margin-bottom:14px;
}
.trust-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
  margin: 10px 0 16px;
}
.trust-card{
  background:#fff;
  border:1px solid rgba(10,18,32,.10);
  border-radius:14px;
  padding:14px;
}
.trust-ic{
  width:40px;
  height:40px;
  border-radius:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#f0f5ff;
  border:1px solid rgba(11,77,187,.16);
  margin-bottom:10px;
}
.trust-ic img{ width:22px; height:22px; display:block; }

.trust-title{ font-weight:1000; margin-bottom:6px; }

.trust-band{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  flex-wrap:wrap;
  padding-top:14px;
  border-top:1px solid rgba(10,18,32,.08);
}
.trust-band-left{
  display:flex;
  gap:18px;
  flex-wrap:wrap;
}
.trust-band-kpi .k{
  display:block;
  font-weight:1100;
  color: var(--primary-2);
  letter-spacing:-.2px;
}
.trust-band-kpi .l{
  display:block;
  font-size:12px;
  color: var(--muted);
}

@media (max-width: 980px){
  .trust-grid{ grid-template-columns: 1fr; }
}

.faq-item{
margin-bottom:20px;
padding-bottom:15px;
border-bottom:1px solid #e6e6e6;
}
.faq-item h3{
font-size:18px;
margin-bottom:6px;
}

/* FAQ readability improvement */
.faq-item{
background:#ffffff;
border:1px solid rgba(11,77,187,.18);
border-radius:12px;
padding:18px;
margin-bottom:18px;
box-shadow:0 6px 14px rgba(0,0,0,.05);
}

.faq-item h3{
color:#0b4dbb;
font-size:18px;
font-weight:700;
margin-bottom:8px;
}

.faq-item p{
color:#111111;
font-size:15px;
line-height:1.6;
}

.content-card h2{
margin-bottom:22px;
}

.sedi-block{
margin-top:20px;
padding-top:10px;
font-size:14px;
color:#111;
line-height:1.6;
}


/* Footer addresses */
.sedi-block-footer{
  margin-top:14px;
  font-size:12px;
  line-height:1.45;
  color:#e9eefb;
  opacity:.92;
}
.sedi-block-footer strong{ opacity:1; }

/* Maps */
.maps-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:14px;
}
.map-card{
  background:var(--panel);
  border:1px solid var(--border);
  border-radius:var(--radius);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.map-head{
  padding:16px 16px 10px;
}
.map-title{
  font-weight:1100;
  margin-bottom:6px;
}
.map-iframe{
  width:100%;
  height:300px;
  border:0;
}
@media (max-width: 980px){
  .maps-grid{ grid-template-columns: 1fr; }
  .map-iframe{ height:260px; }
}

/* Reviews band */
.reviews-band{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
  margin: 10px 0 16px;
  padding:12px 14px;
  border-radius:14px;
  background: rgba(11,77,187,.06);
  border:1px solid rgba(11,77,187,.14);
}
.reviews-left{ display:flex; align-items:center; gap:10px; }
.reviews-stars{ font-weight:1100; letter-spacing:1px; color: var(--primary-2); }
.reviews-text{ color:#33405a; font-size:13px; font-weight:800; }


/* Reviews cards */
.reviews-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:14px;
}
.reviews-card{
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding:16px;
}
.reviews-title{
  font-weight:1100;
  margin-bottom:8px;
}
.reviews-meta{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
  margin-bottom:12px;
}
.reviews-stars{
  letter-spacing:1px;
  color: var(--primary-2);
  font-weight:1100;
}
.reviews-score{
  font-weight:1100;
  color:#1c2740;
}
.reviews-count{
  color: var(--muted);
  font-weight:800;
  font-size:13px;
}
@media (max-width: 980px){
  .reviews-grid{ grid-template-columns: 1fr; }
}


/* Google style stars */
.reviews-stars{
  display:flex;
  gap:2px;
  font-size:18px;
  color:#fbbc04; /* Google star color */
  letter-spacing:2px;
}

.reviews-stars::before{
  content:"★★★★★";
}

.reviews-score{
  font-weight:900;
  font-size:18px;
}

.reviews-count{
  font-size:14px;
  color:#444;
}

.reviews-card .btn{
  margin-top:6px;
}

/* Maps layout hardening */
.maps-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:14px;
}
.map-card{
  background:var(--panel);
  border:1px solid var(--border);
  border-radius:var(--radius);
  box-shadow: var(--shadow);
  overflow:hidden;
  min-height: 360px;
  display:flex;
  flex-direction:column;
}
.map-head{ padding:16px 16px 10px; }
.map-iframe{
  width:100%;
  flex:1;
  min-height:300px;
  border:0;
}
@media (max-width: 980px){
  .maps-grid{ grid-template-columns: 1fr; }
  .map-card{ min-height: 320px; }
  .map-iframe{ min-height:260px; }
}
