body.landing-redesign {
  background: #fff;
  color: #0b1220;
}

body.landing-redesign #sprog,
body.landing-redesign .fab,
body.landing-redesign #main > :not(.seo-landing):not(footer) {
  display: none !important;
}

body.landing-redesign #main {
  background: #fff;
}

.seo-landing {
  width: min(100%, 1360px);
  margin: 0 auto;
  padding: 82px 22px 40px;
  overflow: hidden;
  background: #fff;
}

.landing-hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 520px;
  padding: 10px 0 20px;
  border-bottom: 1px solid #e8edf0;
}

.landing-hero::before {
  display: none;
}

.landing-hero-copy {
  position: relative;
  z-index: 2;
  max-width: 540px;
}

.landing-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 22px;
  color: #07864f;
  font-size: .72rem;
  font-weight: 850;
  line-height: 1;
  text-transform: uppercase;
}

.landing-kicker::before {
  content: "";
  width: 18px;
  height: 18px;
  border: 2px solid #d8a21a;
  border-radius: 999px;
}

.landing-kicker .kicker-icon {
  display: none;
}

.landing-hero h1 {
  max-width: 460px;
  margin: 0;
  font-size: clamp(2.15rem, 3.55vw, 3.05rem);
  letter-spacing: 0;
}

.landing-title-sub {
  display: block;
  font-size: 0.46em;
  font-weight: 600;
  color: #475467;
  margin-bottom: 6px;
  line-height: 1.25;
}

.landing-title-main {
  display: block;
  color: #078f56;
  font-size: 1.08em;
  font-weight: 850;
  line-height: 1.1;
}

.landing-hero h1::after,
.section-heading h2::after {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  margin-top: 20px;
  border-radius: 999px;
  background: #d49a08;
}

.landing-lead {
  max-width: 430px;
  margin: 18px 0 0;
  color: #344154;
  font-size: .92rem;
  line-height: 1.7;
  text-align: justify;
}

.landing-actions {
  display: flex;
  margin-top: 22px;
}

.landing-primary {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 8px;
  padding: 0 18px;
  color: #fff;
  background: #07975a;
  box-shadow: 0 16px 30px rgba(7, 151, 90, .22);
  font-size: .86rem;
  font-weight: 850;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.landing-primary:hover {
  transform: translateY(-1px);
  background: #07864f;
  box-shadow: 0 18px 34px rgba(7, 151, 90, .26);
}

.landing-route {
  margin: 10px 0 0;
  color: #657081;
  font-size: .76rem;
  font-weight: 750;
}

.landing-privacy {
  margin: 28px 0 0;
  color: #101827;
  font-size: .82rem;
  font-weight: 850;
}

.landing-hero-visual {
  position: absolute;
  top: 0;
  right: -22px;
  bottom: 0;
  left: 0;
  z-index: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  pointer-events: none;
  overflow: visible;
}

.hero-main-visual {
  width: 100%;
  max-width: 920px;
  height: 100%;
  max-height: 500px;
  object-fit: contain;
  object-position: right center;
  z-index: 1;
  border-radius: 16px;
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: block;
  animation: float-hero 6s ease-in-out infinite alternate;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 25%);
  mask-image: linear-gradient(to right, transparent 0%, black 25%);
}

.hero-main-visual:hover {
  transform: translateY(-8px) scale(1.01);
}

@keyframes float-hero {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-10px);
  }
}

/* Standalone Form Section */
.form-section {
  padding: 32px 0;
  background: #ffffff;
}

.form-container {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 22px;
}

.need-form-card {
  position: relative;
  background: #ffffff;
  border: 1px solid rgba(7, 143, 86, 0.12);
  border-radius: 20px;
  padding: 36px 40px;
  box-shadow: 0 20px 50px rgba(7, 143, 86, 0.08), 0 4px 12px rgba(0, 0, 0, 0.02);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.need-form-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 60px rgba(7, 143, 86, 0.14), 0 6px 16px rgba(0, 0, 0, 0.03);
}

.need-form-card h2 {
  margin: 0 0 8px;
  color: #078f56;
  font-size: 1.45rem;
  font-weight: 850;
  text-align: center;
}

.need-form-card p.form-intro {
  margin: 0 0 24px;
  color: #4a5566;
  font-size: .88rem;
  line-height: 1.55;
  font-weight: 600;
  text-align: center;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 16px;
}

.need-form-card .need-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
  text-align: left;
}

.need-form-card .need-field label {
  display: block;
  margin-bottom: 4px;
  color: #101827;
  font-size: .78rem;
  font-weight: 850;
}

