/* HospitalSaas — public landing page (localhost/dee/) */

:root {
  --hs-green: #10b981;
  --hs-green-dark: #059669;
  --hs-green-darker: #047857;
  --hs-green-light: #d1fae5;
  --hs-navy: #111827;
  --hs-slate: #374151;
  --hs-muted: #6b7280;
  --hs-bg: #f9fafb;
  --hs-border: #e5e7eb;
  --hs-radius: 14px;
  --hs-shadow: 0 10px 40px rgba(17, 24, 39, 0.08);
  --hs-container: 1180px;
  --hs-font: 'Inter', 'Segoe UI', system-ui, sans-serif;
}

* { box-sizing: border-box; }

.hs-landing {
  font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
  color: var(--hs-navy);
  background: #fff;
  margin: 0;
  line-height: 1.6;
  overflow-x: hidden;
}

.hs-container {
  width: min(100% - 2rem, var(--hs-container));
  margin: 0 auto;
}

/* ── Nav ── */
.hs-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--hs-border);
  transition: box-shadow 0.2s;
}

.hs-nav.scrolled { box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06); }

.hs-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  gap: 1rem;
}

.hs-logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--hs-navy);
  font-weight: 800;
  font-size: 1.15rem;
}

.hs-logo__mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.hs-logo__mark img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  border-radius: 10px;
}

.hs-logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.hs-logo__text strong {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.hs-logo__tag {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--hs-muted);
  letter-spacing: 0.02em;
}

.hs-logo--footer,
.hs-logo--footer .hs-logo__text strong {
  color: #fff;
}

.hs-logo--footer .hs-logo__tag {
  color: rgba(255, 255, 255, 0.72);
}

.hs-logo__icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--hs-green), var(--hs-green-dark));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.hs-nav__links {
  display: none;
  align-items: center;
  gap: 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.hs-nav__links a {
  text-decoration: none;
  color: var(--hs-slate);
  font-weight: 600;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.hs-nav__links a:hover { color: var(--hs-green-dark); }

.hs-nav__actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.hs-nav__link-action {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 0.5rem;
  font-weight: 800;
  font-size: 0.88rem;
  color: var(--hs-text);
  text-decoration: none;
  transition: color 0.15s;
}

.hs-nav__link-action:hover {
  color: var(--hs-green-dark);
}

.hs-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.55rem 1.15rem;
  border-radius: 10px;
  font-weight: 800;
  font-size: 0.88rem;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s, color 0.15s;
}

.hs-btn:active { transform: scale(0.97); }

.hs-btn--primary {
  background: var(--hs-green);
  color: #fff;
  box-shadow: 0 4px 14px rgba(16, 185, 129, 0.35);
}

.hs-btn--primary:hover {
  background: var(--hs-green-dark);
  color: #fff;
}

.hs-btn--outline {
  background: #fff;
  color: var(--hs-green);
  border-color: var(--hs-green);
  font-weight: 800;
}

.hs-btn--outline:hover {
  background: var(--hs-green-light);
  color: var(--hs-green-dark);
  border-color: var(--hs-green-dark);
}

.hs-nav__actions .hs-btn--primary {
  font-weight: 800;
}

.hs-btn--white {
  background: #fff;
  color: var(--hs-green);
  font-weight: 800;
}

.hs-btn--lg { padding: 0.75rem 1.5rem; font-size: 0.95rem; }

.hs-btn--block { width: 100%; }

.hs-menu-toggle {
  display: flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--hs-border);
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
}

.hs-mobile-menu {
  display: none;
  padding: 1rem 0;
  border-top: 1px solid var(--hs-border);
}

.hs-mobile-menu.open { display: block; }

.hs-mobile-menu a {
  display: block;
  padding: 0.65rem 0;
  color: var(--hs-green);
  font-weight: 800;
  text-decoration: none;
}

.hs-mobile-menu a:hover { color: var(--hs-green-dark); }

@media (min-width: 992px) {
  .hs-nav__links { display: flex; }
  .hs-menu-toggle { display: none; }
  .hs-mobile-menu { display: none !important; }
}

/* ── Hero ── */
.hs-hero {
  padding: 6.5rem 0 3rem;
  background: linear-gradient(180deg, #f0fdf4 0%, #fff 55%);
}

.hs-hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

.hs-hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
}

