.info-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .45);
  z-index: 900;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}

.info-drawer-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.info-drawer {
  position: fixed;
  top: 0;
  right: -460px;
  width: 440px;
  max-width: 100vw;
  height: 100vh;
  background: #fff;
  z-index: 901;
  box-shadow: -4px 0 32px rgba(0, 0, 0, .18);
  transition: right .35s cubic-bezier(.4, 0, .2, 1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.info-drawer.open {
  right: 0;
}

.info-drawer-top {
  background: var(--navy);
  padding: 1.5rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  flex-shrink: 0;
}

.info-drawer-top h2 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
}

.info-drawer-top button {
  background: rgba(255, 255, 255, .1);
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  color: #fff;
  cursor: pointer;
  flex-shrink: 0;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
}

.info-drawer-top button:hover {
  background: rgba(255, 255, 255, .2);
}

.info-drawer-eyebrow {
  font-size: .7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .55);
  margin-bottom: .3rem;
}

.info-drawer-body {
  padding: 1.5rem;
  overflow-y: auto;
  flex: 1;
}

.info-drawer-body h3 {
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--navy);
  letter-spacing: .08em;
  margin-bottom: .75rem;
  padding-bottom: .5rem;
  border-bottom: 1px solid var(--border);
}

.info-drawer-body p {
  color: var(--muted);
  line-height: 1.65;
  font-size: .9rem;
  margin-bottom: .6rem;
}

.info-drawer-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .5rem;
  margin-bottom: 1rem;
}

.info-drawer-checklist li {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.5;
}

.info-drawer-checklist li::before {
  content: '✓';
  color: var(--blue);
  font-weight: 700;
  flex-shrink: 0;
}

.info-drawer-badge {
  display: inline-block;
  background: var(--navy);
  color: #fff;
  font-size: .75rem;
  font-weight: 700;
  padding: .25rem .75rem;
  border-radius: 100px;
  margin-bottom: .5rem;
}

.info-drawer-cta {
  background: var(--bg-light);
  border-radius: 8px;
  padding: 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.info-drawer-cta strong {
  display: block;
  font-weight: 700;
  color: var(--navy);
  font-size: .9rem;
}

.info-drawer-cta a {
  color: var(--blue);
  font-weight: 700;
  font-size: .9rem;
}

.info-drawer-section {
  margin-bottom: 1.75rem;
}