/* =============================================
   HIGH-RISK STATE SECTION
   ============================================= */

#ss-high-risk {
  width: 100%;
  background: #faf9f6;
  padding: 70px 20px 80px;
  text-align: center;
  font-family: 'Lato', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

#ss-high-risk .ss-hr-inner {
  max-width: 800px;
  margin: 0 auto;
}

#ss-high-risk h2 {
  font-family: 'Lato', 'Helvetica Neue', sans-serif;
  font-size: clamp(26px, 3.5vw, 36px);
  font-weight: 900;
  color: #1B463C;
  line-height: 1.25;
  margin: 0 0 16px 0;
  padding: 0;
}

#ss-high-risk .ss-hr-desc {
  font-size: 16px;
  color: #777;
  line-height: 1.7;
  margin: 0 auto 32px auto;
  max-width: 620px;
  font-weight: 400;
}

#ss-high-risk .ss-hr-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 36px;
}

#ss-high-risk .ss-hr-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 50px;
  padding: 10px 22px;
  font-size: 14px;
  font-weight: 700;
  color: #2c2c2c;
  white-space: nowrap;
}

#ss-high-risk .ss-hr-pill .pill-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #F68B1E;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

#ss-high-risk .ss-hr-pill .pill-icon svg {
  width: 10px;
  height: 10px;
  stroke: #F68B1E;
}

#ss-high-risk .ss-hr-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #F68B1E;
  color: #fff;
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  font-weight: 700;
  padding: 16px 36px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 4px 15px rgba(246, 139, 30, 0.3);
}

#ss-high-risk .ss-hr-cta:hover {
  background: #e07d15;
  box-shadow: 0 6px 20px rgba(246, 139, 30, 0.4);
}

#ss-high-risk .ss-hr-cta svg {
  width: 16px;
  height: 16px;
}

@media (max-width: 600px) {
  #ss-high-risk { padding: 50px 16px 60px; }
  #ss-high-risk .ss-hr-pills { gap: 8px; }
  #ss-high-risk .ss-hr-pill { padding: 8px 16px; font-size: 13px; }
}


/* =============================================
   READY TO ENJOY YOUR YARD CTA SECTION
   ============================================= */

#ss-yard-cta {
  width: 100%;
  background: #1B463C;
  padding: 70px 20px 80px;
  text-align: center;
  font-family: 'Lato', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  position: relative;
  overflow: hidden;
}

#ss-yard-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: #F68B1E;
}

#ss-yard-cta .ss-yc-inner {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

#ss-yard-cta h2 {
  font-family: 'Lato', 'Helvetica Neue', sans-serif;
  font-size: clamp(26px, 3.5vw, 36px);
  font-weight: 900;
  color: #ffffff;
  line-height: 1.25;
  margin: 0 0 12px 0;
  padding: 0;
}

#ss-yard-cta .ss-yc-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  margin: 0 0 36px 0;
  font-weight: 400;
}

#ss-yard-cta .ss-yc-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

#ss-yard-cta .ss-yc-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #F68B1E;
  color: #fff;
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  font-weight: 700;
  padding: 16px 36px;
  border: 2px solid #F68B1E;
  border-radius: 50px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 4px 15px rgba(246, 139, 30, 0.3);
}

#ss-yard-cta .ss-yc-btn-primary:hover {
  background: #e07d15;
  border-color: #e07d15;
  box-shadow: 0 6px 20px rgba(246, 139, 30, 0.4);
}

#ss-yard-cta .ss-yc-btn-primary svg {
  width: 16px;
  height: 16px;
}

#ss-yard-cta .ss-yc-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: #fff;
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  font-weight: 700;
  padding: 16px 36px;
  border: 2px solid rgba(255,255,255,0.35);
  border-radius: 50px;
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.25s ease, background 0.25s ease;
}

#ss-yard-cta .ss-yc-btn-secondary:hover {
  border-color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.05);
}

#ss-yard-cta .ss-yc-btn-secondary svg {
  width: 18px;
  height: 18px;
}

@media (max-width: 600px) {
  #ss-yard-cta { padding: 50px 16px 60px; }
  #ss-yard-cta .ss-yc-buttons { flex-direction: column; align-items: center; }
  #ss-yard-cta .ss-yc-btn-primary,
  #ss-yard-cta .ss-yc-btn-secondary { width: 100%; max-width: 320px; justify-content: center; }
}
