
.smhm-wrap{
  position:relative;
  width:100%;
  min-height:560px;
  border-radius:var(--smhm-radius);
  overflow:hidden;
  color:#fff;
  font: inherit;
  margin: 0 auto;
}
.smhm-inner{
  position:relative;
  z-index:2;
  max-width:var(--smhm-maxw);
  margin:0 auto;
  padding: clamp(22px, 3.4vw, 44px);
}
.smhm-bg{
  position:absolute;inset:0;
  background-size:cover;background-position:center;
  transform: scale(1.02);
}
.smhm-overlay{
  position:absolute;inset:0;
  background: rgba(6, 18, 28, var(--smhm-overlay));
  z-index:1;
}
.smhm-grid{
  display:grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: clamp(18px, 3vw, 36px);
  align-items:center;
}
.smhm-grid--solo{grid-template-columns: 1fr;}
.smhm-left{max-width:720px;text-align:left;}
.smhm-pill{
  display:inline-flex;gap:10px;align-items:center;
  background: rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: .2px;
  backdrop-filter: blur(6px);
}
.smhm-dot{
  width:10px;height:10px;border-radius:50%;
  background: var(--smhm-accent);
  box-shadow: 0 0 0 5px rgba(251,191,36,.18);
}
.smhm-h1{
  margin: 16px 0 10px;
  line-height: 1.03;
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: clamp(40px, 4.7vw, 72px);
}
.smhm-h1a{display:block;color:#fff}
.smhm-city{
  display:block;
  color: var(--smhm-accent);
  text-shadow: 0 12px 30px rgba(0,0,0,.35);
}
.smhm-h2{
  font-size: clamp(18px, 2vw, 28px);
  font-weight: 800;
  margin: 0 0 10px;
}
.smhm-p{
  opacity: .92;
  max-width: 56ch;
  line-height: 1.55;
  font-size: 16px;
}
.smhm-bullets{
  list-style:none;
  padding:0;margin: 18px 0 18px;
  display:flex;flex-direction:column;gap:12px;
}
.smhm-bullets li{display:flex;gap:12px;align-items:flex-start;}
.smhm-check{
  width:22px;height:22px;border-radius:999px;
  background: rgba(16,185,129,.18);
  border: 1px solid rgba(16,185,129,.5);
  position:relative;flex:0 0 22px;
}
.smhm-check:after{
  content:"";
  position:absolute;left:6px;top:4px;
  width:7px;height:11px;
  border-right:2px solid #10b981;
  border-bottom:2px solid #10b981;
  transform: rotate(40deg);
}
.smhm-ctas{display:flex;gap:14px;flex-wrap:wrap;margin-top: 6px;margin-bottom: 24px;justify-content:flex-start;}
.smhm-btn{
  display:inline-flex;align-items:center;gap:10px;
  text-decoration:none;
  border-radius: 10px;
  padding: 6px 10px;
  font-weight: 800;
  border: 1px solid rgba(255,255,255,0.18);
  transition: transform .15s ease, filter .15s ease, background .15s ease;
}
.smhm-btn:hover{transform: translateY(-1px); filter: brightness(1.03);}
.smhm-btn--primary{
  background: var(--smhm-accent);
  color: #08131b;
  border-color: rgba(0,0,0,0.12);
  box-shadow: 0 12px 26px rgba(0,0,0,.25);
}
.smhm-btn--ghost{
  background: rgba(0,0,0,0.22);
  color:#fff;
  backdrop-filter: blur(6px);
}
.smhm-btn-ico{display:inline-flex;align-items:center;justify-content:center}

.smhm-badges{display:flex;gap:18px;flex-wrap:wrap;margin-top: 6px;opacity:.92;font-size:14px;justify-content:flex-start;}
.smhm-badge{display:inline-flex;gap:8px;align-items:center}
.smhm-badge-ico{opacity:.95}

.smhm-right{display:flex;justify-content:flex-start}
.smhm-card{
  width: 100%;
  max-width: 520px;
  border-radius: 16px;
  background: rgba(255,255,255,0.96);
  color: #0b1b27;
  box-shadow: 0 24px 60px rgba(0,0,0,.28);
  overflow:hidden;
  padding: 18px;
}

/* Form label styling for shortcode-rendered forms */
.smhm-card label {
  color: #0b2b3b;
  text-align: left;
  display: block;
}

@media (max-width: 980px){
  .smhm-wrap{min-height:auto;border-radius: 0;}
  .smhm-grid{grid-template-columns: 1fr}
  .smhm-right{justify-content:stretch}
  .smhm-card{max-width:none}
  .smhm-inner{padding: 22px 16px}
  .smhm-ctas{flex-direction: column;}
  .smhm-btn{width: 100%;justify-content: center;}
}