.hs-hero__lead {
  color: var(--hs-muted);
  font-size: 1.05rem;
  max-width: 520px;
  margin-bottom: 1.5rem;
}

.hs-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.hs-hero__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.hs-stat {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--hs-green-darker);
}

.hs-stat i { font-size: 1rem; }

.hs-hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
}

.hs-hero__logo-showcase {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
  padding: 1.25rem;
}

.hs-hero__logo-glow {
  position: absolute;
  inset: 6%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(22, 163, 74, 0.22) 0%, rgba(59, 130, 246, 0.12) 45%, transparent 70%);
  filter: blur(8px);
}

.hs-hero__logo-img {
  position: relative;
  width: 300px;
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.hs-hero__main-img {
  border-radius: var(--hs-radius);
  overflow: hidden;
  box-shadow: var(--hs-shadow);
  margin-bottom: 0.75rem;
}

.hs-hero__main-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.hs-hero__thumb-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.hs-hero__thumb {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  position: relative;
}

.hs-hero__thumb img {
  width: 100%;
  height: 110px;
  object-fit: cover;
  display: block;
}

.hs-img-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.5rem 0.65rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.65));
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
}

.hs-float-card {
  position: absolute;
  background: #fff;
  border-radius: 12px;
  padding: 0.65rem 0.85rem;
  box-shadow: var(--hs-shadow);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 700;
}

.hs-float-card--support {
  right: -8px;
  bottom: 28%;
}

.hs-float-card__icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--hs-green-light);
  color: var(--hs-green-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 992px) {
  .hs-hero__grid { grid-template-columns: 1fr 1fr; }
  .hs-hero__stats { grid-template-columns: repeat(4, 1fr); }
  .hs-hero__main-img img { height: 280px; }
  .hs-hero__thumb img { height: 130px; }
  .hs-hero__logo-img { width: 320px; }
}

/* ── Sections ── */
.hs-section {
  padding: 4rem 0;
}

.hs-section--gray { background: var(--hs-bg); }

.hs-section__head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 2.5rem;
}

.hs-section__head h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  margin: 0 0 0.75rem;
}

.hs-section__head p {
  color: var(--hs-muted);
  margin: 0;
}

.hs-grid-4 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.hs-grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .hs-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .hs-grid-3 { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 992px) {
  .hs-grid-4 { grid-template-columns: repeat(4, 1fr); }
}

.hs-card {
  background: #fff;
  border: 1px solid var(--hs-border);
  border-radius: var(--hs-radius);
  padding: 1.35rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  transition: transform 0.2s, box-shadow 0.2s;
}

.hs-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--hs-shadow);
}