.need-form-card .need-field input {
  width: 100%;
  min-width: 0;
  min-height: 42px;
  border: 1.5px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  padding: 0 14px;
  background: #fff;
  color: #2f3a49;
  font-family: inherit;
  font-size: .88rem;
  font-weight: 650;
  outline: none;
  box-shadow: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.need-form-card .need-field input::placeholder {
  color: #9ca3af;
}

.need-form-card .need-field input:hover {
  border-color: rgba(7, 143, 86, 0.3);
}

.need-form-card .need-field input:focus {
  border-color: #078f56;
  box-shadow: 0 0 0 4px rgba(7, 143, 86, 0.1);
}

.need-form-card .need-field.opt-field {
  margin-bottom: 24px;
}

.need-form-card button {
  width: 100%;
  min-height: 46px;
  margin-top: 8px;
  border: 0;
  border-radius: 8px;
  color: #fff;
  background: #07975a;
  font: inherit;
  font-size: .9rem;
  font-weight: 850;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
}

.need-form-card button:hover {
  background: #06814d;
}

.need-form-card button:active {
  transform: scale(0.995);
}

.need-form-card .need-status {
  margin-top: 14px;
  font-size: 0.86rem;
  line-height: 1.5;
  font-weight: 600;
}

.need-form-card .card-security {
  display: flex;
  gap: 8px;
  margin-top: 20px;
  color: #4f5b6b;
  font-size: .72rem;
  line-height: 1.4;
  padding-top: 16px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.landing-impact {
  position: relative;
  padding: 24px 0;
}

.section-heading {
  text-align: center;
}

.section-heading h2 {
  margin: 0;
  color: #091121;
  font-size: clamp(1.75rem, 3vw, 2.45rem);
  font-weight: 850;
  line-height: 1.14;
  letter-spacing: 0;
}

.section-heading h2::after {
  margin: 16px auto 0;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 24px;
  position: relative;
  z-index: 2;
}

.step-card {
  background: #ffffff;
  border: 1px solid rgba(7, 143, 86, 0.08);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
}

.step-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(7, 143, 86, 0.08);
  border-color: rgba(7, 143, 86, 0.2);
}

.step-img-container {
  width: 100%;
  height: 140px;
  border-radius: 12px;
  overflow: hidden;
  background: #ffffff;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-img-container img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
  transition: transform 0.5s ease;
}

.step-card:hover .step-img-container img {
  transform: scale(1.06);
}

.step-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.step-number {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: #078f56;
  font-size: .78rem;
  font-weight: 850;
  box-shadow: 0 10px 22px rgba(7, 143, 86, .18);
  flex-shrink: 0;
}

.step-card h3 {
  margin: 0;
  color: #091121;
  font-size: 1.05rem;
  font-weight: 750;
  line-height: 1.3;
}

.step-card p {
  margin: 0;
  color: #4f5b6b;
  font-size: 0.82rem;
  line-height: 1.6;
}

.privacy-panel {
  margin: 12px auto 24px;
  border: 1px solid rgba(7, 143, 86, .16);
  border-radius: 8px;
  padding: 24px;
  background: linear-gradient(135deg, #eefaf4 0%, #ffffff 72%);
}

.privacy-grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.privacy-grid article {
  min-height: 146px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  border-left: 1px dashed rgba(7, 143, 86, .28);
  padding: 0 22px;
  text-align: center;
}

.privacy-grid article:first-child {
  border-left: 0;
}

.privacy-icon-container {
  height: 72px;
  display: grid;
  place-items: center;
}

.privacy-svg {
  width: 24px;
  height: 24px;
}

.privacy-grid strong {
  display: block;
  color: #101827;
  font-size: .92rem;
  line-height: 1.2;
}

.privacy-grid strong::before {
  content: "";
  width: 56px;
  height: 56px;
  display: block;
  margin: -62px auto 16px;
  border-radius: 50%;
  border: 2px solid rgba(7, 143, 86, .22);
  background:
    linear-gradient(135deg, transparent 44%, #07975a 46%, #07975a 54%, transparent 56%),
    radial-gradient(circle at 50% 50%, rgba(7, 143, 86, .12), rgba(255, 255, 255, .95) 66%);
}

.privacy-grid span {
  max-width: 160px;
  margin: 8px auto 0;
  color: #4f5b6b;
  font-size: .74rem;
  line-height: 1.45;
}

/* Strategy Section Layout (Notre démarche) */
.strategy-section {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  padding: 40px 48px;
  background: #f3fbf7;
  border-radius: 24px;
  margin: 28px 0;
  align-items: center;
}

.strategy-kicker {
  display: block;
  font-size: 0.72rem;
  font-weight: 850;
  text-transform: uppercase;
  color: #07864f;
  margin-bottom: 12px;
  letter-spacing: 0.05em;
}

.strategy-left h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  font-weight: 850;
  color: #091121;
  line-height: 1.15;
  margin: 0 0 16px;
}

.strategy-left p {
  font-size: 0.94rem;
  line-height: 1.7;
  color: #4a5566;
  margin: 0 0 16px;
}

.strategy-left p:last-of-type {
  margin-bottom: 24px;
}

/* Timeline on the right */
.timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-left: 20px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 36px;
  top: 20px;
  bottom: 20px;
  width: 2px;
  background: rgba(7, 151, 90, 0.16);
  z-index: 1;
}

.timeline-item {
  position: relative;
  display: flex;
  gap: 20px;
  z-index: 2;
}

.timeline-number {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #078f56;
  color: #ffffff;
  display: grid;
  place-items: center;
  font-size: 0.86rem;
  font-weight: 800;
  box-shadow: 0 4px 10px rgba(7, 143, 86, 0.2);
  flex-shrink: 0;
}

.timeline-content h3 {
  margin: 0 0 6px;
  font-size: 1rem;
  font-weight: 750;
  color: #091121;
}

.timeline-content p {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.55;
  color: #6b7280;
}

/* Baromètre Section */
.barometer-section {
  padding: 32px 0;
  text-align: center;
}

.section-sub {
  color: #4f5b6b;
  font-size: 1rem;
  margin-top: 10px;
}

.barometer-box {
  max-width: 680px;
  margin: 24px auto 0;
  border: 1.5px dashed rgba(7, 143, 86, 0.25);
  border-radius: 20px;
  padding: 30px 40px;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  transition: border-color 0.3s ease;
}

.barometer-box:hover {
  border-color: rgba(7, 143, 86, 0.5);
}

.barometer-icon-container {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(7, 143, 86, 0.08);
  display: grid;
  place-items: center;
}

.barometer-box h3 {
  font-size: 1.15rem;
  font-weight: 750;
  color: #091121;
  margin: 0;
}

.barometer-box p {
  font-size: 0.88rem;
  line-height: 1.6;
  color: #6b7280;
  margin: 0 0 10px;
}

/* Professionnels de santé Section */
.professionals-section {
  padding: 32px 0 48px;
}

.professionals-section .kicker {
  display: block;
  font-size: 0.72rem;
  font-weight: 850;
  text-transform: uppercase;
  color: #07864f;
  margin-bottom: 8px;
  letter-spacing: 0.05em;
}

.professionals-section h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 850;
  color: #091121;
  margin: 0;
}

