/* AMBER app-download — voucher CTA + phone mockup row */
.am-appdl {
  padding: var(--space-10, 64px) 0;
  background: var(--color-bg, #FFFFFF);
  overflow: hidden;
}
.am-appdl__inner {
  display: flex;
  align-items: center;
  gap: 48px;
}

/* LEFT — copy + badges */
.am-appdl__copy {
  flex: 1 1 50%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.am-appdl__heading {
  margin: 0;
  font-family: var(--font-heading, 'Poppins'), system-ui, sans-serif;
  font-weight: 900;
  font-size: clamp(34px, 4.6vw, 56px);
  line-height: 1.1;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--color-text, #000000);
}
.am-appdl__body {
  margin: 24px 0 0;
  max-width: 30ch;
  font-size: 16px;
  line-height: 24px;
  color: var(--color-text-muted, #6B7280);
}
.am-appdl__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
}
.am-appdl__badge {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}
.am-appdl__badge[aria-disabled="true"] {
  pointer-events: none;
}
.am-appdl__badge img {
  display: block;
  height: 52px;
  width: auto;
}

/* RIGHT — phone over decorative circles */
.am-appdl__media {
  position: relative;
  flex: 1 1 50%;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 420px;
}
.am-appdl__phone {
  position: relative;
  z-index: 2;
  display: block;
  max-width: 320px;
  width: 70%;
  height: auto;
}
.am-appdl__phone--placeholder {
  width: 280px;
  height: 560px;
  max-width: 70%;
  border-radius: 36px;
  background: var(--color-surface, #F3F4F6);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.am-appdl__circle {
  position: absolute;
  z-index: 1;
  border-radius: 50%;
  pointer-events: none;
}
.am-appdl__circle--ring {
  width: 460px;
  height: 460px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.am-appdl__circle--dot-1 {
  width: 18px;
  height: 18px;
  background: var(--color-text-muted, #6B7280);
  opacity: 0.45;
  top: 8%;
  left: 14%;
}
.am-appdl__circle--dot-2 {
  width: 26px;
  height: 26px;
  background: var(--color-accent, #E6C744);
  top: 4%;
  right: 8%;
}
.am-appdl__circle--dot-3 {
  width: 22px;
  height: 22px;
  background: var(--color-accent, #E6C744);
  bottom: 6%;
  left: 22%;
}

/* Tablet */
@media (max-width: 980px) {
  .am-appdl__inner { gap: 32px; }
  .am-appdl__circle--ring { width: 360px; height: 360px; }
}

/* Mobile — phone stacks under the text, both full width */
@media (max-width: 768px) {
  .am-appdl {
    padding: var(--space-8, 48px) 0;
  }
  .am-appdl__inner {
    flex-direction: column;
    align-items: stretch;
    gap: 40px;
  }
  .am-appdl__copy,
  .am-appdl__media {
    flex: none;
  }
  .am-appdl__media {
    min-height: 340px;
  }
  .am-appdl__circle--ring { width: 300px; height: 300px; }
}