.hs-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--hs-green-light);
  color: var(--hs-green-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.hs-card h3 {
  font-size: 1rem;
  font-weight: 800;
  margin: 0 0 0.5rem;
}

.hs-card p {
  margin: 0;
  color: var(--hs-muted);
  font-size: 0.9rem;
}

/* Stats bar */
.hs-stats-bar {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
  padding: 1.5rem;
  background: #fff;
  border-radius: var(--hs-radius);
  border: 1px solid var(--hs-border);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.hs-stats-bar__item {
  text-align: center;
}

.hs-stats-bar__item strong {
  display: block;
  font-size: 1.35rem;
  color: var(--hs-green-dark);
}

.hs-stats-bar__item span {
  font-size: 0.82rem;
  color: var(--hs-muted);
  font-weight: 600;
}

@media (min-width: 768px) {
  .hs-stats-bar { grid-template-columns: repeat(4, 1fr); }
}

/* Why choose */
.hs-why {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

.hs-checklist {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.hs-check {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  font-weight: 600;
  font-size: 0.92rem;
}

.hs-check i {
  color: var(--hs-green);
  margin-top: 0.15rem;
}

.hs-why__img {
  border-radius: var(--hs-radius);
  overflow: hidden;
  box-shadow: var(--hs-shadow);
  position: relative;
}

.hs-why__img--illustration {
  background: linear-gradient(145deg, #f8fafc 0%, #f0fdf4 55%, #eff6ff 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  min-height: 320px;
}

.hs-why__illustration {
  width: 100%;
  height: auto;
  max-height: 360px;
  object-fit: contain;
  display: block;
}

.hs-why__img--logo {
  background: #0a0a0a;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  min-height: 280px;
}

.hs-why__logo-img {
  width: 100%;
  max-width: 280px;
  height: auto;
  object-fit: contain;
}

.hs-why__img img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

.hs-why__img--illustration img.hs-why__illustration {
  width: 100%;
  height: auto;
  max-height: 360px;
  object-fit: contain;
}

.hs-why__img--logo img.hs-why__logo-img {
  width: auto;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.hs-why__badge {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  right: 1rem;
  background: var(--hs-green);
  color: #fff;
  padding: 0.85rem 1rem;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.9rem;
}

@media (min-width: 992px) {
  .hs-why { grid-template-columns: 1fr 1fr; }
  .hs-checklist { grid-template-columns: 1fr 1fr; }
}

/* Pricing */
.hs-pricing-toggle {
  display: inline-flex;
  background: #e5e7eb;
  border-radius: 999px;
  padding: 4px;
  margin-bottom: 2rem;
}

.hs-pricing-toggle button {
  border: none;
  background: transparent;
  padding: 0.45rem 1.1rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  color: var(--hs-slate);
}

.hs-pricing-toggle button.active {
  background: var(--hs-green);
  color: #fff;
}

.hs-price-card {
  position: relative;
  text-align: center;
}

.hs-price-card.popular {
  border-color: var(--hs-green);
  box-shadow: 0 12px 40px rgba(16, 185, 129, 0.15);
  transform: scale(1.02);
}

.hs-price-card__ribbon {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--hs-green);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.25rem 0.85rem;
  border-radius: 999px;
  text-transform: uppercase;
}

.hs-price-card__amount {
  font-size: 2rem;
  font-weight: 800;
  color: var(--hs-navy);
  margin: 0.5rem 0;
}

.hs-price-card ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0 1.25rem;
  text-align: left;
  font-size: 0.88rem;
}

.hs-price-card li {
  padding: 0.35rem 0;
  color: var(--hs-slate);
}

.hs-price-card li i { color: var(--hs-green); margin-right: 0.4rem; }

.text1 { display: none; }

/* Testimonials */
.hs-testimonial {
  text-align: center;
}

.hs-logo--mark-only .hs-logo__text {
  display: none;
}

.hs-testimonial__avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  margin: 0 auto 0.75rem;
  background: linear-gradient(135deg, var(--hs-green), var(--hs-green-darker));
  color: #fff;
  font-size: 1.35rem;
}

.hs-testimonial img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 0.75rem;
}

.hs-stars { color: #fbbf24; margin-bottom: 0.5rem; }

/* CTA */
.hs-cta {
  background: linear-gradient(135deg, var(--hs-green), var(--hs-green-darker));
  color: #fff;
  border-radius: var(--hs-radius);
  padding: 2.5rem 2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin: 2rem 0;
}

.hs-cta h2 {
  margin: 0 0 0.35rem;
  font-size: 1.5rem;
}

.hs-cta p { margin: 0; opacity: 0.9; }

/* FAQ */
.hs-faq-item {
  border: 1px solid var(--hs-border);
  border-radius: 12px;
  margin-bottom: 0.65rem;
  overflow: hidden;
  background: #fff;
}

.hs-faq-q {
  width: 100%;
  text-align: left;
  padding: 1rem 1.1rem;
  border: none;
  background: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.hs-faq-a {
  display: none;
  padding: 0 1.1rem 1rem;
  color: var(--hs-muted);
  font-size: 0.9rem;
}

.hs-faq-item.open .hs-faq-a { display: block; }

.hs-faq-item.open .hs-faq-q i { transform: rotate(45deg); }

/* Contact cards */
.hs-contact-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}

.hs-contact-card {
  background: linear-gradient(135deg, #0f766e, #047857);
  color: #fff;
  border-radius: 12px;
  padding: 1.25rem;
  text-align: center;
}

.hs-contact-card i { font-size: 1.5rem; margin-bottom: 0.5rem; }

@media (min-width: 768px) {
  .hs-contact-cards { grid-template-columns: repeat(3, 1fr); }
}

/* Register form */
.hs-register {
  background: linear-gradient(135deg, #ecfdf5, #f0fdf4);
  border-radius: var(--hs-radius);
  padding: 2rem;
  border: 1px solid #bbf7d0;
}

.hs-form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

.hs-form-grid input,
.hs-form-grid select,
.hs-form-grid textarea {
  width: 100%;
  padding: 0.65rem 0.85rem;
  border: 1px solid var(--hs-border);
  border-radius: 10px;
  font-size: 0.9rem;
}

.hs-form-grid input:focus,
.hs-form-grid select:focus,
.hs-form-grid textarea:focus {
  outline: none;
  border-color: var(--hs-green);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2);
}

@media (min-width: 768px) {
  .hs-form-grid { grid-template-columns: 1fr 1fr; }
  .hs-form-grid .full { grid-column: 1 / -1; }
}

/* Footer */
.hs-footer {
  background: var(--hs-navy);
  color: #9ca3af;
  padding: 3rem 0 1.5rem;
}

.hs-footer h4 {
  color: #fff;
  font-size: 0.95rem;
  margin: 0 0 1rem;
}

.hs-footer a {
  color: #9ca3af;
  text-decoration: none;
  font-size: 0.88rem;
  display: block;
  padding: 0.2rem 0;
}

.hs-footer a:hover { color: #fff; }

.hs-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .hs-footer__grid { grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr; }
}

.hs-footer__newsletter {
  display: flex;
  margin-top: 0.5rem;
}

.hs-footer__newsletter input {
  flex: 1;
  border: none;
  border-radius: 8px 0 0 8px;
  padding: 0.55rem 0.75rem;
}

.hs-footer__newsletter button {
  border: none;
  background: var(--hs-green);
  color: #fff;
  padding: 0 1rem;
  border-radius: 0 8px 8px 0;
  cursor: pointer;
}

.hs-footer__bottom {
  border-top: 1px solid #374151;
  margin-top: 2rem;
  padding-top: 1rem;
  text-align: center;
  font-size: 0.82rem;
}

.hs-chat-fab {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  background: var(--hs-green);
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 0.75rem 1.25rem;
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 0.01em;
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.45);
  cursor: pointer;
  z-index: 999;
  transition: background 0.2s, box-shadow 0.2s;
}

.hs-chat-fab:hover {
  background: var(--hs-green-dark);
  box-shadow: 0 10px 28px rgba(5, 150, 105, 0.5);
}

.hs-scroll-top {
  position: fixed;
  bottom: 4.5rem;
  right: 1.25rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--hs-green);
  color: #fff;
  border: none;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s, background 0.2s;
  z-index: 998;
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

.hs-scroll-top:hover { background: var(--hs-green-dark); }

.hs-scroll-top.visible {
  opacity: 1;
  pointer-events: auto;
}

/* Medical Assistance — landing section */
.hs-ma-search {
  max-width: 720px;
  margin: 0 auto 2rem;
}

.hs-ma-search__row {
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.hs-ma-search__row input[type="search"] {
  flex: 1;
  min-width: 220px;
  border: 1px solid var(--hs-border);
  border-radius: 12px;
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
}

.hs-ma-search__hint {
  margin: 0.5rem 0 0;
  font-size: 0.82rem;
  color: var(--hs-muted);
  text-align: center;
}

.hs-ma-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}

.hs-ma-card {
  background: #fff;
  border: 1px solid var(--hs-border);
  border-radius: var(--hs-radius);
  padding: 1.25rem;
  box-shadow: var(--hs-shadow);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.hs-ma-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  align-self: flex-start;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--hs-green-dark);
  background: var(--hs-green-light);
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
}

.hs-ma-card h3 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 800;
}

.hs-ma-card__hospital {
  margin: 0;
  font-size: 0.85rem;
  color: var(--hs-muted);
  font-weight: 600;
}

.hs-ma-card__condition {
  margin: 0;
  font-size: 0.88rem;
  color: var(--hs-slate);
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}

.hs-ma-card__progress {
  height: 8px;
  background: #e5e7eb;
  border-radius: 999px;
  overflow: hidden;
}

.hs-ma-card__progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--hs-green), var(--hs-green-dark));
  border-radius: 999px;
}

.hs-ma-card__raised {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--hs-green-dark);
}

.hs-ma-more {
  text-align: center;
  margin-top: 1.75rem;
}

.hs-ma-empty {
  text-align: center;
  color: var(--hs-muted);
  padding: 2rem 1rem;
}

.hs-ma-results {
  margin-bottom: 2rem;
}

.hs-ma-results__title {
  font-size: 1rem;
  margin: 0 0 1rem;
  color: var(--hs-slate);
}

@media (max-width: 640px) {
  .hs-ma-search__row {
    flex-direction: column;
  }
  .hs-ma-search__row .hs-btn {
    width: 100%;
  }
}