.professionals-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 24px;
}

.pro-card {
  border-radius: 20px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  min-height: 240px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pro-card-green {
  background: #078f56;
  color: #ffffff;
  box-shadow: 0 12px 30px rgba(7, 143, 86, 0.16);
}

.pro-card-green h3 {
  color: #ffffff;
  font-size: 1.3rem;
  font-weight: 750;
  margin: 0;
}

.pro-card-green p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.92rem;
  line-height: 1.65;
  margin: 0;
}

.pro-card-green .pro-link {
  align-self: flex-start;
  background: #ffffff;
  color: #078f56;
  padding: 12px 24px;
  border-radius: 10px;
  font-weight: 800;
  font-size: 0.88rem;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.pro-card-green .pro-link:hover {
  background: #f0fdf4;
  transform: translateX(4px);
}

.pro-card-white {
  background: #f8faf9;
  border: 1px solid rgba(7, 143, 86, 0.08);
  color: #091121;
}

.pro-card-white h3 {
  color: #091121;
  font-size: 1.3rem;
  font-weight: 750;
  margin: 0;
}

.pro-card-white p {
  color: #4f5b6b;
  font-size: 0.92rem;
  line-height: 1.65;
  margin: 0;
}

.pro-card-white .pro-link {
  align-self: flex-start;
  background: transparent;
  color: #078f56;
  border: 1.5px solid #078f56;
  padding: 12px 24px;
  border-radius: 10px;
  font-weight: 800;
  font-size: 0.88rem;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.pro-card-white .pro-link:hover {
  background: rgba(7, 143, 86, 0.04);
  transform: translateX(4px);
}

.pro-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

/* Secondary Button and Actions spacing */
.landing-actions {
  display: flex;
  gap: 12px;
  margin-top: 22px;
  flex-wrap: wrap;
}

.landing-secondary {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 0 18px;
  color: #07975a;
  background: #ffffff;
  border: 1.5px solid #07975a;
  font-size: .86rem;
  font-weight: 850;
  text-decoration: none;
  transition: transform .18s ease, background .18s ease, color .18s ease;
}

.landing-secondary:hover {
  transform: translateY(-1px);
  background: #f0fdf4;
}

@media (max-width: 1100px) {
  .seo-landing {
    width: min(100%, 980px);
  }

  .landing-hero {
    min-height: 480px;
  }

  .landing-hero-copy {
    max-width: 500px;
  }

  .hero-main-visual {
    max-width: 780px;
    max-height: 440px;
  }
}

@media (max-width: 900px) {
  .seo-landing {
    padding: 84px 18px 44px;
  }

  .landing-hero {
    flex-direction: column;
    align-items: flex-start;
    min-height: auto;
    padding: 20px 0;
  }

  .landing-hero-copy {
    max-width: 100%;
    margin-bottom: 24px;
  }

  .landing-hero h1,
  .landing-lead {
    max-width: 100%;
  }

  .landing-hero-visual {
    position: relative;
    right: auto;
    left: auto;
    width: 100%;
    height: auto;
    min-height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .hero-main-visual {
    width: 100%;
    height: auto;
    max-height: 320px;
    object-position: center;
    -webkit-mask-image: none;
    mask-image: none;
  }



  .impact-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .step-card {
    padding: 16px;
  }

  .step-img-container {
    height: 120px;
    margin-bottom: 12px;
  }

  .step-card h3 {
    font-size: 0.95rem;
  }

  .step-card p {
    font-size: 0.78rem;
  }

  .privacy-panel {
    padding: 30px 20px 34px;
  }

  .privacy-grid {
    grid-template-columns: 1fr 1fr;
    gap: 26px 0;
  }

  .privacy-grid article:nth-child(odd) {
    border-left: 0;
  }

  .strategy-section {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 40px 24px;
  }

  .timeline {
    padding-left: 0;
  }

  .timeline::before {
    left: 16px;
  }

  .professionals-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 24px;
  }
}

@media (max-width: 680px) {
  .seo-landing {
    padding: 82px 14px 34px;
  }

  .landing-hero {
    padding-bottom: 24px;
  }

  .landing-hero h1 {
    font-size: clamp(2.1rem, 11vw, 3rem);
  }

  .landing-actions {
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }

  .landing-primary,
  .landing-secondary {
    width: 100%;
    justify-content: center;
  }

  .landing-privacy {
    line-height: 1.45;
  }

  .landing-impact {
    padding-top: 30px;
  }

  .landing-hero-visual {
    min-height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .hero-visual-bg {
    display: none;
  }

  .hero-main-visual {
    display: block;
    height: auto;
    max-height: 240px;
    margin-top: 12px;
  }

  .need-form-card {
    padding: 24px 20px;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .impact-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .step-card {
    padding: 20px;
  }

  .step-img-container {
    height: 150px;
  }

  .privacy-grid {
    grid-template-columns: 1fr;
  }

  .privacy-grid article {
    border-left: 0;
    border-top: 1px dashed rgba(7, 143, 86, .28);
  }

  .privacy-grid article:first-child {
    border-top: 0;
  }

  .strategy-section {
    padding: 30px 16px;
  }

  .pro-card {
    padding: 24px;
    min-height: auto;
  }
}

/* Barometer Active Metrics State */
.barometer-metrics {
  max-width: 920px;
  margin: 28px auto 0;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.barometer-metrics .metric-card {
  position: relative;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(7, 143, 86, 0.10);
  border-radius: 16px;
  min-height: 116px;
  padding: 22px 22px 20px 96px;
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.035);
  text-align: left;
  transition: transform 0.3s ease;
}

.barometer-metrics .metric-card::after {
  content: "";
  position: absolute;
  inset: auto -26px -34px auto;
  width: 96px;
  height: 96px;
  border-radius: 999px;
  background: rgba(7, 143, 86, 0.045);
}

.barometer-metrics .metric-card:nth-child(2) {
  border-color: rgba(37, 99, 235, 0.16);
}

.barometer-metrics .metric-card:nth-child(2)::after {
  background: rgba(37, 99, 235, 0.05);
}

.barometer-metrics .metric-card:nth-child(3) {
  border-color: rgba(234, 88, 12, 0.18);
}

.barometer-metrics .metric-card:nth-child(3)::after {
  background: rgba(234, 88, 12, 0.06);
}

.barometer-metrics .metric-card:hover {
  transform: translateY(-4px);
}

.metric-icon {
  position: absolute;
  top: 50%;
  left: 24px;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #078f56;
  background: #eefaf4;
  box-shadow: inset 0 0 0 1px rgba(7, 143, 86, 0.08);
}

.metric-icon svg {
  width: 21px;
  height: 21px;
}

.metric-icon-city {
  color: #2563eb;
  background: #eff6ff;
  box-shadow: inset 0 0 0 1px rgba(37, 99, 235, 0.10);
}

.metric-icon-district {
  color: #ea580c;
  background: #fff4ed;
  box-shadow: inset 0 0 0 1px rgba(234, 88, 12, 0.14);
}

.metric-val {
  display: block;
  font-size: 2.18rem;
  font-weight: 800;
  color: #078f56;
  line-height: 1.1;
  margin: 8px 0 0;
}

.metric-card:nth-child(2) .metric-val {
  color: #2563eb;
}

.metric-card:nth-child(3) .metric-val {
  color: #ea580c;
}

.metric-lbl {
  display: block;
  color: #078f56;
  font-size: 0.76rem;
  font-weight: 800;
}

.metric-card:nth-child(2) .metric-lbl {
  color: #2563eb;
}

.metric-card:nth-child(3) .metric-lbl {
  color: #ea580c;
}

.metric-desc {
  display: none;
}

.top-meds-container {
  background: #ffffff;
  border-radius: 18px;
  padding: 22px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.045);
  text-align: left;
}

.top-meds-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.top-meds-heading h3 {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 0.9rem;
  font-weight: 800;
  color: #091121;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.heading-icon {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: #078f56;
  background: #eefaf4;
}

.heading-icon svg {
  width: 16px;
  height: 16px;
}

.top-meds-period {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(7, 143, 86, 0.12);
  border-radius: 999px;
  padding: 0 10px;
  background: #ffffff;
  color: #056b41;
  font-size: 0.74rem;
  font-weight: 750;
  white-space: nowrap;
}

.meds-list {
  display: grid;
  gap: 10px;
}

.med-row {
  min-height: 88px;
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.026);
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.med-row:hover {
  border-color: rgba(7, 143, 86, 0.18);
  box-shadow: 0 12px 28px rgba(7, 143, 86, 0.075);
  transform: translateY(-1px);
}

.med-rank {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  color: #ffffff;
  background: #078f56;
  font-size: 0.8rem;
  font-weight: 800;
  box-shadow: 0 10px 20px rgba(7, 143, 86, 0.15);
}

.med-main {
  min-width: 0;
}

.med-name-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.med-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 999px;
  color: #078f56;
  background: #eefaf4;
}

.med-icon svg {
  width: 19px;
  height: 19px;
}

.med-name {
  display: block;
  min-width: 0;
  overflow: hidden;
  color: #091121;
  font-size: 0.96rem;
  font-weight: 800;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.med-location {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 8px 0 0 54px;
  color: #697386;
  font-size: 0.74rem;
  font-weight: 600;
  line-height: 1.3;
}

.location-chip {
  min-height: 22px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(7, 143, 86, 0.09);
  border-radius: 999px;
  padding: 0 8px 0 5px;
  background: #f7fbf9;
  color: #667085;
  font-size: 0.68rem;
}

.location-chip-icon {
  width: 16px;
  height: 16px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 999px;
  background: #ffffff;
}

.location-chip-icon svg {
  width: 10px;
  height: 10px;
}

.location-chip-district .location-chip-icon {
  color: #078f56;
}

.location-chip-city {
  border-color: rgba(37, 99, 235, 0.11);
  background: #f8fbff;
}

.location-chip-city .location-chip-icon {
  color: #2563eb;
}

.location-chip strong {
  color: #253044;
  font-weight: 760;
}

.location-pending {
  color: #8a94a6;
  font-size: 0.76rem;
  font-weight: 600;
}

.med-count {
  min-width: 36px;
  display: grid;
  justify-items: end;
  color: #078f56;
  font-size: 1.36rem;
  font-weight: 800;
  line-height: 1;
}

.med-count span {
  display: none;
}

.meds-empty {
  display: block;
  color: #6b7280;
  font-size: 0.86rem;
  text-align: center;
}

@media (max-width: 680px) {
  .metrics-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .barometer-metrics .metric-card {
    min-height: 104px;
    padding-left: 84px;
  }

  .metric-icon {
    left: 20px;
  }

  .top-meds-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .med-row {
    grid-template-columns: 34px minmax(0, 1fr) auto;
    padding: 14px;
  }

  .med-count {
    grid-column: 3;
    grid-row: 1 / span 2;
    justify-items: end;
    min-width: 0;
    margin-left: 0;
  }

  .med-location {
    margin-left: 0;
  }

  .med-icon {
    width: 36px;
    height: 36px;
  }

  .med-icon svg {
    width: 17px;
    height: 17px;
  }
}
